我正在 FreeBSD 8.1 上安装 PosgreSQL 9.0。在 MySQL 中,我必须更改 root SQL 用户的密码,我该怎么做?我如何添加其他 SQL 用户?
谢谢。
答案1
使用以下命令更改“postgres”密码:
psql --echo-all --echo-queries postgres -U postgres --command "alter role postgres 加密密码‘YOURPASSWORD’"
答案2
使用shell命令创建用户createuser
。
答案3
为了确保 .bash_history 或 .psql_history 中没有密码,我使用了 psql-comannd“\password”:
$ sudo -u postgres -i
$ psql
# \password
Enter new password:
Enter it again:
# create user <user_name>;
# \password <user_name>