centos7最⼩化安装后的配置以及安装必备包centos最⼩化安装后,需要进⾏⼀些配置如防⽕墙selinux,更换yum源,安装必备软件包等,具体如下:
⼀、关闭centos7防⽕墙,安装之前的防⽕墙
停⽌ Firewall
systemctl stop firewalld
关闭firewall⾃动启动
systemctl disable firewalld.service
安装Iptables防⽕墙
yum install -y iptables-services
修改iptables配置⽂件,开放以下端⼝ (默认开启了22端⼝,以便putty等软件的连接,实例开启80端⼝和3306端⼝,以便后期lamp环境使⽤,注:80 为Apache默认端⼝,3306为MySQL的默认端⼝)
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
修改后的iptables配置⽂件:
# sample configuration for iptables service
# you can edit this manually or use system-config-firewall
# please do not ask us to add additional ports/services to this default configuration
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
-
A INPUT -m state –state RELATED,ESTABLISHED -j ACCEPT
-A INPUT -p icmp -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A INPUT -p tcp -m state –state NEW -m tcp –dport 22 -j ACCEPT
-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 -j REJECT –reject-with icmp-host-prohibited
-A FORWARD -j REJECT –reject-with icmp-host-prohibited
COMMIT
重启iptables
systemctl restart iptables.service
添加iptables开机⾃启项
systemctl enable iptables.service
⼆、关闭selinux
编辑SELINUX配置⽂件
vi /etc/selinux/config
#注释掉下⾯两⾏
#SELINUX=enforcing
#SELINUXTYPE=targeted
#增加⼀⾏
SELINUX=disabled
保存,关闭
setenforce 0
使设置启⽤,在这⾥最好重启⼀下系统,也可以稍后重启
三、更换yum源
CentOS⾃带的国外源有时候会很慢,我们替换成国内的阿⾥源,也有很多⽐如163源都很好,国内很多⼈⽤,但这⾥我们就⽤阿⾥源做个⽰例,想⽤其他源的同学可以去百度⼀下。
#先进⼊源的⽬录
cd /po.d
#备份⼀下官⽅源
po.bak
#将阿⾥源⽂件下载下来
注意:这⼀步可能应为本机⽆wget软件不能成功,需要先下载,再上传到相关⽬录。
#重建源数据缓存
yum makecache
ok,换源完成
四、相关包的安装
1.安装centos7 Base组件包
yum groupinstall base -y
2.安装gcc-c++
yum -y install gcc gcc-c++
3.安装net-tools
yum install net-tools -y
4.安装wget
yum -y install wget
mysql下载后如何使用
6.安装vim
yum install vim -y
7.更新系统
yum update -y
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论