目錄
安裝環境
PostgreSQL 9.1
$ sudo apt-get install postgresql$ sudo apt-get install postgresql
更改postgres管理員用戶密碼
$ sudo passwd postgres Enter new UNIX password: Retype new UNIX password: passwd: password updated successfully
然後切換到postgres用戶環境
$ su - postgres Password: Added user postgres.
進入psql客戶款, PostgreSQL的psql命令相當於sqlplus,mysql命令
$ psql psql (9.1.6) Type "help" for help. postgres=#
退出\q
postgres=# \q