Centos 6.6 postgresql error: cannot execute binary file
Centos 6.6 postgresql error: cannot execute binary file
我在centos 6.6上运行这个
PSQL='/usr/bin/psql'
su - postgres "$PSQL" template1 -f 'sql.sql'
但是启动psql总是启动失败
Starting postgresql-9.4 service: [FAILED]
然后我得到这个错误
/usr/bin/psql: /usr/bin/psql: cannot execute binary file
感谢大家的帮助。
试试这个:
PSQL='/usr/bin/psql'
su - postgres -c "$PSQL template1 -f 'sql.sql'"
我在centos 6.6上运行这个
PSQL='/usr/bin/psql'
su - postgres "$PSQL" template1 -f 'sql.sql'
但是启动psql总是启动失败
Starting postgresql-9.4 service: [FAILED]
然后我得到这个错误
/usr/bin/psql: /usr/bin/psql: cannot execute binary file
感谢大家的帮助。
试试这个:
PSQL='/usr/bin/psql'
su - postgres -c "$PSQL template1 -f 'sql.sql'"