centos7初始优化

2019-08-28  本文已影响0人  天使的眼泪_698f

一、查看本机IP

ip addr  或者  ip a

二、ping百度,验证是否可以上网

ping www.baidu.com

三、修改主机名

hostnamectl set-hostname pc1

四、selinux关闭

setenforce 0             临时关闭

vim/etc/sysconfig/selinux     修改配置文件,永久关闭(需重启)

如图:

五、防火墙关闭

停止firewall:  systemctl stop firewalld.service

禁止firewall开机启动: systemctl disable firewalld.service

六、更改ssh端口连接

1、编辑ssh配置文件,更改默认端口22,为其他端口。

vim /etc/ssh/ssh_config

vim /etc/ssh/sshd_config

2、重启服务

service sshd restart  

注意:修改两个配置端口,并重启服务!

七、安装软件优化软件

yum -y install nc lrzsz telnet htop iftop iotop nmap vim ntpdate wget

yum -y install net-tools       安装net工具包

八、yum源更新

1、查看系统源

yum repolist

2、备份你的原镜像文件,以免出错后可以恢复

cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

3、下载新的CentOS-Base.repo 到/etc/yum.repos.d/

wget -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

4、清除yum缓存

yum clean all

5、yum repolist 

查看是否已更新

九、更新时间

ntpdate ntp1.aliyun.com  

上一篇下一篇

猜你喜欢

热点阅读