第 23 課 PostgreSQL 創(chuàng)建自己的數(shù)據(jù)庫根悼、模式批糟、用戶

1. 修改PostgreSQL數(shù)據(jù)庫默認用戶postgres的密碼

[root@izwz90tx4egvh4qj3p95vsz ~]# sudo -u postgres psql
psql (10.4)
Type "help" for help.

postgres=# ALTER USER postgres WITH PASSWORD 'duyeweb'; 
ALTER ROLE

注意:

  • 密碼postgres要用引號引起來
  • 命令最后有分號

2. 修改linux系統(tǒng)postgres用戶的密碼

步驟一:刪除用戶postgres的密碼

[root@izwz90tx4egvh4qj3p95vsz ~]# sudo  passwd -d postgres
Removing password for user postgres.
passwd: Success

步驟二:設置用戶postgres的密碼

[root@izwz90tx4egvh4qj3p95vsz ~]# sudo -u postgres passwd
Changing password for user postgres.
New password: 
BAD PASSWORD: The password fails the dictionary check - it does not contain enough DIFFERENT characters
New password: 
Retype new password: 
passwd: all authentication tokens updated successfully.

3. 使用超級用戶postgres創(chuàng)建新數(shù)據(jù)庫和用戶

  • 創(chuàng)建數(shù)據(jù)庫duyeweb
[root@izwz90tx4egvh4qj3p95vsz ~]# sudo -u postgres psql
could not change directory to "/root": Permission denied
psql (10.4)
Type "help" for help.

postgres=# create database duyeweb;
CREATE DATABASE
postgres=# \l
                                  List of databases
   Name    |  Owner   | Encoding |   Collate   |    Ctype    |   Access privileges   
-----------+----------+----------+-------------+-------------+-----------------------
 duyeweb   | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | 
 postgres  | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =Tc/postgres         +
           |          |          |             |             | postgres=CTc/postgres+
           |          |          |             |             | duye=C/postgres
 template0 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
 template1 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
  • 創(chuàng)建新用戶duye
  • 設置密碼'123456'
  • 賦予登錄和創(chuàng)建數(shù)據(jù)庫對象的權限
[root@izwz90tx4egvh4qj3p95vsz ~]# sudo -u postgres psql
could not change directory to "/root": Permission denied
psql (10.4)
Type "help" for help.

postgres=# create user duye;
CREATE ROLE
postgres=# alter user duye password '123456';
ALTER ROLE
postgres=# \du
                                   List of roles
 Role name |                         Attributes                         | Member of 
-----------+------------------------------------------------------------+-----------
 duye      |                                                            | {}
 postgres  | Superuser, Create role, Create DB, Replication, Bypass RLS | {}

postgres=# alter user duye createrole createdb replication login;
ALTER ROLE
postgres=# \du
                                   List of roles
 Role name |                         Attributes                         | Member of 
-----------+------------------------------------------------------------+-----------
 duye      | Create role, Create DB, Replication                        | {}
 postgres  | Superuser, Create role, Create DB, Replication, Bypass RLS | {}
# "local" is for Unix domain socket connections only
local   all             all                                     md5
# IPv4 local connections:
host    all             all             127.0.0.1/32            md5
# IPv6 local connections:
host    all             all             ::1/128                 md5
# Allow replication connections from localhost, by a user with the
# replication privilege.
local   replication     all                                     peer
host    replication     all             127.0.0.1/32            ident
host    replication     all             ::1/128                 ident
  • 重新加載配置:
systemctl reload postgresql-10
  • 使用新用戶duye登錄新的數(shù)據(jù)庫duyeweb
[root@izwz90tx4egvh4qj3p95vsz ~]# psql duyeweb -Uduye -W         
Password for user duye: 
psql (10.4)
Type "help" for help.

duyeweb=# \l
                                  List of databases
   Name    |  Owner   | Encoding |   Collate   |    Ctype    |   Access privileges   
