PostgreSQL安裝配置

yum install https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm
yum install postgresql96-server postgresql96-contrib
/usr/pgsql-9.6/bin/postgresql96-setup initdb
systemctl start postgresql-9.6
systemctl enable postgresql-9.6
firewall-cmd --add-service=postgresql --permanent
firewall-cmd --reload
su - postgres
psql -U postgres
ALTER USER postgres with encrypted password 'abc123';
\q
exit
vi /var/lib/pgsql/9.6/data/postgresql.conf
vi /var/lib/pgsql/9.6/data/pg_hba.conf
systemctl restart postgresql-9.6.servicenode

1.下載
yum localinstall https://download.postgresql.org/pub/repos/yum/9.5/redhat/rhel-7-x86_64/pgdg-centos95-9.5-2.noarch.rpmlinux

2.肯定安裝
ysql

3.開始安裝PostgreSQL
yum -y install postgresql95-server postgresql95-contrib數據庫

4.初始化數據庫
/usr/pgsql-9.5/bin/postgresql95-setup initdbnpm

5.啓動服務
systemctl start postgresql-9.5centos

6.設爲開機自啓
systemctl enable postgresql-9.5post

7.數據庫操做
PostgreSQL的默認用戶爲「postgres」。
輸入「su - postgres」並回車,切換至用戶。
輸入「psql -U postgres」並回車,登陸數據庫。
輸入ALTER USER postgres with encrypted password 'abc123';並回車,設置默認用戶postgre的密碼,此處密碼爲「abc123」,可自行修改。
輸入「\q」並回車, 退出數據庫。
輸入「exit」並回車,退出用戶。命令行

8.配置遠程訪問
輸入「vi /var/lib/pgsql/9.5/data/postgresql.conf」並回車。(若是使用其餘版本的PostgreSQL則須要把其中的「9.5」換成對應的版本)

找到「listen_addresses」。
若是想對全部IP開放,則將「localhost」改成「*」便可,若是想僅對部分IP開放,多個IP之間用「, 」(逗號+空格)隔開。
改完以後去掉「listen_address」前面的「#」。
編輯完成後,按「Esc」鍵,輸入「:wq」並回車。 rest

輸入「vi /var/lib/pgsql/9.5/data/pg_hba.conf」並回車,將光標移至底部。
(若是使用其餘版本的PostgreSQL則須要把其中的「9.5」換成對應的版本) postgresql

按「i」鍵進入插入編輯模式,在「IPv4 local connections」下方添加容許鏈接的IP。
若是想容許全部IPv4地址,則加入一行「host all all 0.0.0.0/0 md5」。IPv6方法相似。

9.重啓postgresql服務
service postgresql-9.5 restart

 


Node.js 環境安裝

1.切換目錄命令行:cd /usr/local/src

2.下載命令行: wget https://nodejs.org/dist/v8.9.1/node-v8.9.1-linux-x64.tar.xz

3.解壓命令:tar -xvf node-v8.9.1-linux-x64.tar

4.命令行: cd node-v8.9.1-linux-x64/bin/  (能夠看到node和npm) ./node -v 查看版本

5.添加環境變量(/etc/profile)
PATH=$PATH:/usr/local/src/node-v8.9.1-linux-x64/bin
(
#set for nodejs

export NODE_HOME=/usr/local/src/node-v8.9.1-linux-x64

export PATH=$NODE_HOME/bin:$PATH

#export PATH=$PATH:/usr/local/src/node-v8.9.1-linux-x64/bin)

相關文章
相關標籤/搜索