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

postgres创建数据库

程序员文章站 2022-05-23 11:33:29
...

postgres创建数据库 发现没有ak的手册自己建库是比较头痛的事。所以俺把sky创建库 的过程笔记发到这里,以便不时之需。 www.2cto.com 首先切换用户 su - postgres 创建角色 create role dbuser nosuperuser login encrypted password dbpwd; 注:dbuser是你要

postgres创建数据库

发现没有ak的手册自己建库是比较头痛的事。所以俺把sky创建库

的过程笔记发到这里,以便不时之需。 www.2cto.com

首先切换用户

su - postgres

创建角色

create role dbuser nosuperuser login encrypted password 'dbpwd';

注:dbuser是你要建的角色名,dbpwd为你用户的密码

创建表空间

create tablespace tbs_dbname owner psiserver location '/var/pgdata/tbs/tbs_db';

注:tbs_dbname 是你要建的空间名。

创建数据库

create database dbname with owner dbuser template template0 encoding 'UTF8' tablespace tbs_dbname ;

进入数据库

\c dbuser dbname

创建schema

create schema dbschema authorization dbname;

打完收工.