1、配置IP、网关,编辑/etc/sysconfig/network-scripts/ifcfg-eno16777736
TYPE=Ethernet BOOTPROTO=none //默认为dhcp DEFROUTE=yes PEERDNS=yes PEERROUTES=yes IPV4_FAILURE_FATAL=no IPV6INIT=yes IPV6_AUTOCONF=yes IPV6_DEFROUTE=yes IPV6_PEERDNS=yes IPV6_PEERROUTES=yes IPV6_FAILURE_FATAL=no NAME=eno16777736 UUID=b33237b8-41c4-4c89-9100-484fb20b1b67 DEVICE=eno16777736 ONBOOT=yes //默认为no,为no时重启network时、网卡都不会启动 IPADDR=192.168.100.2 //自行添加配置 NETMASK=255.255.255.0 //自行添加配置 GATEWAY=192.168.100.1 //自行添加配置
(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
尊重别人的劳动成果 转载请务必注明出处:http://www.cnblogs.com/5201351/p/4646933.html
作者:一名卑微的IT民工
出处:https://www.cnblogs.com/5201351
本博客所有文章仅用于学习、研究和交流目的,欢迎非商业性质转载。
由于博主的水平不高,文章没有高度、深度和广度,只是凑字数,不足和错误之处在所难免,希望大家能够批评指出。
博主是利用读书、参考、引用、复制和粘贴等多种方式打造成自己的文章,请原谅博主成为一个卑微的IT民工!