經(jīng)常玩Linux系統(tǒng)的朋友多多少少也知道些系統(tǒng)參數(shù)優(yōu)化和怎樣增強(qiáng)系統(tǒng)安全性,系統(tǒng)默認(rèn)的一些參數(shù)都是比較保守的,所以我們可以通過(guò)調(diào)整系統(tǒng)參數(shù)來(lái)提高系統(tǒng)內(nèi)存、CPU、內(nèi)核資源的占用,通過(guò)禁用不必要的服務(wù)、端口,來(lái)提高系統(tǒng)的安全性,更好的發(fā)揮系統(tǒng)的可用性。通過(guò)自己對(duì)Linux了解,對(duì)系統(tǒng)調(diào)優(yōu)做了如下小結(jié):
操作系統(tǒng):CentOS 6.5_x64最小化安裝
1、主機(jī)名設(shè)置
[root@localhost~]# vi /etc/sysconfig/network
HOSTNAME=test.com
[root@localhost~]# hostname test.com #臨時(shí)生效
2、關(guān)閉SELinux
[root@localhost~]# vi /etc/selinux/config
SELINUX=disabled
[root@localhost~]# setenforce #臨時(shí)生效
[root@localhost~]# getenforce #查看selinux狀態(tài)
3、清空防火墻并設(shè)置規(guī)則
[root@localhost~]# iptables -F #清楚防火墻規(guī)則
[root@localhost~]# iptables -L #查看防火墻規(guī)則
[root@localhost~]# iptables -A INPUT -p tcp --dport 80 -j ACCEPT
[root@localhost~]# iptables -A INPUT -p tcp --dport 22 -j ACCEPT
[root@localhost~]# iptables -A INPUT -p tcp --dport 53 -j ACCEPT
[root@localhost~]# iptables -A INPUT -p udp --dport 53 -j ACCEPT
[root@localhost~]# iptables -A INPUT -p udp --dport 123 -j ACCEPT
[root@localhost~]# iptables -A INPUT -p icmp -j ACCEPT
[root@localhost~]# iptables -P INPUT DROP
[root@localhost~]# /etc/init.d/iptables save
#根據(jù)需求開(kāi)啟相應(yīng)端口
4、添加普通用戶并進(jìn)行sudo授權(quán)管理
[root@localhost~]# useradd user
[root@localhost~]# echo "123456" | passwd --stdin user #設(shè)置密碼
[root@localhost~]# vi /etc/sudoers #或visudo打開(kāi),添加user用戶所有權(quán)限
root ALL=(ALL) ALL
user ALL=(ALL) ALL
5、禁用root遠(yuǎn)程登錄
[root@localhost~]# vi /etc/ssh/sshd_config
PermitRootLoginno
PermitEmptyPasswords no #禁止空密碼登錄
UseDNSno #關(guān)閉DNS查詢
6、關(guān)閉不必要開(kāi)機(jī)自啟動(dòng)服務(wù)
7、刪除不必要的系統(tǒng)用戶
8、關(guān)閉重啟ctl-alt-delete組合鍵
[root@localhost ~]# vi /etc/init/control-alt-delete.conf
#exec /sbin/shutdown -r now "Control-Alt-Deletepressed" #注釋掉
9、調(diào)整文件描述符大小
[root@localhost ~]# ulimit –n #默認(rèn)是1024
1024
[root@localhost ~]# echo "ulimit -SHn 102400">> /etc/rc.local #設(shè)置開(kāi)機(jī)自動(dòng)生效
10、去除系統(tǒng)相關(guān)信息
[root@localhost ~]# echo "Welcome to Server" >/etc/issue
[root@localhost ~]# echo "Welcome to Server" >/etc/redhat-release
11、修改history記錄
[root@localhost ~]# vi /etc/profile #修改記錄10個(gè)
HISTSIZE=10
12、同步系統(tǒng)時(shí)間
[root@localhost ~]# cp /usr/share/zoneinfo/Asia/Shanghai/etc/localtime #設(shè)置Shanghai時(shí)區(qū)
[root@localhost ~]# ntpdate cn.pool.ntp.org ;hwclock–w #同步時(shí)間并寫(xiě)入blos硬件時(shí)間
[root@localhost ~]# crontab –e #設(shè)置任務(wù)計(jì)劃每天零點(diǎn)同步一次
0 * * * * /usr/sbin/ntpdate cn.pool.ntp.org ; hwclock -w
13、內(nèi)核參數(shù)優(yōu)化
[root@localhost ~]# vi /etc/sysctl.conf #末尾添加如下參數(shù)
net.ipv4.tcp_syncookies = 1 #1是開(kāi)啟SYN Cookies,當(dāng)出現(xiàn)SYN等待隊(duì)列溢出時(shí),啟用Cookies來(lái)處,理,可防范少量SYN攻擊,默認(rèn)是0關(guān)閉
net.ipv4.tcp_tw_reuse = 1 #1是開(kāi)啟重用,允許講TIME_AIT sockets重新用于新的TCP連接,默認(rèn)是0關(guān)閉
net.ipv4.tcp_tw_recycle = 1 #TCP失敗重傳次數(shù),默認(rèn)是15,減少次數(shù)可釋放內(nèi)核資源
net.ipv4.ip_local_port_range = 4096 65000 #應(yīng)用程序可使用的端口范圍
net.ipv4.tcp_max_tw_buckets = 5000 #系統(tǒng)同時(shí)保持TIME_WAIT套接字的最大數(shù)量,如果超出這個(gè)數(shù)字,TIME_WATI套接字將立刻被清除并打印警告信息,默認(rèn)180000
net.ipv4.tcp_max_syn_backlog = 4096 #進(jìn)入SYN寶的最大請(qǐng)求隊(duì)列,默認(rèn)是1024
net.core.netdev_max_backlog = 10240 #允許送到隊(duì)列的數(shù)據(jù)包最大設(shè)備隊(duì)列,默認(rèn)300
net.core.somaxconn = 2048 #listen掛起請(qǐng)求的最大數(shù)量,默認(rèn)128
net.core.wmem_default = 8388608 #發(fā)送緩存區(qū)大小的缺省值
net.core.rmem_default = 8388608 #接受套接字緩沖區(qū)大小的缺省值(以字節(jié)為單位)
net.core.rmem_max = 16777216 #最大接收緩沖區(qū)大小的最大值
net.core.wmem_max = 16777216 #發(fā)送緩沖區(qū)大小的最大值
net.ipv4.tcp_synack_retries = 2 #SYN-ACK握手狀態(tài)重試次數(shù),默認(rèn)5
net.ipv4.tcp_syn_retries = 2 #向外SYN握手重試次數(shù),默認(rèn)4
net.ipv4.tcp_tw_recycle = 1 #開(kāi)啟TCP連接中TIME_WAIT sockets的快速回收,默認(rèn)是0關(guān)閉
net.ipv4.tcp_max_orphans = 3276800 #系統(tǒng)中最多有多少個(gè)TCP套接字不被關(guān)聯(lián)到任何一個(gè)用戶文件句柄上,如果超出這個(gè)數(shù)字,孤兒連接將立即復(fù)位并打印警告信息
net.ipv4.tcp_mem = 94500000 915000000 927000000
net.ipv4.tcp_mem[0]:低于此值,TCP沒(méi)有內(nèi)存壓力;
net.ipv4.tcp_mem[1]:在此值下,進(jìn)入內(nèi)存壓力階段;
net.ipv4.tcp_mem[2]:高于此值,TCP拒絕分配socket。內(nèi)存單位是頁(yè),可根據(jù)物理內(nèi)存大小進(jìn)行調(diào)整,如果內(nèi)存足夠大的話,可適當(dāng)往上調(diào)。上述內(nèi)存單位是頁(yè),而不是字節(jié)。
至此CentOS 6.5_x64最小化安裝系統(tǒng)基本優(yōu)化調(diào)整完畢,需要重啟下系統(tǒng)。
本文出自 ““企鵝”那點(diǎn)事兒” 博客。