1 、临时生效(使用centos5,6,7版本)

hostname 修改的计算机名称

[root@localhost ~]# hostname centos
[root@localhost ~]# hostname
centos

[root@centos ~]# hostname
centos

2 永久修改

centos 7.x

[root@localhost ~]# vi /etc/hostname
centos

centos 6.x

[root@centos ~]# vi /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=centos
[root@centos ~]# hostname
centos

1,配置DNS

vi /etc/resolv.conf

nameserver 192.168.0.1
nameserver 8.8.8.8
nameserver 8.8.4.4

2,配置网关:

vi /etc/sysconfig/network

NETWORKING=yes
HOSTNAME=localhost.localdomain
GATEWAY=192.168.0.1
3,配置ip地址: (找到自己的ifcfg)
vi /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=”eth0″
HWADDR=”00:0C:29:6C:BB:E6″
NM_CONTROLLED=”yes”
ONBOOT=”no”
NETMASK=255.255.255.0
IPADDR=192.168.0.8
GATEWAY=192.168.0.1
BOOTPROTO=static
ONBOOT=yes
PEERDNS=yes

4,重新启动服务:

/etc/init.d/network restart
或使用命令:
service network restart

centos配置网络

有些时候我们需要在Centos服务器上发送邮件,例如备份MySQL数据库并发送到指定邮箱,这里我们就说下如何从Centos的shell命令发送邮件。

检查、安装、启动sendmail

//检查
ps -ef | grep sendmail
//安装
yum install sendmail
//启动
service sendmail start
//开机启动
chkconfig –level 2345 sendmail on
复制代码
检查并安装mutt
//检查mutt是否安装, 已安装会返回/usr/bin/mutt
# which mutt

//安装mutt
# yum install mutt

配置全局mutt, 直接编辑 /etc/Muttrc 文件
配置用户级mutt, 复制/etc/Muttrc 到 /当前用户/.muttrc

Read More →