对于新安装centos7的服务器,上面一些常用软件需要自己安装:
对于有些需要更换YUM源的,可以先安装wget:
yum -y install wget
更换aliyun镜像源地址:
1、备份
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2、下载新的CentOS-Base.repo 到/etc/yum.repos.d/
CentOS 7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
3、之后运行yum makecache生成缓存
其他软件:
yum -y install vim epel-release bash-completion net-tools psmisc
调试阶段可以关闭防火墙和安全机制:
1.关闭FirewallD防火墙并关闭开机启动:
- systemctl stop firewalld.service
- systemctl disable firewalld.service
2.关闭SELinux安全机制(为避免出现不必要麻烦):
- 查看SLlinux状态:
/usr/sbin/sestatus -v ##如果SELinux status参数为enabled即为开启状态
getenforce ##也可以用这个命令检查 - 1.临时关闭:
setenforce 0 ##(设置SELinux 成为permissive模式)
##(setenforce 1 设置SELinux 成为enforcing模式) - 2.永久关闭(修改配置文件需要重启机器):
修改/etc/selinux/config
文件将SELINUX=enforcing改为SELINUX=disabled
重启服务器即可