postgres忘记密码处理方法
时间:2010-09-25 来源:cnljh
PostgreSQL默认的超级管理员密码是postgres
连接方法:
su - postgres 或 sudo su - postgres
psql -U postgres(注意,是大写的-U)默认密码为空
修改密码的方法是,用psql登入管理:psql -U postgres
然后用这样的命令来修改密码:alter user postgres with password 'new password'
连接方法:
su - postgres 或 sudo su - postgres
psql -U postgres(注意,是大写的-U)默认密码为空
修改密码的方法是,用psql登入管理:psql -U postgres
然后用这样的命令来修改密码:alter user postgres with password 'new password'
相关阅读 更多 +