Home | Mirror | Search

第 1 章 PostgreSQL 安裝

目錄

1. Ubuntu 12.04.1 LTS 安裝
2. PostgreSQL 配置
2.1. postgresql.conf
2.2. pg_hba.conf
3. 創建dba用戶

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
		
comments powered by Disqus