標籤:art 版本庫 一個 普通使用者 localhost figure ice hba utf8
擷取源碼
略
編譯安裝
對於效能型的軟體,我們採用編譯的方式進行安裝。
安裝依賴
yum install -y systemtap-sdt-devel perl-ExtUtils-Embed pam-devel libxml2-devel libxslt-devel python-devel
編譯
./configure --prefix=/opt/pgsql-9.3.2 --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-debuggmake world # 安裝了包含文檔,所有的contribgmake check-world -- (需要普通使用者執行。可選,耗時較長)gmake install-world
啟動服務
軟體安裝完畢,在作業系統中建立一個普通使用者,用於初始化資料庫、開啟和關閉資料庫。
useradd postgressu - postgresvi ~/.bash_profile# addexport PGDATA=/pgdata/pg_rootexport LANG=en_US.utf8export PGHOME=/opt/pgsql-9.3.2export LD_LIBRARY_PATH=$PGHOME/lib:/lib64:/usr/lib64:/usr/local/lib64:/lib:/usr/lib:/usr/local/lib:$LD_LIBRARY_PATHexport PATH=$PGHOME/bin:$PATHexport MANPATH=$PGHOME/share/man:$MANPATHexport PGUSER=postgres
建立相應的目錄並修改許可權:
mkdir -pv /pgdata/pg_rootchown -R postgres:postgres /pgdata/pg_rootsu - postgres# 初始化資料# initdb -D $PGDATA -E UTF8 --locale=C -U postgres -W# 會提示輸入兩次密碼
在啟動資料庫之前,需要初始化資料庫,在初始化的過程中,會建立設定檔等。
修改設定檔
在啟動之前,需要修改下pg_hba.conf及postgresql.conf檔案,
- pg_hba.conf用於配置控制訪問資料庫的來源
- postgresql.conf是資料庫的主要設定檔
最好調整一下核心參數:
vi /etc/sysctl.confkernel.shmmni = 4096kernel.sem = 50100 64128000 50100 1280fs.file-max = 7672460net.ipv4.ip_local_port_range = 9000 65000net.core.rmem_max = 4194304net.core.wmem_default = 262144net.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 logfileCOMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAMEpostgres 30772 postgres 1w REG 8,3 0 34606128 logfilepostgres 30772 postgres 2w REG 8,3 0 34606128 logfile-bash-4.2$ lsof -i:5432COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAMEpostgres 30771 postgres 3u IPv6 37671946 0t0 TCP localhost:postgres (LISTEN)postgres 30771 postgres 4u IPv4 37671947 0t0 TCP localhost:postgres (LISTEN)
允許外網訪問:
echo "host all all 0.0.0.0/0 md5" >> $PGDATA/pg_hba.conf
停止
pg_ctl stop -m fast|smart|immediate -D $PGDATA
CentOS二進位包安裝
如果認為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的資料目錄在/var/lib/pgsql/<version>
/data目錄下,version表示PostgreSQL的版本,如9.4版本就安裝在/var/lib/pgsql/9.4/data目錄下。
MacOS安裝PostgreSQL
可以下載安裝Postgres.app即可,這樣比較方便學習。
PostgreSQL編譯安裝