-----------+----------+----------+-------------+-------------+-----------------------
 duyeweb   | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | 
 postgres  | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =Tc/postgres         +
           |          |          |             |             | postgres=CTc/postgres+
           |          |          |             |             | duye=C/postgres
 template0 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
 template1 | postgres | UTF8     | en_US.UTF-8 | en_US.UTF-8 | =c/postgres          +
           |          |          |             |             | postgres=CTc/postgres
(4 rows)

duyeweb=# \du
                                   List of roles
 Role name |                         Attributes                         | Member of 
-----------+------------------------------------------------------------+-----------
 duye      | Superuser, Create role, Create DB, Replication             | {}
 postgres  | Superuser, Create role, Create DB, Replication, Bypass RLS | {}

duyeweb=# 

4. 創(chuàng)建模式

schema是邏輯別構(gòu)格了,將數(shù)據(jù)庫進行邏輯劃分。同一數(shù)據(jù)庫下可以有多個schema徽鼎,不同數(shù)據(jù)庫下的schema互不相關盛末。

查看模式
duyeweb=# select current_schema;
 current_schema 
----------------
 public
(1 row)
duyeweb=# show search_path
   search_path   
-----------------
 "$user", public
(1 row)
duyeweb=# \dn
  List of schemas
  Name  |  Owner   
--------+----------
 public | postgres
(1 row)

duyeweb=# select * from pg_catalog.pg_namespace order by 1;
      nspname       | nspowner |               nspacl                
--------------------+----------+-------------------------------------
 information_schema |       10 | {postgres=UC/postgres,=U/postgres}
 pg_catalog         |       10 | {postgres=UC/postgres,=U/postgres}
 pg_temp_1          |       10 | 
 pg_toast           |       10 | 
 pg_toast_temp_1    |       10 | 
 public             |       10 | {postgres=UC/postgres,=UC/postgres}
(6 rows)
創(chuàng)建一個模式
duyeweb=# \h create schema
Command:     CREATE SCHEMA
Description: define a new schema
Syntax:
CREATE SCHEMA schema_name [ AUTHORIZATION role_specification ] [ schema_element [ ... ] ]
CREATE SCHEMA AUTHORIZATION role_specification [ schema_element [ ... ] ]
CREATE SCHEMA IF NOT EXISTS schema_name [ AUTHORIZATION role_specification ]
CREATE SCHEMA IF NOT EXISTS AUTHORIZATION role_specification

where role_specification can be:

    user_name
  | CURRENT_USER
  | SESSION_USER
duyeweb=# CREATE SCHEMA IF NOT EXISTS duyeweb;
CREATE SCHEMA
duyeweb=# \dn
  List of schemas
  Name   |  Owner   
---------+----------
 duyeweb | duye
 public  | postgres
(2 rows)

發(fā)現(xiàn)更多寶藏

我在喜馬拉雅上分享聲音

《PostgreSQL數(shù)據(jù)庫內(nèi)核分析》,點開鏈接可以聽聽否淤,有點意思悄但。

《數(shù)據(jù)庫系統(tǒng)概論(第4版)》,點開鏈接可以聽聽石抡,有點意思檐嚣。

更多IT有聲課程,點我發(fā)現(xiàn)更多

第 0 課 PostgreSQL 系列文章列表

其他相關文章分享列表:

