1、配置IP、网关,编辑/etc/sysconfig/network-scripts/ifcfg-eno16777736
View Code
(1)临时的网络配置,可以使用如下命令: ip link set eno16777736 up //关闭使用down ip addr add 192.168.100.2/24 dev eno16777736 //删除使用del ip route add default via 192.168.100.1 //配置默认网关,删除使用del 2、修改主机名,编辑/etc/hostname文件,默认的主机名为localhost.localdomain linux5201351 3、配置dns信息,一般dns配置在/etc/resolv.conf文件
4、配置时间同步服务器 (1)Centos 7最小化安装默认没有安装ntp服务,需要先使用yum方式进行安装 [root@5201351 ~]# yum install ntp -y (2)修改ntpd服务的配置文件/etc/ntp.conf #server 0.centos.pool.ntp.org iburst #server 1.centos.pool.ntp.org iburst #server 2.centos.pool.ntp.org iburst #server 3.centos.pool.ntp.org iburst //注释掉如上4行,同步自己定义的服务器 server 192.168.100.3 server 192.168.100.2 prefer //prefer优先服务器,可定义多个master同步服务器 logfile /var/log/ntp.log //可选的操作,方便记录日志信息 (3)启动ntpd服务,并加入到开机启动项 [root@5201351 ~]# systemctl start ntpd.service //服务文件名位于/usr/lib/systemd/system/ntpd.service [root@5201351 ~]# systemctl enable ntpd.service //将ntpd服务加入到开机启动项 (4)如果我们需要将系统时间同步到硬件时间,还可以使用hwclock -w命令进行同步 5、配置本地yum源,先将本地.iso上传至Centos服务器,再进行挂载 [root@5201351 ~]# mount -t iso9660 -o loop /soft/CentOS-7-x86_64-DVD-1503-01.iso /media/cdrom/ 然后创建/etc/yum.repos.d/CentOS-Media.repo,加入如下内容即可 [media-5201351] name=CentOS-5201351 baseurl=file:///media/cdrom enabled=1 gpgcheck=0 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 6、有时我们可能会需要关闭selinux,及firewall,可以使用如下方法 setenforce 0 //临时关闭selinux sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config systemctl stop firewalld.service //临时关闭firewalld服务 systemctl disable firewalld.service (责任编辑:IT) |