PostgreSQL 帐号密码修改、新建用户,新建数据库操作方法

前端之家收集整理的这篇文章主要介绍了PostgreSQL 帐号密码修改、新建用户,新建数据库操作方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

#su - postgres
$psql -p 5432 -U postgres
postgres=#alter user postgres with password 'new password';

新建用户

postgres=#create user new_user with password 'new password';

新建数据库

postgres=#CREATE DATABASE new_db OWNER new_user ENCODING 'UTF-8'; postgres=#\q

原文链接:https://www.f2er.com/postgresql/195090.html

猜你在找的Postgre SQL相关文章