我在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
感谢您的帮助。
答案 0 :(得分:4)
试试这个:
PSQL='/usr/bin/psql'
su - postgres -c "$PSQL template1 -f 'sql.sql'"