CentOS系統(tǒng)安裝之后并不能立即投入生產(chǎn)環(huán)境使用,往往需要先經(jīng)過我們運(yùn)維人員的優(yōu)化才行。在此講解幾點(diǎn)關(guān)于Linux系統(tǒng)安裝后的基礎(chǔ)優(yōu)化操作。注意:本次優(yōu)化都是基于CentOS(5.8/6.7)。
下面我就為大家簡(jiǎn)單講解幾點(diǎn)關(guān)于Linux系統(tǒng)安裝后的基礎(chǔ)優(yōu)化操作。
注意:本次優(yōu)化都是基于CentOS(5.8/6.7)。關(guān)于5.8和6.7兩者優(yōu)化時(shí)的小區(qū)別,我會(huì)在文中提及的。
優(yōu)化條目:
1 修改ip地址、網(wǎng)關(guān)、主機(jī)名、DNS等
2 關(guān)閉selinux,清空iptables
3 添加普通用戶并進(jìn)行sudo授權(quán)管理
4 更新yum源及必要軟件安裝
5 定時(shí)自動(dòng)更新服務(wù)器時(shí)間
6 精簡(jiǎn)開機(jī)自啟動(dòng)服務(wù)
7 定時(shí)自動(dòng)清理/var/spool/clientmqueue/目錄垃圾文件,放置inode節(jié)點(diǎn)被占滿
8 變更默認(rèn)的ssh服務(wù)端口,禁止root用戶遠(yuǎn)程連接
9 鎖定關(guān)鍵文件系統(tǒng)
10 調(diào)整文件描述符大小
11 調(diào)整字符集,使其支持中文
12 去除系統(tǒng)及內(nèi)核版本登錄前的屏幕顯示
13 內(nèi)核參數(shù)優(yōu)化
1、修改ip地址、網(wǎng)關(guān)、主機(jī)名、DNS等
1 [root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0
2 DEVICE=eth0 #網(wǎng)卡名字
3 BOOTPROTO=static #靜態(tài)IP地址獲取狀態(tài) 如:DHCP表示自動(dòng)獲取IP地址
4 IPADDR=192.168.1.113 #IP地址
5 NETMASK=255.255.255.0 #子網(wǎng)掩碼
6 ONBOOT=yes#引導(dǎo)時(shí)是否激活
7 GATEWAY=192.168.1.1
8 [root@localhost ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0
9 DEVICE=eth0
10 BOOTPROTO=static
11 IPADDR=192.168.1.113
12 NETMASK=255.255.255.0
13 ONBOOT=yes
14 GATEWAY=192.168.1.1
15 [root@localhost ~]# vi /etc/sysconfig/network
16 HOSTNAME=c64 #修改主機(jī)名,重啟生效
17 GATEWAY=192.168.1.1 #修改默認(rèn)網(wǎng)關(guān),如果上面eth0里面不配置網(wǎng)關(guān)的話,默認(rèn)就使用這里的網(wǎng)關(guān)了。
18 [root@localhost ~]# cat /etc/sysconfig/network
19 HOSTNAME=c64
20 GATEWAY=192.168.1.1
21 我們也可以用 hostnamec64 來臨時(shí)修改主機(jī)名,重新登錄生效
22 修改DNS
23 [root@localhost ~]# vi /etc/resolv.conf #修改DNS信息
24 nameserver 114.114.114.114
25 nameserver 8.8.8.8
26 [root@localhost ~]# cat /etc/resolv.conf #查看修改后的DNS信息
27 nameserver 114.114.114.114
28 nameserver 8.8.8.8
29 [root@localhost ~]# service network restart #重啟網(wǎng)卡,生效
30 重啟網(wǎng)卡,也可以用下面的命令
31 [root@localhost ~]# /etc/init.d/network restart
2、關(guān)閉selinux,清空iptables
1 [root@server ~]# sed –i ‘s/SELINUX=enforcing/SELINUX=disabled/g’ /etc/selinux/config #修改配置文件則永久生效,但是必須要重啟系統(tǒng)。
2 [root@server ~]# grep SELINUX=disabled /etc/selinux/config
3 SELINUX=disabled #查看更改后的結(jié)果
4 [root@server ~]# setenforce 0#臨時(shí)生效命令
5 [root@server ~]# getenforce #查看selinux當(dāng)前狀態(tài)
6 Permissive
清空iptables
1 [root@server ~]# iptables –F #清理防火墻規(guī)則
2 [root@server ~]# iptables –L #查看防火墻規(guī)則
3 Chain INPUT (policy ACCEPT)
4 target prot opt source destination
5 Chain FORWARD (policy ACCEPT)
6 target prot opt source destination
7 Chain OUTPUT (policy ACCEPT)
8 target prot opt source destination
9 [root@server ~]#/etc/init.d/iptables save #保存防火墻配置信息
3、添加普通用戶并進(jìn)行sudo授權(quán)管理
1 [root@server ~]# useradd sunsky
2 [root@server ~]# echo "123456"|passwd --stdin sunsky&&history –c
3 [root@server ~]# visudo
4 在root ALL=(ALL) ALL此行下,添加如下內(nèi)容
5 sunsky ALL=(ALL) ALL
4、更新yum源及必要軟件安裝
yum安裝軟件,默認(rèn)獲取rpm包的途徑從國(guó)外官方源,改成國(guó)內(nèi)的源。
國(guó)內(nèi)較快的兩個(gè)站點(diǎn):搜狐鏡像站點(diǎn)、網(wǎng)易鏡像站點(diǎn)
法1:自己配置好安裝源配置文件,然后上傳到linux。
法2:使用鏡像站點(diǎn)配置好的yum安裝源配置文件
1 [root@server ~]# cd /etc/yum.repos.d/
2 [root@server yum.repos.d]# /bin/mv CentOS-Base.repo CentOS-Base.repo.bak
3 [root@server yum.repos.d]# wget //mirrors.163.com/.help/CentOS6-Base-163.repo
接下來執(zhí)行如下命令,檢測(cè)yum是否正常
[root@server yum.repos.d]# yum clean all #清空yum緩存
[root@server yum.repos.d]# yum makecache #建立yum緩存
然后使用如下命令將系統(tǒng)更新到最新
[root@server yum.repos.d]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY* #導(dǎo)入簽名KEY到RPM
[root@server yum.repos.d]# yum upgrade-y #更新系統(tǒng)內(nèi)核到最新
接下來就要安裝幾個(gè)必要的軟件了
[root@server yum.repos.d]# yum install lrzsz ntpdate sysstat -y
lrzsz是一個(gè)上傳下載的軟件
sysstat是用來檢測(cè)系統(tǒng)性能及效率的工具
2015職稱計(jì)算機(jī)考試書PowerPoint2007中 .. 定價(jià):¥45 優(yōu)惠價(jià):¥42 更多書籍 | |
2015年全國(guó)職稱計(jì)算機(jī)考試教材(2007模 .. 定價(jià):¥225 優(yōu)惠價(jià):¥213 更多書籍 |