Centos7最小化安裝完成後的一些操做

關於做者

程序開發人員,不拘泥於語言與技術,目前主要從事PHP和前端開發,使用Laravel和VueJs,App端使用Apicloud混合式開發。合適和夠用是最完美的追求。前端

我的網站:http://www.linganmin.cnlinux

最近剛寫了一個手機在線播放的H5電影站:http://www.ifilm.ltdvim

centos7開啓root的ssh登陸

sudo vim /etc/ssh/sshd_config

修改PermitRootLogin的值爲yescentos

修改防火牆

  1. 安裝centos7選擇基本安裝,配置完網絡後首先要先關閉firewall:
    中止firewall網絡

systemctl stop firewalld.servicessh

禁止firewall開機啓動tcp

systemctl disable firewalld.service網站

  1. 安裝iptables防火牆
    yum方式安裝iptablescentos7

yum install iptables-servicesrest

編輯防火牆配置文件

vi /etc/sysconfig/iptables

添加下面三句話到默認的22端口這條規則的下面

`
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
-A INPUT -m state --state NEW -m udp -p udp --dport 161 -j ACCEPT
`
最後重啓防火牆使配置生效

systemctl restart iptables.service

設置防火牆開機啓動

systemctl enable iptables.service

  1. 閉SELINUX
    編輯selinux的配置文件

vi /etc/selinux/config

#註釋掉下面兩行
#SELINUX=enforcing 
#SELINUXTYPE=targeted 
#增長一行
SELINUX=disabled

保存,關閉
ESC
:wq
重啓系統

shutdown -r now

相關文章
相關標籤/搜索