1、gitlab的搭建安装基础包yum-yinstallcurlpolicycoreutilsopenssh-serveropenssh-clients启动sshdsystemctlenablesshdsystemctlstartsshd安装postfixyum-yinstallpostfixsystemctlenablepostfixsystemctlstartpostfix添加防火墙规则firewall-cmd--permanent--add-service=htt..
分类:
其他好文 时间:
2016-03-18 02:01:02
阅读次数:
261
CentOS7.0中默认使用firewall代替了iptables service。虽然继续保留了iptables命令,但已经仅是名称相同而已。除非手动删除firewall,再安装iptables,否则不能继续使用以前的iptables配置方法。 检查防火墙状态# firewall-cmd --st
分类:
其他好文 时间:
2016-03-01 09:44:46
阅读次数:
111
从最新版本centos7开始,默认的是Mariadb而不是mysql!使用系统自带的repos安装很简单:yuminstallmariadbmariadb-serversystemctlstartmariadb==>启动mariadbsystemctlenablemariadb==>开机自启动firewall-cmd--permanent--add-port=3306/tcp==>开放端口,允许远程访..
分类:
数据库 时间:
2016-02-27 16:40:04
阅读次数:
208
项目使用CentOS7作为生产环境,而CentOS7使用firewalld替代了原来的iptables。 开启端口 firewall-cmd --zone=public --add-port=80/tcp --permanent命令含义:--zone #作用域--add-port=80/tcp #添...
分类:
其他好文 时间:
2015-12-26 11:34:05
阅读次数:
136
firewall-cmd--zone=public--add-port=22/tcp--permanent
firewall-cmd--reload
分类:
其他好文 时间:
2015-12-21 12:42:43
阅读次数:
186
Redhat7搭建ntp(时间同步)安装:#yuminstallntp启动:#systemctlstartntpd#systemctlenablentpd查看同步:#ntpq-p开放防火墙:#firewall-cmd--permanent--add-service=ntp此时ntpServer已搭建完成客户端从ntpServer同步安装:#yuminstallntp修改配置:#vi/etc/ntp.confserver..
分类:
其他好文 时间:
2015-12-17 22:39:08
阅读次数:
331
Redhat7firewall(防火墙)启动、停止firewall#systemctlstart\stop\restart\statusfirewalld主配置文件:/etc/firewalld/zones/public.xmlfirewall命令:开放服务:#firewall-cmd--permanent--add-service=ssh关闭服务:#firewall-cmd--permanent--remove-service=ssh查看已开..
分类:
其他好文 时间:
2015-12-13 18:58:26
阅读次数:
450
Redhat7配置http安装:#yuminstallhttpd主配置文件:/etc/httpd/conf/httpd.conflog路径:/var/log/httpd启动:#systemctlstarthttpd#systemctlenablehttpd开放防火墙:#firewall-cmd--permanent--add-service=http其它地址访问该web(selinux):#setsebool-Phttpd_can_network_..
分类:
Web程序 时间:
2015-12-13 18:56:37
阅读次数:
148
最小化安装CentOS7 后,很多端口默认是不打开的,需要通过 firewall-cmd 把这些端口打开。检查防火墙状态# firewall-cmd --staterunning 关闭防火墙# systemctl stop firewalld# firewall-cmd --statenot ru....
分类:
其他好文 时间:
2015-12-05 16:06:20
阅读次数:
193
Redhat7配置vsftpd安装:#yuminstallvsftpdftp(或rpm-i)启动:#systemctlstartvsftpd开机启动:#systemctlenablevsftpd查看状态:#systemctlstatusvsftpd主要配置文件:/etc/vsftpd/vsftpd.confLog路径:/var/log/xferlog防火墙开放服务:#firewall-cmd–permanent–add-serv..
分类:
其他好文 时间:
2015-12-05 02:06:10
阅读次数:
175