常用linux管理命令

1、设置时区
#tzselect
#TZ='Asia/Shanghai'; export TZ

2、修改主机名
#hostnamectl status
#hostnamectl --static set-hostname zabbix   永久修改

3、修改IP地址
vi /etc/sysconfig/network-scripts/ifcfg-eth*
查看网卡的UUID:
# nmcli con show
查看网卡IP和DNS:
# nmcli device show
双网卡的情况下,上外网的网卡设置网关,内网网卡不设置网关

4、配置yum源
curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

5、关闭防火墙
查看防火墙:firewall-cmd --state
停止防火墙:systemctl stop firewalld.service
禁止开机启动:systemctl disable firewalld.service 

6、配置ntp
安装ntp: yum install -y ntp
systemctl start ntpd    #启动ntp
systemctl enable ntpd   #停止ntp
设置server:
/etc/ntp.conf  server 127.127.1.0
重启ntp server:
systemctl restart ntpd 

客户端设置;
ntpdate 10.107.18.35 
systemctl start ntpd
systemctl enable ntpd

所有节点设置:
timedatectl set-ntp yes

 

监控网卡的流量
sar -n DEV  1 10 |grep 'eth1' 

你可能感兴趣的:(Linux技术)