您好,登錄后才能下訂單哦!
測試環(huán)境為CentOS7.x x86_64位系統(tǒng)。
前提:
安裝最小化安裝
安裝epel源
到官方網(wǎng)站獲取源代碼:
wget https://ftp.postgresql.org/pub/source/v9.4.6/postgresql-9.4.6.tar.bz2
對于性能型的軟件,我們采用編譯的方式進行安裝。
yum install -y systemtap-sdt-devel perl-ExtUtils-Embed \ pam-devel libxml2-devel libxslt-devel python-devel
./configure --prefix=/opt/pgsql-9.4.6 \ --with-perl \ --with-python \ --with-openssl \ --with-pam \ --without-ldap \ --with-libxml \ --with-libxslt \ --enable-thread-safety \ --with-wal-blocksize=16 \ --with-blocksize=16 \ --enable-dtrace \ --enable-debug gmake world # 安裝了包含文檔,所有的contrib gmake check-world -- (需要普通用戶執(zhí)行??蛇x,耗時較長) gmake install-world
軟件安裝完畢,在操作系統(tǒng)中新建一個普通用戶,用于初始化數(shù)據(jù)庫、開啟和關(guān)閉數(shù)據(jù)庫。
useradd postgres su - postgres vi ~/.bash_profile # add export PGDATA=/pgdata/pg_root export LANG=en_US.utf8 export PGHOME=/opt/pgsql-9.4.6 export LD_LIBRARY_PATH=$PGHOME/lib:/lib64:/usr/lib64:/usr/local/lib64:/lib:/usr/lib:/usr/local/lib:$LD_LIBRARY_PATH export PATH=$PGHOME/bin:$PATH export MANPATH=$PGHOME/share/man:$MANPATH export PGUSER=postgres
創(chuàng)建相應的目錄并修改權(quán)限:
mkdir -pv /pgdata/pg_root chown -R postgres:postgres /pgdata/pg_root su - postgres # 初始化數(shù)據(jù) # initdb -D $PGDATA -E UTF8 --locale=C -U postgres -W # 會提示輸入兩次密碼
在啟動之前,需要修改下pg_hba.conf及postgresql.conf文件,
+ pg_hba.conf用于配置控制訪問數(shù)據(jù)庫的來源
+ postgresql.conf是數(shù)據(jù)庫的主要配置文件
最好調(diào)整一下內(nèi)核參數(shù):
vi /etc/sysctl.conf kernel.shmmni = 4096 kernel.sem = 50100 64128000 50100 1280 fs.file-max = 7672460 net.ipv4.ip_local_port_range = 9000 65000 net.core.rmem_max = 4194304 net.core.wmem_default = 262144 net.core.wmem_max = 1048576 sysctl -p
修改limits.conf配置文件:
vi /etc/security/limits.conf * soft nofile 131072 * hard nofile 131072 * soft nproc 131072 * hard nproc 131072 * soft core unlimited * hard core unlimited * soft memlock 50000000 * hard memlock 50000000
# pg_ctl start -D $PGDATA # 或者使用如下的方式啟動 pg_ctl -D /var/lib/pgsql/data -l logfile start -bash-4.2$ lsof logfile COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME postgres 30772 postgres 1w REG 8,3 0 34606128 logfile postgres 30772 postgres 2w REG 8,3 0 34606128 logfile -bash-4.2$ lsof -i:5432 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME postgres 30771 postgres 3u IPv6 37671946 0t0 TCP localhost:postgres (LISTEN) postgres 30771 postgres 4u IPv4 37671947 0t0 TCP localhost:postgres (LISTEN)
允許外網(wǎng)訪問:
echo "host all all 0.0.0.0/0 md5" >> $PGDATA/pg_hba.conf
pg_ctl stop -m fast|smart|immediate -D $PGDATA
如果認為CentOS或RedHat自帶的PostgreSQL版本太低,想要使用新的版本,可以使用下面的方法安裝。安裝PostgreSQL官方提供的RPM包,將新版本信息加入到版本庫中:
rpm -ivh https://download.postgresql.org/pub/repos/yum/9.4/redhat/rhel-7-x86_64/pgdg-centos94-9.4-3.noarch.rpm
然后使用yum install命令進行安裝:
yum install -y postgresql94-server.x86_64
安裝第三方貢獻包:
yum install -y postgresql94-contrib.x86_64
新版本的PostgreSQL的數(shù)據(jù)目錄在/var/lib/pgsql/<version>
/data目錄下,version表示PostgreSQL的版本,如9.4版本就安裝在/var/lib/pgsql/9.4/data目錄下。
可以下載安裝Postgres.app即可,這樣比較方便學習。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。