第 23 課 PostgreSQL 創(chuàng)建自己的數(shù)據(jù)庫啰扛、模式嚎京、用戶
第 22 課 PostgreSQL 控制文件
第 21 課 PostgreSQL 日志系統(tǒng)
第 16 課 查詢過程源碼分析
第 15 課 PostgreSQL 系統(tǒng)參數(shù)配置
第 14 課 PostgreSQL 數(shù)據(jù)存儲結(jié)構(gòu)
第 13 課 PostgreSQL 存儲之Page(頁面)源碼分析
第 12 課 PostgreSQL 認證方式
第 11 課 PostgreSQL 增加一個內(nèi)核C函數(shù)
第 10 課 PostgreSQL 在內(nèi)核增加一個配置參數(shù)
第 09 課 PostgreSQL 4種進程啟動方式
第 08 課 PostgreSQL 事務介紹
第 07 課 PostgreSQL 數(shù)據(jù)庫、模式隐解、表鞍帝、空間、用戶間的關系
第 06 課 PostgreSQL 系統(tǒng)表介紹
第 05 課 PostgreSQL 編譯源代碼進行開發(fā)
第 04 課 PostgreSQL 安裝最新的版本
第 03 課 PostgreSQL 代碼結(jié)構(gòu)
第 02 課 PostgreSQL 的特性煞茫、應用帕涌、安裝
第 01 課 PostgreSQL 簡介及發(fā)展歷程

上面文章都在專輯中:PostgreSQL專輯鏈接摄凡,點我查看

如果有用,可以收藏這篇文件蚓曼,隨時在更新....

更多交流加群: PostgreSQL內(nèi)核開發(fā)群 876673220

親亲澡,記得點贊、留言辟躏、打賞額9瓤邸!捎琐!

上一課

image.png

最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末会涎,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子瑞凑,更是在濱河造成了極大的恐慌末秃,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,718評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件籽御,死亡現(xiàn)場離奇詭異练慕,居然都是意外死亡,警方通過查閱死者的電腦和手機技掏,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評論 3 385
  • 文/潘曉璐 我一進店門铃将,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人哑梳,你說我怎么就攤上這事劲阎。” “怎么了鸠真?”我有些...
    開封第一講書人閱讀 158,207評論 0 348
  • 文/不壞的土叔 我叫張陵悯仙,是天一觀的道長。 經(jīng)常有香客問我吠卷,道長锡垄,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,755評論 1 284
  • 正文 為了忘掉前任祭隔,我火速辦了婚禮货岭,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘疾渴。我一直安慰自己千贯,他們只是感情好,可當我...
    茶點故事閱讀 65,862評論 6 386
  • 文/花漫 我一把揭開白布程奠。 她就那樣靜靜地躺著丈牢,像睡著了一般祭钉。 火紅的嫁衣襯著肌膚如雪瞄沙。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,050評論 1 291
  • 那天,我揣著相機與錄音距境,去河邊找鬼申尼。 笑死,一個胖子當著我的面吹牛垫桂,可吹牛的內(nèi)容都是我干的师幕。 我是一名探鬼主播,決...
    沈念sama閱讀 39,136評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼诬滩,長吁一口氣:“原來是場噩夢啊……” “哼霹粥!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起疼鸟,我...
    開封第一講書人閱讀 37,882評論 0 268
  • 序言:老撾萬榮一對情侶失蹤后控,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后空镜,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體浩淘,經(jīng)...
    沈念sama閱讀 44,330評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,651評論 2 327
  • 正文 我和宋清朗相戀三年吴攒,在試婚紗的時候發(fā)現(xiàn)自己被綠了张抄。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,789評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡洼怔,死狀恐怖署惯,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情茴厉,我是刑警寧澤泽台,帶...
    沈念sama閱讀 34,477評論 4 333
  • 正文 年R本政府宣布,位于F島的核電站矾缓,受9級特大地震影響怀酷,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜嗜闻,卻給世界環(huán)境...
    茶點故事閱讀 40,135評論 3 317
  • 文/蒙蒙 一蜕依、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧琉雳,春花似錦样眠、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,864評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至束倍,卻和暖如春被丧,著一層夾襖步出監(jiān)牢的瞬間盟戏,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,099評論 1 267
  • 我被黑心中介騙來泰國打工甥桂, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留柿究,地道東北人。 一個月前我還...
    沈念sama閱讀 46,598評論 2 362
  • 正文 我出身青樓黄选,卻偏偏與公主長得像蝇摸,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子办陷,可洞房花燭夜當晚...
    茶點故事閱讀 43,697評論 2 351

推薦閱讀更多精彩內(nèi)容