欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

PostgreSQL数据库基本操作

程序员文章站 2022-05-31 21:57:35
...

PostgreSQL数据库基本操作

postgresql学习站点

  1. 创建用户
1
2
3
4
5
sudo -s -u postgres
psql
postgres# CREATE USER xxxx1 WITH PASSWORD 'xxxx';
postgres# CREATE DATABASE xxxx2;
postgres# GRANT ALL PRIVILEGES ON DATABASE xxxx2 to xxxx1;
  1. 修改密码

    1
    
    alter user postgres with password 'foobar';
    
  2. 创建数据库

1
2
3
4
5
createdb--encoding=UTF8 --owner=foo --template=template_postgis -Ufoo
 参数: --encoding=UTF8 设置数据库的字符集
         --owner=foo 设置数据库的所有者
         --tmplate=template_postgis 设置建库的模板,该模板支持空间数据操作
         --Ufoo 用foo用户身份建立数据库

posted on 2018-07-21 07:33 sundaygeek 阅读(...) 评论(...) 编辑 收藏