服务管理

1)查看服务启动状态

[root@xuegod63 ~]# service atd status

atd (pid  2120) 正在运行...


2)启动服务

[root@xuegod63 ~]# service atd start

正在启动 atd:                                             [确定]


3)关闭服务

[root@xuegod63 ~]# service atd stop

停止 atd:                                                 [确定]

4)重启服务

[root@xuegod63 ~]# service atd restart

停止 atd:                                                 [确定]

正在启动 atd:                                             [确定]


5)重载服务

[root@xuegod63 ~]# service atd reload

停止 atd:                                                 [确定]

正在启动 atd:                                             [确定]


7)设置服务开机自动关闭

[root@xuegod63 ~]# chkconfig atd off

[root@xuegod63 ~]# chkconfig --list atd

atd             0:关闭  1:关闭  2:关闭  3:关闭  4:关闭  5:关闭  6:关闭


实验环境搭建


1.防火墙

 a.iptables -F #清空防火墙

b./etc/init.d/iptables save #保存防火墙规则
c.chkconfig iptables off

2.关闭selinux

 getenforce 0

 vim /etc/selinux/config SELINUX=disabled

3.配置好静态IP

 vim /etc/sysconfig/network-scripts/ifcfg-eth0

 

 DEVICE=eth0

 TYPE=Ethernet

 ONBOOT=yes

 BOOTPROTO=static

 IPADDR=192.168.1.223

 NETMASK=255.255.255.0

 GATEWAY=192.168.1.2

 DNS1=8.8.8.8

 DNS2=114.114.114.114


4.配置主机和ip映射关系host

 vim /etc/hosts

 192.168.1.223  xc.cn xc

 

[root@nn2c ~]# ping xc

PING xc.cn (192.168.1.223) 56(84) bytes of data.

64 bytes from xc.cn (192.168.1.223): icmp_seq=1 ttl=64 time=0.128 ms

64 bytes from xc.cn (192.168.1.223): icmp_seq=2 ttl=64 time=0.065 ms


5.修改主机名

 

[root@nn2c ~]# vim /etc/sysconfig/network

NETWORKING=yes

HOSTNAME=nn2c


立即生效: hostname nn


6.   配置yum源:
     配置本地yum源
           mount /dev/sr0 /mnt 挂载镜像

            (虚拟机光驱没开时会出现mount: you must specify the filesystem type,打开光驱再挂载就     好了)
           echo "/dev/sr0 /mnt iso9660 defaults 0 0" >>/etc/fstab 设置开机自动                挂载
         yum clean all
         yum list
      删除以前本地yum配置 (实际环境不删除) ,并新建
         rm -rf /etc/yum.repos.d/*
         cat > /etc/yum.repos.d/rhel6.repo << EOF
          > [rhel6-source]
         > name=rhel6-source
         > baseurl=file:///mnt
          > enabled=1
        > gpgcheck=0
        > EOF
        配置网络yum源
            wget -O /etc/yum.repos.d/CentOS-Base.repo            http://mirrors.aliyun.com/repo/Centos-6.repo  
        运行yum makecache生成缓存
           下载epel
             wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo


创建一个快照

克隆虚拟机