查看系统环境
[[email protected] ~]# cat /etc/redhat-release CentOS release 6.6 (Final)
[[email protected] ~]# uname –a Linux xuliangwei.com 2.6.32-504.el6.x86_64 #1 SMP Wed Oct 15 04:27:16 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
1.精简开机系统
保留5个必须:sshd|rsyslog|network|crond|sysstat
sshd
远程连接Linux服务器时需要用到这个服务器程序,所以必须要开启,否则将无法连接Linux服务器。
rsyslog
是操作系统提供的一种机制,系统的守护程序通常会使用rsyslog将各种信息记录系统日志文件中,Centos6以前服务器的名字为syslog
network
系统启动时,若想激活/关闭各个网络接口,则应(必须)考虑开启。
crond
该服务用于周期性地执行系统及用户配置的任务计划。有要周期性执行的任务,任要开启,此服务几乎是生产场景必须要用的一个软件。
sysstat
sysstat是一个软件包,包含检测系统性能及效率的一组工具,这些工具对于系统性能数据很有帮助,比如CPU使用率,硬盘和网络吞吐数据等,这些数据的分析,有利于判断系统运行是否正常,所以它是提高系统运行效率、安全运行服务器的助手。
sysstat软件包集成的主要工具为:
iostat 工具提供CPU使用率及硬盘吞吐效率的数据;
mpstat 工具提供与单个或多个处理器相关的数据;
sar 工具负责收集、报告并存储系统活跃的信息;
其他不用开机自启动的处理方法:
1). setup-->SystemServices-->取消*表示关闭
2)netsysv-->取消*表示关闭
3)使用chkconfig进行关闭
chkconfig name off
使用for循环,配合awk清理不需要开机自启动服务
for i in `chkconfig --list | awk ‘{print $1}‘ | grep -Ev "sshd|network|rsyslog|sysstat|crond"`; do chkconfig $i off; done chkconfig --list |grep 3:on |awk ‘{print $1}‘|grep -Ev "crond|network|rsyslog|sshd|sysstat" |sed -r ‘s/(.*)/chkconfig \1 off /g‘ |bash
2.Linux最小化安装
运维思想最小化原则
2.1、安装Linux系统最小化,即选包最小化,yum安装软件包也要最小化,无用的包不装。
2.2、操作命令最小化。例如:用rm -f text.txt 而不用rm -rf
2.3、登录Linux用户最小化。平时没有需求不用root登录,用普通用户登录即可。
2.4、普通用户授权权限最小化,即只给必须的管理系统的命令。
2.5、Linux系统文件及目录的权限设置最小化,禁止随意创建、更改、删除。(理论上禁止)
3.SSH优化
配置文件
/etc/ssh/sshd_config 服务端
/etc/ssh/ssh_config 客户端
Port 52113 修改端口52113
UseDNS yes 修改为No 会反向查询客户端主机名,进行验证,防止客户端欺骗
PermitRootlogin no 禁止root登录
GSSAPIAuthentication yes 取消,打开NO 解决Linux之间使用ssh连接慢的问题
PermitEmpasswords no 禁止使用空密码(默认为空)
ListenAddress 192.168.1.x 只运行服务器上的内网地址来进行远程连接,外网地址直接拒绝,可以用Vpn做跳板进入局域网,通过这样来访问,更加的安全
配置文件修改
######xuliangwei###### Port 52113 UseDNS no PermitRootlogin no GSSAPIAuthentication no ######20150627######
可以使用sed来进行添加
[[email protected] ~]# sed -ir ‘12 iPort 52113\nUseDNS no\nPermitRootlogin no\nGSSAPIAuthentication no‘ /etc/ssh/sshd_config
4.其他优化
4.0中文乱码
客户端连接工具也必须是UTF-8
临时生效
export LANG=en_US.UTF-8
永久生效
vim /etc/sysconfig/i18n 更改 LANG="en_US.UTF-8"
4.1时间同步
时间服务器
time.nist.gov time.windows.com
手动修改时间
date -s "2015/05/28 12:00"
ntpdate定时和互联网时间同步
echo "*/5 * * * * ntpdate time.windows.com >/dev/null 2>&1"
服务器在50-100台之间可以搭建时间同步服务器ntpserver
4.2优化历史记录
history 查看历史记录 默认100条
参数:
-c:清空历史记录
-d:指定删除一行
export HISISIZE=5(控制终端)
HISTFILESIZE=5 (控制用户家目录下的记录)
[[email protected] ~]# HISTFILESIZE=5 [[email protected] ~]# cat ~/.bash_history Test Welcome to xuliangwei Linux EOF exit [[email protected] ~]#
清空历史记录终端
[[email protected] ~]# history -c [[email protected] ~]# history 734 history
4.3终端超时
临时生效
[[email protected] ~]# export TMOUT=300ms
永久生效
echo "export TMOUT=300ms" >> /etc/profile
4.4加大文件描述符
每个进程启动都会占用文件描述符,如果过文件描述符,会导致进程无法启动
查看默认文件描述符
ulinit -n
参数:
-S:软
-H:硬
调整文件描述符
临时生效
ulimit -SHn 65535
永久生效
echo "* - nofile 65535" >>/etc/security/limits.conf
4.5锁定系统关系文件
锁定文件系统
[[email protected] ~]# chattr +i /etc/passwd /etc/shadow /etc/gshadow /etc/inittab
查看锁定文件
[[email protected] ~]# lsattr /etc/passwd /etc/shadow /etc/gshadow /etc/inittab ----i--------e- /etc/passwd ----i--------e- /etc/shadow ----i--------e- /etc/gshadow ----i--------e- /etc/inittab
解除锁定
[[email protected] ~]# chattr -i /etc/passwd /etc/shadow /etc/gshadow /etc/inittab
再次查看
[[email protected] ~]# lsattr /etc/passwd /etc/shadow /etc/gshadow /etc/inittab -------------e- /etc/passwd -------------e- /etc/shadow -------------e- /etc/gshadow -------------e- /etc/inittab
4.6禁止Linux被ping
禁止Linux被ping会增加系统安全
echo "net.ipv4.icmp_echo_ignore_all=1">>/etc/sysctl.conf
使其生效
sysctl -p
工作中不会这样禁止,一般使用防火墙来过滤
4.7调整yum源
由于默认的yum源是从centos官网下载会很慢,调整为国内的速度会快很多。
备份yum源
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.xuliangwei.20150629
CentOS 5源
[[email protected] ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
CentOS6源
[[email protected] ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
CentOS 7源 [[email protected] ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
4.8隐藏Linux版本号
[[email protected] ~]# >/etc/issue [[email protected] ~]# >/etc/issue = cat > /dev/null /etc/issue
编辑/etc/motd (设置登录提示信息)
[[email protected]t ~]# cat >> /etc/motd << EOF > Welcome to xuliangwei Linux > EOF
4.9为grub添加密码
[[email protected] ~]# /sbin/grub-md5-crypt Password: Retype password: $1$gaVDJ$90LqgR4wtA/.9KFEaFw7F/
编辑 /etc/grub.conf
将密码添加至,title和splashimage之间。
5.定时清理邮件服务临时目录垃圾文件
CentOS5 系列的系统会默认安装sendmail服务,因此邮件临时存放地点的径
/var/spool/clientmqueue/
CentOS6 默认情况下没有安装sendmail服务,而是改装了postfix服务,因此邮件存放地点的路径为
/var/spool/postfix/maildrop/
以上两个目录很容易被垃圾文件填满导致系统的inode数量不够用,从而导致无法存放文件。
手动清理方法如下:
[[email protected] ~]#find /var/spool/clientmqueue/ -type f | xargs rm -f
适合CentOS5的sendmail服务
[[email protected] ~]#find /var/spool/postfix/maildrop/ -type f | xarfs rm -f
适合CentOS6的Postfix服务
定时清理方法为:将上述命令写成脚本,然后做定时任务,每天晚上0点执行一下。
6.关闭防火墙
6.1关闭iptables防火墙
学习一般关闭掉防火墙,如果生产环境在做调试
查看防火墙
[[email protected] ~]# iptables -L -n Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination
关闭防火墙
[[email protected] ~]# /etc/init.d/iptables stop iptables: Setting chains to policy ACCEPT: filter [ OK ] iptables: Flushing firewall rules: [ OK ] iptables: Unloading modules: [ OK ]
6.2关闭SElinux防火墙
修改/etc/selinux/config
SELINUX=enforcing修改为SELINUX=disabled
使用sed替换关闭selinux
sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/g‘ /etc/selinux/config
临时关闭
getenforce 查看
setenforce 1.开启 0.permissive
7.Linux内核优化
这儿所列参数是老男孩老师生产中常用的参数:
把参数添加到/etc/sysctl.conf中,然后执行sysctl -p使参数生效,永久生效
net.ipv4.tcp_syn_retries = 1 net.ipv4.tcp_synack_retries = 1 net.ipv4.tcp_keepalive_time = 600 net.ipv4.tcp_keepalive_probes = 3 net.ipv4.tcp_keepalive_intvl =15 net.ipv4.tcp_retries2 = 5 net.ipv4.tcp_fin_timeout = 2 net.ipv4.tcp_max_tw_buckets = 36000 net.ipv4.tcp_tw_recycle = 1 net.ipv4.tcp_tw_reuse = 1 net.ipv4.tcp_max_orphans = 32768 net.ipv4.tcp_syncookies = 1 net.ipv4.tcp_max_syn_backlog = 16384 net.ipv4.tcp_wmem = 8192 131072 16777216 net.ipv4.tcp_rmem = 32768 131072 16777216 net.ipv4.tcp_mem = 786432 1048576 1572864 net.ipv4.ip_local_port_range = 1024 65000 net.ipv4.ip_conntrack_max = 65536 net.ipv4.netfilter.ip_conntrack_max=65536 net.ipv4.netfilter.ip_conntrack_tcp_timeout_established=180 net.core.somaxconn = 16384 net.core.netdev_max_backlog = 16384
企业面试:Linux系统如何优化
Linux系统如何优化?
1.不用root管理,以普通用户的名义通过sudo授权管理。
2.更改默认的远程连接SSH服务端口,禁止root用户远程连接,甚至更改为只监听内网IP
3.
4.配置yum更新源,从国内更新源下载安装软件包。
5.关闭selinux及iptables(在工作场景中,如果有外部IP一般打开)
6.调整文件描述符的数量,进程及文件的打开都会消耗文件描述符。
7.定时自动清理邮件目录垃圾文件,防止inodes节点被沾满(注意centos5和centos6目录不同)
8.精简并保留必要的开机自启动服务(如crond、sshd、network、rsyslog、sysstat)
9.Linux内核参数优化/etc/sysctl.conf,执行sysctl -p 生效。
10.更改字符集,是其支持中文,但建议还是用英文字符集,防止出现乱码。
11.锁定关键系统文件如/etc/passwd /etc/shadow /etc/group /etc/gshadow /etc/inittab
处理以上内容后把chattr、lsattr改名为xuliangwei,这样就安全多了。
12.清空/etc/issue、/etc/issue.net,去除系统及内核版本登录前的信息。
13.清楚多余的系统虚拟账号。
14.位grub菜单加密码。
15.禁止被PING
16.升级漏洞软件