目录
一、服务器系统设置初始化
二、发送告警邮件
三、批量创建100个用户并设置密码
四、一键查看服务器利用率
五、找出占用CPU/内存过高的进程
1、背景:新购买10台服务器并已安装linux系统
2、需求:将系统初始化
3、一台新系统要配置哪些?
1)设置时区并同步时间
2)关闭selinux
3)清空防火墙默认策略
4)历史命令显示操作时间
5)禁止root远程登录
6)禁止定时任务发送邮件
7)设置最大打开文件数
8)减少swap使用
9)系统内核参数的优化
10)安装系统性能分析工具及其他
/bin/bash
# 设置时区并同步时间
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
if ! crontab -l |grep ntpdate &>/dev/null ; then
(echo "* 1 * * * ntpdate time.windows.com >/dev/null 2>&1";crontab -l) |crontab
fi
# 禁用selinux
sed -i '/SELINUX/{s/permissive/disabled/}' /etc/selinux/config
# 关闭防火墙
if egrep "7.[0-9]" /etc/redhat-release &>/dev/null; then
systemctl stop firewalld
systemctl disable firewalld
elif egrep "6.[0-9]" /etc/redhat-release &>/dev/null; then
service iptables stop
chkconfig iptables off
fi
# 历史命令显示操作时间
if ! grep HISTTIMEFORMAT /etc/bashrc; then
echo 'export HISTTIMEFORMAT="%F %T `whoami` "' >> /etc/bashrc
fi
# SSH超时时间
if ! grep "TMOUT=600" /etc/profile &>/dev/null; then
echo "export TMOUT=600" >> /etc/profile
fi
# 禁止root远程登录
sed -i 's/#PermitRootLogin yes/PermitRootLogin no/' /etc/ssh/sshd_config
# 禁止定时任务向发送邮件
sed -i 's/^MAILTO=root/MAILTO=""/' /etc/crontab
# 设置最大打开文件数
if ! grep "* soft nofile 65535" /etc/security/limits.conf &>/dev/null; then
cat >> /etc/security/limits.conf << EOF
* soft nofile 65535
* hard nofile 65535
EOF
fi
# 系统内核优化
cat >> /etc/sysctl.conf << EOF
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_max_tw_buckets = 20480
net.ipv4.tcp_max_syn_backlog = 20480
net.core.netdev_max_backlog = 262144
net.ipv4.tcp_fin_timeout = 20
EOF
# 减少SWAP使用
echo "0" > /proc/sys/vm/swappiness
# 安装系统性能分析工具及其他
yum install gcc make autoconf vim sysstat net-tools iostat iftop iotp lrzsz -y
要有外部邮箱服务器(@163)
# yum install mailx
# vi /etc/mail.rc
set [email protected] smtp=smtp.163.com
set [email protected] smtp-auth-password=XXXXXX#授权码
set smtp-auth=login
1、你的部门新入职了工程师,你要给他们分配账号
[root@client2 shell_scripts]# vim 3.sh
#!/bin/bash
=$1
USER_FILE=user.txt
for USER in $USER_LIST; do
if ! id $USER &>/dev/null; then # 感叹号!是反向结果,将echo $?不为0的结果输入抹除
PASS=$(echo $RANDOM |md5sum |cut -c 1-8) #$()执行shall命令
useradd $USER
echo $PASS |passwd --stdin $USER &>/dev/null
echo "$USER $PASS" >> $USER_FILE
echo "$USER User create successful."
else
echo "$USER User already exists!"
fi
done
[root@client2 shell_scripts]# ./3.sh user{1..100}
1、web服务器跑的慢
2、查看CPU、内存利用率、硬件利用率、TCP连接状态
[root@client2 shell_scripts]# vim 4.sh
#!/bin/bash
function cpu() {
NUM=1
while [ $NUM -le 3 ]; do
util=`vmstat |awk '{if(NR==3)print 100-$15"%"}'`
user=`vmstat |awk '{if(NR==3)print $13"%"}'`
sys=`vmstat |awk '{if(NR==3)print $14"%"}'`
iowait=`vmstat |awk '{if(NR==3)print $16"%"}'`
echo "CPU - 使用率: $util , 等待磁盘IO响应使用率: $iowait"
let NUM++
sleep 1
done
}
function memory() {
total=`free -m |awk '{if(NR==2)printf "%.1f",$2/1024}'`
used=`free -m |awk '{if(NR==2) printf "%.1f",($2-$NF)/1024}'`
available=`free -m |awk '{if(NR==2) printf "%.1f",$NF/1024}'`
echo "内存 - 总大小: ${total}G , 使用: ${used}G , 剩余: ${available}G"
}
function disk() {
fs=$(df -h |awk '/^\/dev/{print $1}')
for p in $fs; do
mounted=$(df -h |awk '$1=="'$p'"{print $NF}')
size=$(df -h |awk '$1=="'$p'"{print $2}')
used=$(df -h |awk '$1=="'$p'"{print $3}')
used_percent=$(df -h |awk '$1=="'$p'"{print $5}')
echo "硬盘 - 挂载点: $mounted , 总大小: $size , 使用: $used , 使用率: $used_percent"
done
}
function tcp_status() {
summary=$(ss -antp |awk '{status[$1]++}END{for(i in status) printf i":"status[i]" "}')
echo "TCP连接状态 - $summary"
}
cpu
memory
disk
tcp_status
[root@client2 shell_scripts] sh 4.sh
CPU - 使用率: 1% , 等待磁盘IO响应使用率: 0%
CPU - 使用率: 1% , 等待磁盘IO响应使用率: 0%
CPU - 使用率: 1% , 等待磁盘IO响应使用率: 0%
内存 - 总大小: 1.8G , 使用: 0.4G , 剩余: 1.4G
硬盘 - 挂载点: / , 总大小: 17G , 使用: 1.8G , 使用率: 11%
硬盘 - 挂载点: /boot , 总大小: 1014M , 使用: 181M , 使用率: 18%
TCP连接状态 - LISTEN:4 ESTAB:3 State:1
[root@client2 shell_scripts] vim 5.sh
ps -eo user,pid,pcpu,pmem,args --sort=-pcpu |head -n 10
ps -eo user,pid,pcpu,pmem,args --sort=-pmem |head -n 10
[root@client2 shell_scripts] sh 5.sh
USER PID %CPU %MEM COMMAND
root 20460 0.1 0.2 /usr/bin/vmtoolsd
root 55061 0.1 0.0 [kworker/0:0]
root 1 0.0 0.3 /usr/lib/systemd/systemd --system --deserialize 16
root 2 0.0 0.0 [kthreadd]
root 4 0.0 0.0 [kworker/0:0H]
root 6 0.0 0.0 [ksoftirqd/0]
root 7 0.0 0.0 [migration/0]
root 8 0.0 0.0 [rcu_bh]
root 9 0.0 0.0 [rcu_sched]
USER PID %CPU %MEM COMMAND
root 20975 0.0 1.0 /usr/bin/python2 -Es /usr/sbin/tuned -l -P
polkitd 20917 0.0 0.6 /usr/lib/polkit-1/polkitd --no-debug
root 754 0.0 0.5 /usr/sbin/NetworkManager --no-daemon
root 492 0.0 0.3 /usr/lib/systemd/systemd-journald
root 1 0.0 0.3 /usr/lib/systemd/systemd --system --deserialize 16
root 20514 0.0 0.3 /usr/sbin/lvmetad -f
root 20817 0.0 0.3 /usr/sbin/rsyslogd -n
root 44558 0.0 0.3 sshd: root@pts/1
root 44581 0.0 0.3 sshd: root@pts/2