Home >Database >Mysql Tutorial >postgres创建数据库

postgres创建数据库

WBOY
WBOYOriginal
2016-06-07 14:53:551283browse

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; 

 

打完收工.

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn