1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
| #!/bin/bash
#############################################
#The script is used to optimize the CentOS 6.x.
#created by Jerry12356 on May 16th, 2016
#############################################
iptables_stop(){
#关闭iptables服务,生产环境不建议这么做
/etc/init.d/iptables stop > /dev/null 2>&1
if [ $? -eq 0 ];then
echo -e "\033[1;32mStop iptables successful.\033[0m"
fi
}
selinux_disable(){
#禁用SElinux
setenforce 0 > /dev/null 2>&1
sed -i '/SELINUX/s/enforcing/disabled/' /etc/selinux/config
echo -e "\033[1;32mDisable selinux successful.\033[0m"
}
addusers(){
#添加普通用户,并设置sudo权限(不建议使用admin作为用户名)
useradd -u 603 -g users admin
echo 'admin:123456'|chpasswd
sed -i '/^root/aadmin ALL=(ALL) ALL ' /etc/sudoers
#以下为服务用户,如有相关服务,可以一并添加
useradd -u 602 -M nginx -s /sbin/nologin
useradd -u 605 -M zabbix -s /sbin/nologin
echo -e "\033[1;32mAdd users successful.\033[0m"
}
yum_install(){
#安装开发组件、运行库
yum -y install gcc gcc-c++ openssh-clients wget make cmake curl finger nmap tcp_wrappers expect lrzsz unzip zip xz ntpdate lsof telnet vim tree > /dev/null 2>&1
if [ $? -eq 0 ];then
echo -e "\033[1;32mInstall softwares successful.\033[0m"
fi
}
yum_update(){
#更新yum源
if [ ! -e "/etc/yum.repos.d/bak" ];then
mkdir /etc/yum.repos.d/bak
fi
cd /etc/yum.repos.d/
for i in `ls *.*`;do mv $i bak/$i.bak;done
wget http://mirrors.163.com/.help/CentOS6-Base-163.repo -O /etc/yum.repos.d/CentOS-Base.repo > /dev/null 2>&1
yum clean all > /dev/null 2>&1
yum makecache > /dev/null 2>&1
echo -e "\033[1;32mUpdate repos successful.\033[0m"
}
time_sync(){
#设置时区并同步系统时间
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
#time sync
echo -e "0 * * * * /usr/sbin/ntpdate 210.72.145.44 64.147.116.229 time.nist.gov" >> /var/spool/cron/root
echo -e "/usr/sbin/ntpdate time.nist.gov 210.72.145.44 64.147.116.229" >> /etc/rc.local
echo -e "\033[1;32mTime sync successful.\033[0m"
}
service_optimize(){
#测试环境中
for i in `chkconfig --list|grep 3:on|awk '{print $1}'`;do chkconfig --level 3 $i off;done
for i in crond network rsyslog sshd;do chkconfig --level 3 $i on;done
#生产环境中
#for service in kdump postfix lvm2-monitor messagebus iptables ip6tables ;do chkconfig $service off ;done
echo -e "\033[1;32mServices optimizd successful.\033[0m"
}
history_setting(){
#设置history历史记录
sed -i "/mv/aalias vi='vim'" /root/.bashrc
sed -i "/HISTSIZE/s/1000/10000/g" /etc/profile
echo -e 'export HISTTIMEFORMAT="`whoami` : %F %T :"' >> /etc/profile
source /etc/profile
echo -e "\033[1;32mSetting history successful.\033[0m"
}
kernel_optimize(){
echo -e "* soft nofile 2097152\n* hard nofile 2097152\n* soft nproc 2097152\n* hard nproc 2097152\n" >> /etc/security/limits.conf
echo -e "* soft nproc 10240\n" > /etc/security/limits.d/90-nproc.conf
echo -e "fs.file-max = 2097152\nfs.nr_open = 2097152\nnet.ipv4.tcp_syncookies = 1\nnet.ipv4.tcp_tw_reuse = 1\nnet.ipv4.tcp_tw_recycle = 1\nnet.ipv4.tcp_fin_timeout = 30\nnet.ipv4.tcp_keepalive_time = 1200\nnet.ipv4.ip_local_port_range = 1024 65000\nnet.ipv4.tcp_max_syn_backlog = 81920" >> /etc/sysctl.conf
sed -i '/bridge/s/^/\#/' /etc/sysctl.conf
echo -e "session required pam_limits.so" >> /etc/pam.d/login
sed -i 's/1024/100000/g' /etc/security/limits.d/90-nproc.conf
echo -e "\033[1;32mKernel optimized successful.\033[0m"
}
hostname_change(){
read -p "Input a new hostname: " HostName
sed -i "/HOSTNAME/s/localhost.localdomain/$HostName/" /etc/sysconfig/network
hostname $HostName
echo "`ifconfig eth0|grep "inet addr"|awk '{print $2}'|cut -d":" -f2` $HostName">>/etc/hosts
echo -e "\033[1;32mChange hostname successful.\033[0m"
}
iptables_stop
selinux_disable
addusers
yum_install
yum_update
time_sync
service_optimize
history_setting
kernel_optimize
hostname_change
echo -e "\033[1;32m\nAll of the operations were done, please reboot to make them took effect.\033[0m"
|