Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 知乎專欄 | 視頻教程 | About

第 1 章 PostgreSQL 安裝

目錄

1.1. Ubuntu 12.04.1 LTS 安裝
1.2. YUM 預設源安裝
1.3. PostgreSQL 官方 YUM 源安裝
1.3.1. 9.2
1.3.2. 9.3
1.3.3. 9.4
1.3.4. 9.6
1.3.5. PostgreSQL 10
1.4. PostgreSQL 配置
1.4.1. postgresql.conf
1.4.2. pg_hba.conf
1.5. 創建dba用戶

1.1. Ubuntu 12.04.1 LTS 安裝

安裝環境

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