postgresql學習筆記(四)角色

來源:互聯網
上載者:User

標籤:password   database   create   資料庫   有效期間   

1、在PostgreSQL安裝過程中的資料初始化階段,系統會預設建立一個名為postgres的角色(同時會建立一個名為postgres的同名database)。

2、可以通過ident身分識別驗證機制來將作業系統的的root使用者映射到資料的Postgresql角色,這樣可以實現root使用者無密碼直接登入

3、建立具備登入許可權的角色

postgres=# create role leo login password ‘king‘ createdb valid until ‘infinity‘;

valid行是可選的,其功能是為此角色的許可權設定有效期間,到期後所有許可權都將失效,預設時限是infinity,即永不到期。

createdb修飾符表明為此角色賦予了建立資料庫的許可權

4、建立具備超級使用者權限的角色

postgres=# create role regina login password ‘queen‘ superuser valid until ‘2019-1-1 00:00‘;

5、建立組角色

postgres=# create role royalty INHERIT;

INHERIT表示組角色royalty的任何一個成員角色都將自動繼承其除“超級使用者權限”外的所有許可權。

將組角色的許可權授予其成員角色

postgres=# grant royalty to leo;postgres=# grant royalty to regina;


本文出自 “corasql” 部落格,請務必保留此出處http://corasql.blog.51cto.com/5908329/1914386

postgresql學習筆記(四)角色

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.