Linux系統調優
安裝完畢後,首先要做的就是系統調優,這樣會提高系統的使用效率,接下來為大家介紹一下 系統調優方法。 |
關閉selinux功能
selinux是美國國家安全域性對於強制訪問控制的實現,這個功能很強大,同時又很麻煩,大多是運維人員都選擇將其關閉,利用其它途徑增加安全性。
此 是永久關閉selinux,執行後重啟系統生效。
[root@chao selinux]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
開機自啟服務
linux系統和windows系統類似,開機也會自啟一些服務,沒用的服務即會佔用資源又有安全隱患,需要把必須執行的服務開機自啟,其他的關閉。
需要開機自啟的服務:
- sshd,遠端連線需要使用此服務
- rsyslog,日誌有關的軟體
- networ,網路相關的軟體
- crond,定時任務相關軟體
- sysstat資料分析的軟體
檢視目前開機自啟的服務
[root@chao selinux]# systemctl list-unit-files|grep enabled abrt-ccpp.service enabled abrt-oops.service enabled abrt-vmcore.service enabled abrt-xorg.service enabled abrtd.service enabled atd.service enabled auditd.service enabled autovt@.service enabled chronyd.service enabled crond.service enabled dbus-org.fedoraproject.FirewallD1.service enabled dbus-org.freedesktop.ModemManager1.service enabled dbus-org.freedesktop.NetworkManager.service enabled dbus-org.freedesktop.nm-dispatcher.service enabled dmraid-activation.service enabled firewalld.service enabled getty@.service enabled irqbalance.service enabled iscsi.service enabled kdump.service enabled ksm.service enabled ksmtuned.service enabled libstoragemgmt.service enabled libvirtd.service enabled
例如想關閉一個
[root@chao selinux]# systemctl disable postfix.service Removed symlink /etc/systemd/system/multi-user.target.wants/postfix.service.
設定ssh服務
編輯/etc/ssh/sshd_config檔案 更改預設埠為Port 22222 儲存退出,重啟服務!
linux中文設定
檢視系統是否是 zh_CN.UTF-8 如果不是手動新增一行到此檔案。
[root@chao etc]# cat locale.conf LANG="zh_CN.UTF-8"
設定賬戶超時時間
[root@chao ~]# echo 'export TMOUT=300' >>/etc/profile [root@chao ~]# source /etc/profile [root@chao ~]# env |grep -i tmout [root@chao ~]# vim /etc/profile [root@chao ~]# source /etc/profile [root@chao ~]# 等待輸入超時:自動登出 Connection closing...Socket close. Connection closed by foreign host. Disconnected from remote host(172.16.1.16) at 11:01:36. Type `help' to learn how to use Xshell prompt.
設定 行歷史記錄數
將原來的5條改成10條
[root@chao ~]# sed -i 's/^HISTSIZE=5/HISTSIZE=10/' /etc/profile [root@chao ~]# source /etc/profile
隱藏系統版本
[root@chao ~]# echo redflag 5.9 >/etc/issue [root@chao ~]# cat /etc/issue redflag 5.9
鎖定重要檔案
[root@chao ~]# chattr -i /etc/passwd /etc/shoadow /etc/group /etc/gshadow /etc/inittab
以上就是常用的最佳化步驟!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31524109/viewspace-2737785/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux系統調優介紹Linux
- Linux系統效能調優技巧Linux
- Linux系統效能調優之效能分析Linux
- linux系統引數調優全解析Linux
- (3)Linux效能調優之Linux檔案系統Linux
- linux系統關於kernel.sem調優Linux
- Linux優化之IO子系統監控與調優Linux優化
- 馬司系統調優
- 在Linux中,如何進行系統效能調優?Linux
- Linux系統優化部分核心引數調優中文註釋Linux優化
- 【sql調優】系統資訊統計SQL
- Linux雲端計算架構-系統調優【CPU、IO、網路、核心引數調優】Linux架構
- Linux系統配置(系統優化)Linux優化
- Linux 系統優化Linux優化
- 生產系統pl/sql調優案例SQL
- Linux系統調整swap大小Linux
- linux調整系統時間Linux
- LINUX系統效能調諧 (zt)Linux
- LINUX系統效能調諧(轉)Linux
- 【LINUX】linux ulimit調優LinuxMIT
- 【調優篇基本原理】系統統計資訊
- 通過shell繫結系統程式調優
- Android系統效能調優工具介紹Android
- Linux之我做系統效能調優時常用的一些命令Linux
- linux系統效能調優第一步——效能分析(vmstat) (轉載)Linux
- (2)Linux效能調優之Linux記憶體體系Linux記憶體
- Linux是什麼系統?Linux系統有何優勢?Linux
- Linux系統的特性優勢Linux
- linux系統優化指令碼Linux優化指令碼
- linux調優效能命令Linux
- Openssh-7.9p1升級+系統調優
- 生產系統調優之_敢於質疑
- Linux系統有什麼優點?linux作業系統學習Linux作業系統
- Linux系統安全常規優化Linux優化
- Linux核心引數調優Linux
- linux 效能調優引數Linux
- 生產系統調優之_毫秒級的改進
- 非常經典的UNIX系統調優的文章(轉)