在Ubuntu系統上,要管理Postgres用戶,需要了解以下基礎知識:
sudo apt update
sudo apt install postgresql
sudo -u postgres psql
sudo -u postgres createuser <用戶名>
sudo -u postgres psql
ALTER USER <用戶名> WITH PASSWORD '<密碼>';
sudo -u postgres psql
GRANT ALL PRIVILEGES ON DATABASE <數據庫名> TO <用戶名>;
sudo -u postgres psql
REVOKE ALL PRIVILEGES ON DATABASE <數據庫名> FROM <用戶名>;
GRANT SELECT, INSERT, UPDATE, DELETE ON <表名> TO <用戶名>;
sudo -u postgres psql
DROP USER <用戶名>;
以上是Ubuntu系統上管理Postgres用戶的基礎知識,希望對你有幫助。