标签:ipaddr pat sysconf mit sshd a20 2.2.3 sql lis
这次选择的数据库安装的是run 文件,更容易掌握.这次数据库全是默认安装,如果有需求的可以自行修改一下的.
这是我的第一篇博客,各位观众老爷,如果觉得哪里有什么不好的,可以留言一起探讨,探讨.有什么问题的也可以一起学习学习.
因为我的CentOS7 是新安装的,所以需要爱打开ssh,如果你的已经在使用了,这个就忽略吧.
1.1.1 进入/etc/sysconfig/network-scripts/ 目录找到需要修改的网络的配置文件,并修改.
例如:vim /etc/sysconfig/network-scripts/ifcfg-eth0
1.1.2 修改如下内容
1.1.3 最终效果
1.1.4 重启服务
1.2.1 进入sshd的配置文件
Vi /etc/ssh/sshd_config
打开port 22
把PasswordAuthentication设成yes
找到#PermitRootLogin no将其修改为PermitRootLogin yes
service sshd restart 重启服务
2.1.1 傻瓜式安装
[root@rong opt]# chmod 777 postgresql-9.4.12-1-linux.run
[root@rong opt]# ./postgresql-9.4.12-1-linux.run
直接默认安装到opt/PostgreSQL/
中间只有设置用户postgres 的密码 注意
2.2.1复制配置文件
2.2.2更改文件权限
4
2.2.3 然后设置postgres用户的环境变量
2.2.4 然后我们可以启动服务,其实默认服务以及启动了
2.2.5 检查端口和服务状态
这个就不用分配权限,就让在root权限下就行
直接在root 下配置 .bash_profile
export PGHOME=/opt/PostgreSQL/9.4
export PGDATA=$PGHOME/data
PATH=$PATH:$HOME/bin:$PGHOME/bin
启动服务,查看端口都一样
# IPv4 local connections:
host all all 127.0.0.1/32 md5
host all all 0.0.0.0/0 md5
有的时候还是连接不上,有可能是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
标签:ipaddr pat sysconf mit sshd a20 2.2.3 sql lis
原文地址:http://www.cnblogs.com/aihuxi/p/6977912.html