您好,登錄后才能下訂單哦!
小編給大家分享一下linux安裝postgresql的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
linux安裝postgresql
配置用戶和組
groupadd postgres useradd postgres -g postgres
環境準備
yum install -y perl-ExtUtils-Embed readline-devel zlib-devel pam-devel libxml2-devel libxslt-devel openldap-devel python-devel gcc-c++ openssl-devel cmake gcc* readline-devel
權限配置
mkdir /opt/postgres chown -R postgres:postgres /opt/postgres/
配置環境變量
vi /etc/profile #在文件末尾將以下環境變量添加進去 export PATH=/opt/postgres/bin:$PATH export PGHOME=/opt/postgres export PGDATA=/opt/postgres/data/ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PGHOME/lib/ export PATH=$PGHOME/bin:$PATH:$HOME/bin
安裝過程
安裝數據庫
cd 下載好的壓縮包存放路徑#解壓文件tar -zxvf postgresql-9.6.3.tar.gz cd postgresql-9.6.3#參數根據自己需求配置./configure --prefix=/opt/postgres/ --with-python --with-libxml --with-libxslt make make install****,安裝過程內容太長就不截圖了,從屏顯的信息最后看到PostgreSQL installation complete. 就說明安裝好了, 如果報錯大多數都是安裝包問題或者依賴沒下載,看下錯誤信息基本都能解決****
2.初始化數據庫
su postgres #初始化數據庫的參數也是根據自己需要添加 ,可以通過--help查看 /opt/postgres/bin/initdb -D $PGDATA -E UTF8 #如果出現以下message就說明初始化成功了 ********************************************************************* creating directory /opt/postgres/data ... ok creating subdirectories ... ok selecting default max_connections ... 100 selecting default shared_buffers ... 128MB selecting dynamic shared memory implementation ... posix creating configuration files ... ok running bootstrap script ... ok performing post-bootstrap initialization ... ok syncing data to disk ... ok WARNING: enabling "trust" authentication for local connections You can change this by editing pg_hba.conf or using the option -A, or --auth-local and --auth-host, the next time you run initdb. Success. You can now start the database server using: /opt/postgres/bin/pg_ctl -D /opt/postgres/data -l logfile start ******************************************************************** #啟動數據庫服務 #數據文件和日志文件的路徑根據自己需求指定。 /opt/postgres/bin/pg_ctl -D $PGDATA -l /opt/postgres/server.log start
到此postgres服務就安裝完畢了。
使用數據庫
進入數據庫
su postgres #進入數據庫 [postgres@localhost postgres]$ psql psql (9.6.3) Type "help" for help. postgres=#
修改數據庫配置,允許其他服務器連接
#postgres安裝好以后需要修改2個配置文件才能允許別的服務器訪問。 cd /opt/postgres/data vi postgresql.conf #找到listen_addresses和port參數,修改如下,也可根據自己需求修改 listen_addresses = '*' port = 5432 #根據自己的網段設置下放行的ip規則 vi pg_hba.conf # IPv4 local connections: host all all 192.168.0.0/16 md5
看完了這篇文章,相信你對linux安裝postgresql的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。