Centos 7 使用记录

1. 网络配置: http://simonhu.blog.51cto.com/196416/1588971

2. 防火墙详解:http://blog.linuxeye.com/406.html
#加入永久开放端口:
firewall-cmd –permanent –zone=home –add-port=443/tcp
firewall-cmd –permanent –add-port=5432/tcp
临时开发端口:# firewall-cmd –add-port=80/tcp
刷新:firewall-cmd –reload

3. CentOS7配置Tomcat开机自动启动 , 一定要注意字符问题,有适合中文符号标点导致不成功http://www.hiadmin.org/linux/centos7-tomcat-start, 测试失败
另一种方式: CentOS 7.x设置自定义开机启动,添加自定义系统服务 http://www.centoscn.com/CentOS/config/2015/0507/5374.html, 执行成功.

4. chkconfig 命令详解 https://justwinit.cn/post/2578/

5. 安装nexus: 下载:内嵌版本:http://www.sonatype.org/nexus/archived/, war版本:http://mvnrepository.com/artifact/org.sonatype.nexus/nexus-webapp, 进入到版本. 然后在Artifact后面下载.

6. 安装netlet工具
# yum install telnet-server.x86_64
# yum install telnet.x86_64

7. 安装网络工具: yum install net-tools

8. PostgreSQL 9.3安装 [url]http://www.linuxidc.com/Linux/2014-

12/110108.htm[/url], 注意,
A: 第一次su postgres之后要立即输入password postgres修改密码.
B: 两个配置文件/var/lib/pgsql/9.3/data/postgresql.conf, /var/lib/pgsql/9.3/data/pg_hba.conf.
C: 配置pg_hba.conf, 提供外网管理
host all all         127.0.0.1/24 md5 // 可以配置成192.168.0.198/24 md5  提供给非本机访问.
D: 创建表空间文件夹, mkdir -p /var/lib/pgsql/9.3/data/tb_space, 付给权限:chown postgres /var/lib/pgsql/9.3/data/tb_space

 

Centos 6 使用记录