博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
系统初始化SHELL脚本
阅读量:7072 次
发布时间:2019-06-28

本文共 4273 字,大约阅读时间需要 14 分钟。

此脚本用于新装CentOS的相关配置工作,比如禁掉iptable和SElinux及ipv6,优化系统内核,停掉一些没必要启动的系统服务等。此脚本尤其适全大批新安装的CentOS 5.X系列的服务器,脚本代码如下所示(此脚本在Centos5.5_x64下已通过):

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
118
119
120
#!/bin/bash
# Created by kerryhu
# MAIL:king_819@163.com
# BLOG:http://kerry.blog.51cto.com
cat 
<< EOF
+--------------------------------------------------------------+
|         === Welcome to Centos System init ===                |
+--------------------------------------------------------------+
+--------------------------by kerry----------------------------+
EOF
#set ntp
yum -y 
install 
ntp
echo 
"* 3 * * * /usr/sbin/ntpdate 210.72.145.44 > /dev/null 2>&1" 
>> 
/etc/crontab
service crond restart
#set ulimit
echo 
"ulimit -SHn 102400" 
>> 
/etc/rc
.
local
#set locale
#true > /etc/sysconfig/i18n
#cat >>/etc/sysconfig/i18n<<EOF
#LANG="zh_CN.GB18030"
#SUPPORTED="zh_CN.GB18030:zh_CN:zh:en_US.UTF-8:en_US:en"
#SYSFONT="latarcyrheb-sun16"
#EOF
#set sysctl
true 
/etc/sysctl
.conf
cat 
>> 
/etc/sysctl
.conf << EOF
net.ipv4.ip_forward = 0
net.ipv4.conf.default.rp_filter = 1
net.ipv4.conf.default.accept_source_route = 0
kernel.sysrq = 0
kernel.core_uses_pid = 1
net.ipv4.tcp_syncookies = 1
kernel.msgmnb = 65536
kernel.msgmax = 65536
kernel.shmmax = 68719476736
kernel.shmall = 4294967296
net.ipv4.tcp_max_tw_buckets = 6000
net.ipv4.tcp_sack = 1
net.ipv4.tcp_window_scaling = 1
net.ipv4.tcp_rmem = 4096 87380 4194304
net.ipv4.tcp_wmem = 4096 16384 4194304
net.core.wmem_default = 8388608
net.core.rmem_default = 8388608
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
net.core.netdev_max_backlog = 262144
net.core.somaxconn = 262144
net.ipv4.tcp_max_orphans = 3276800
net.ipv4.tcp_max_syn_backlog = 262144
net.ipv4.tcp_timestamps = 0
net.ipv4.tcp_synack_retries = 1
net.ipv4.tcp_syn_retries = 1
net.ipv4.tcp_tw_recycle = 1
net.ipv4.tcp_tw_reuse = 1
net.ipv4.tcp_mem = 94500000 915000000 927000000
net.ipv4.tcp_fin_timeout = 1
net.ipv4.tcp_keepalive_time = 1200
net.ipv4.ip_local_port_range = 1024 65535
EOF
/sbin/sysctl 
-p
echo 
"sysctl set OK!!"
#close ctrl+alt+del
sed 
-i 
"s/ca::ctrlaltdel:\/sbin\/shutdown -t3 -r now/#ca::ctrlaltdel:\/sbin\/shutdown -t3 -r now/" 
/etc/inittab
#set purview
chmod 
600 
/etc/passwd
chmod 
600 
/etc/shadow
chmod 
600 
/etc/group
chmod 
600 
/etc/gshadow
#disable ipv6
cat 
<< EOF
+--------------------------------------------------------------+
|         === Welcome to Disable IPV6 ===                      |
+--------------------------------------------------------------+
EOF
echo 
"alias net-pf-10 off" 
>> 
/etc/modprobe
.conf
echo 
"alias ipv6 off" 
>> 
/etc/modprobe
.conf
/sbin/chkconfig 
--level 35 ip6tables off
echo 
"ipv6 is disabled!"
#disable selinux
sed 
-i 
'/SELINUX/s/enforcing/disabled/' 
/etc/selinux/config
echo 
"selinux is disabled,you must reboot!"
#vim
sed 
-i 
"8 s/^/alias vi='vim'/" 
/root/
.bashrc
echo 
'syntax on' 
/root/
.vimrc
#zh_cn
sed 
-i -e 
's/^LANG=.*/LANG="en"/'   
/etc/sysconfig/i18n
#init_ssh
ssh_cf=
"/etc/ssh/sshd_config"
sed 
-i -e 
'74 s/^/#/' 
-i -e 
'76 s/^/#/' 
$ssh_cf
#sed -i "s/#Port 22/Port 65535/" $ssh_cf
sed 
-i 
"s/#UseDNS yes/UseDNS no/" 
$ssh_cf
#client
sed 
-i -e 
'44 s/^/#/' 
-i -e 
'48 s/^/#/' 
$ssh_cf
service sshd restart
echo 
"ssh is init is ok.............."
#chkser
#tunoff services
#--------------------------------------------------------------------------------
cat 
<< EOF
+--------------------------------------------------------------+
|         === Welcome to Tunoff services ===                   |
+--------------------------------------------------------------+
EOF
#---------------------------------------------------------------------------------
for 
in 
`
ls 
/etc/rc3
.d
/S
*`
do
              
CURSRV=`
echo 
$i|
cut 
-c 15-`
echo 
$CURSRV
case 
$CURSRV 
in
          
crond | irqbalance | microcode_ctl | network | random | sshd | syslog | 
local 
)
      
echo 
"Base services, Skip!"
      
;;
      
*)
          
echo 
"change $CURSRV to off"
          
chkconfig --level 235 $CURSRV off
          
service $CURSRV stop
      
;;
esac
done
echo 
"service is init is ok.............."
本文转自 抚琴煮酒 51CTO博客,原文链接:http://blog.51cto.com/yuhongchun/724103,如需转载请自行联系原作者
你可能感兴趣的文章
git下载仓库指定目录
查看>>
AVL树
查看>>
ios 笔记
查看>>
十六、类的真正形态
查看>>
laravel中Dingo api如何Custom ExceptionHandler
查看>>
前端_JavaScript_API
查看>>
LeetCode 310. Minimum Height Trees
查看>>
mysql-存储过程
查看>>
PAT A1122
查看>>
Callbacks, Promises and Async/Await
查看>>
全链路压测自动化实践
查看>>
软件测试行业年度核心热点数据大揭秘(2018 )
查看>>
Vagrant (四) - Box 的用法
查看>>
前端代码风格自动化系列(四)之Prettier
查看>>
访问者模式
查看>>
Go routine调度
查看>>
Python 二分查找与 bisect 模块
查看>>
webpack4系列教程(十):总结
查看>>
【性能优化】quicklink:实现原理与给前端的启发
查看>>
剥开比原看代码16:比原是如何通过/list-transactions显示交易信息的?
查看>>