您好,登錄后才能下訂單哦!
postgresql9.6.2 rpm 安裝
1、安裝rpm包
rpm -ivf postgresql96-libs-9.6.2-2PGDG.rhel7.x86_64.rpm
rpm -ivf postgresql96-9.6.2-2PGDG.rhel7.x86_64.rpm
rpm -ivf postgresql96-server-9.6.2-2PGDG.rhel7.x86_64.rpm
rpm -ivf postgresql96-contrib-9.6.2-2PGDG.rhel7.x86_64.rpm
rpm -ivf postgresql96-devel-9.6.2-2PGDG.rhel7.x86_64.rpm
2、初始化PostgreSQL 數據庫
/usr/pgsql-9.6/bin/postgresql96-setup initdb
3、啟動服務
systemctl start postgresql-9.6.service
4、把PostgreSQL 服務加入到啟動列表
systemctl enable postgresql-9.6.service
5、修改PostgreSQL 數據庫用戶postgres的密碼(注意不是linux系統帳號)
PostgreSQL 數據庫默認會創建一個postgres的數據庫用戶作為數據庫的管理員,默認密碼為空,我們需要修改為指定的密碼,這里設定為’postgres’。
# su - postgres 切換用戶,執行后提示符會變為 '-bash-4.2$'
$ psql 登錄數據庫,執行后提示符變為 'postgres=#'
postgres=# alter user postgres with password 'postgres';
ALTER ROLE
postgres=# select * from pg_shadow;
6、測試數據庫
6.1 創建測試數據庫
postgres=# create database test;
6.2、切換到david 數據庫
# \c test
6.3、創建測試表
test=# create table t1 (id integer, name text);
6.4、插入測試數據
test=# insert into t1 values (1,'t1');
INSERT 0 1
test=#
6.5、選擇數據
test=# select * from t1 ;
id | name
----+-------
1 | t1
(1 row)
test=#
測試完成,RPM包安裝成功。
7、修改linux 系統用戶postgres 的密碼
PostgreSQL 數據庫默認會創建一個linux 系統用戶postgres,通過passwd 命令設置系統用戶的密碼為postgres。
# passwd postgres
8、修改PostgresSQL 數據庫配置實現遠程訪問
8.1 修改postgresql.conf 文件
# vim /var/lib/pgsql/9.6/data/postgresql.conf
如果想讓PostgreSQL 監聽整個網絡的話,將listen_addresses 前的#去掉,并將 listen_addresses = 'localhost' 改成 listen_addresses = '*'
8.2 修改客戶端認證配置文件pg_hba.conf
將需要遠程訪問數據庫的IP地址或地址段加入該文件。
# vim /var/lib/pgsql/9.6/data/pg_hba.conf
在“# IPv4 local connections”添加
host all all 127.0.0.1/32 ident
host all all 192.168.1.199/24 md5
9. 重啟服務以使設置生效
# systemctl restart postgresql-9.6.service
10、遠程測試可以使用客戶端工具或者裝有postgresql的機器,通過cmd訪問
psql -U postgres -h 192.168.1.199
問題:
1)、配置支持遠程連接
$ vim /var/lib/pgsql/9.6/data/pg_hba.conf
#### 直接配置為不限制IP,即0.0.0.0,注意:/后面也必須為0!!! ####
將 127.0.0.1/32 改為 0.0.0.0/0
順便將該行method屬性的ident修改為trust,不然用客戶端工具遠程連接的時候會報用戶postgres ident認證失敗的錯誤。
2)、去除版本號啟動服務
cd /usr/lib/systemd/system
ln -s postgresql-9.6.service postgresql.service
以后就可以使用
systemctl start postgresql
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。