我在ubuntu上通过synaptic安装了postgresql
。
现在我不知道如何创建新用户,运行服务器并在pgAdmin3
中创建它。
答案 0 :(得分:0)
使用它来创建一个名为$ USER的postgres用户:
sudo -u postgres createuser --superuser $USER
创建与用户名同名的数据库可以使事情变得更容易。它将成为您的默认数据库。
createdb $USER
使用此项为USER设置密码。必须这样才能让pgadmin3工作。
sudo -u postgres psql
postgres=# \password USER