这次选择的数据库安装的是run 文件,更容易掌握.这次数据库全是默认安装,如果有需求的可以自行修改一下的.
这是我的第一篇博客,各位观众老爷,如果觉得哪里有什么不好的,可以留言一起探讨,探讨.有什么问题的也可以一起学习学习.
一,打开centos7的ssh
因为我的CentOS7 是新安装的,所以需要爱打开ssh,如果你的已经在使用了,这个就忽略吧.
1.1 设置静态ip
1.1.1 进入/etc/sysconfig/network-scripts/ 目录找到需要修改的网络的配置文件,并修改.
例如:vim /etc/sysconfig/network-scripts/ifcfg-eth0
1.1.2 修改如下内容
- BOOTPROTO="static" #dhcp改为static
- ONBOOT="yes" #开机启用本配置
- IPADDR=192.168.200.106 #静态IP
- GATEWAY=192.168.200.1 #默认网关
- NETMASK=255.255.255.0 #子网掩码
- DNS1=192.168.99.99 #DNS 配置
1.1.3 最终效果
- # ]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
- HWADDR="00:15:5D:07:F1:02"
- TYPE="Ethernet"
- BOOTPROTO="static" #dhcp改为static
- DEFROUTE="yes"
- PEERDNS="yes"
- PEERROUTES="yes"
- IPV4_FAILURE_FATAL="no"
- IPV6INIT="yes"
- IPV6_AUTOCONF="yes"
- IPV6_DEFROUTE="yes"
- IPV6_PEERDNS="yes"
- IPV6_PEERROUTES="yes"
- IPV6_FAILURE_FATAL="no"
- NAME="eth0"
- UUID="aa7e302d-dc46-54u8-881e-d46cafd0nm98"
- ONBOOT="yes" #开机启用本配置
- IPADDR=192.168.7.106 #静态IP
- GATEWAY=192.168.7.1 #默认网关
- NETMASK=255.255.255.0 #子网掩码
- DNS1=192.168.7.1 #DNS 配置
1.1.4 重启服务
- # service network restart
1.2打开ssh
1.2.1 进入sshd的配置文件
Vi /etc/ssh/sshd_config
打开port 22
把PasswordAuthentication设成yes
找到#PermitRootLogin no将其修改为PermitRootLogin yes
service sshd restart 重启服务
二,安装postgresql-9.4 run文件
2.1 安装:root下
2.1.1 傻瓜式安装
[[email protected] opt]# chmod 777 postgresql-9.4.12-1-linux.run
[[email protected] opt]# ./postgresql-9.4.12-1-linux.run
直接默认安装到opt/PostgreSQL/
中间只有设置用户postgres 的密码 注意
2.2 把配置文件分配给postgres 用户(可跳过)
2.2.1复制配置文件
- [[email protected] opt]# su - postgres
- -bash-4.6$ pwd
- /opt/PostgreSQL/9.4
- -bash-4.6$ su -
- Password:
- [[email protected] ~]# cp .bash_profile /opt/PostgreSQL/9.4
- [[email protected] ~]# cp .bashrc /opt/PostgreSQL/9.4
- [[email protected] ~]# su - postgres
2.2.2更改文件权限
- [[email protected] PostgreSQL]# pwd
- /opt/PostgreSQL
- [[email protected] PostgreSQL]# chown -R postgres:postgres /opt/PostgreSQL/
- [[email protected] PostgreSQL]# ll
- total 4
- drwxr-xr-x 12 postgres postgres 4096 4月 14 18:52 9.0
4
2.2.3 然后设置postgres用户的环境变量
- export PGHOME=/opt/PostgreSQL/9.4
- export PATH=$PGHOME/bin:$PATH
- export PGDATA=$PGHOME/data
- export LD_LIBRARY_PATH=$PGHOME/lib
2.2.4 然后我们可以启动服务,其实默认服务以及启动了
- [[email protected] ~]# service postgresql-9.4 start
2.2.5 检查端口和服务状态
- [[email protected] ~]# chkconfig --list postgresql-9.4
- postgresql-9.4 0:off 1:off 2:on 3:on 4:on 5:on 6:off
- [[email protected] ~]# netstat -ano | grep 5432
- tcp 0 0 0.0.0.0:5432 0.0.0.0:* LISTEN off (0.00/0/0)
- tcp 0 0 :::5432 :::* LISTEN off (0.00/0/0)
- unix 2 [ ACC ] STREAM LISTENING 3759370 /tmp/.s.PGSQL.5432
2.3 root下直接配置(跳过2.2)
这个就不用分配权限,就让在root权限下就行
直接在root 下配置 .bash_profile
export PGHOME=/opt/PostgreSQL/9.4
export PGDATA=$PGHOME/data
PATH=$PATH:$HOME/bin:$PGHOME/bin
启动服务,查看端口都一样
2.4 配置pg_hba.conf
# IPv4 local connections:
host all all 127.0.0.1/32 md5
host all all 0.0.0.0/0 md5
2.5 设置自启动,打开端口
有的时候还是连接不上,有可能是5432关闭了所以需要重新打开
启动服务并设置为开机启动
systemctl enable postgresql-9.4
systemctl start postgresql-9.4
开放防火墙端口
firewall-cmd --permanent --add-port=5432/tcp
firewall-cmd --permanent --add-port=80/tcp
firewall-cmd --reload
附录
一些问题的参考
如何为CentOS 7配置静态IP地址
http://Linux.cn/article-3977-1.html
在CentOS 7上给一个网卡分配多个IP地址
https://linux.cn/article-5127-1-rel.html
postgresql 安装(linux下)
http://jingyan.baidu.com/article/4f7d5712cf761e1a20192784.html
SSH远程登录失败,提示“Password authentication failed”
http://m.blog.csdn.net/article/details?id=6045176
错误::Could not connect to server:Connection refused(0x00002740/10061)
Is the server running on host “xxx.xxx.xx.xx” and accepting
TCP/IP connetions on port 5432?
http://m.ithao123.cn/content-5942383.html
Centos7 PostgreSQL安装
http://m.blog.csdn.net/article/details?id=50359549