装机初始优化

1、修改ip地址、网关、主机名、DNS等


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


[[email protected]
~]# vi /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0         #网卡名字

BOOTPROTO=static    #静态IP地址获取状态如:DHCP表示自动获取IP地址

IPADDR=192.168.1.113            #IP地址

NETMASK=255.255.255.0           #子网掩码

ONBOOT=yes#引导时是否激活

GATEWAY=192.168.1.1

[[email protected]
~]# cat /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0

BOOTPROTO=static

IPADDR=192.168.1.113

NETMASK=255.255.255.0

ONBOOT=yes

GATEWAY=192.168.1.1

[[email protected]
~]# vi /etc/sysconfig/network

HOSTNAME=c64     #修改主机名,重启生效

GATEWAY=192.168.1.1    #修改默认网关,如果上面eth0里面不配置网关的话,默认就使用这里的网关了。

[[email protected]
~]# cat /etc/sysconfig/network

HOSTNAME=c64

GATEWAY=192.168.1.1

我们也可以用  hostnamec64 来临时修改主机名,重新登录生效

修改DNS

[[email protected] ~]# vi /etc/resolv.conf  
#修改DNS信息

nameserver 114.114.114.114

nameserver 8.8.8.8

[[email protected] ~]# cat /etc/resolv.conf  #查看修改后的DNS信息

nameserver 114.114.114.114

nameserver 8.8.8.8

[[email protected] ~]# service network restart  
#重启网卡,生效

重启网卡,也可以用下面的命令

[[email protected]
~]# /etc/init.d/network restart

2、关闭selinux,清空iptables

关闭selinux


1

2

3

4

5

6


[[email protected] ~]# sed –i ‘s/SELINUX=enforcing/SELINUX=disabled/g’
/etc/selinux/config   #修改配置文件则永久生效,但是必须要重启系统。

[[email protected]
~]# grep SELINUX=disabled /etc/selinux/config

SELINUX=disabled     #查看更改后的结果

[[email protected] ~]# setenforce 0#临时生效命令

[[email protected] ~]# getenforce      #查看selinux当前状态

Permissive

清空iptables


1

2

3

4

5

6

7

8

9


[[email protected] ~]# iptables –F     #清理防火墙规则

[[email protected] ~]# iptables –L     #查看防火墙规则

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 save  
#保存防火墙配置信息

3、添加普通用户并进行sudo授权管理


1

2

3

4

5


[[email protected]
~]# useradd sunsky

[[email protected] ~]# echo "123456"|passwd --stdin sunsky&&history –c

[[email protected]
~]# visudo

在root    ALL=(ALL)    ALL此行下,添加如下内容

sunsky    ALL=(ALL)    ALL

4、更新yum源及必要软件安装

yum安装软件,默认获取rpm包的途径从国外官方源,改成国内的源。

国内较快的两个站点:搜狐镜像站点、网易镜像站点

法1:自己配置好安装源配置文件,然后上传到linux。

法2:使用镜像站点配置好的yum安装源配置文件


1

2

3


[[email protected]
~]# cd /etc/yum.repos.d/

[[email protected]
yum.repos.d]# /bin/mv CentOS-Base.repo CentOS-Base.repo.bak

[[email protected] yum.repos.d]# wget http://mirrors.163.com/.help/CentOS6-Base-163.repo

接下来执行如下命令,检测yum是否正常


1

2


[[email protected] yum.repos.d]# yum clean all  #清空yum缓存

[[email protected] yum.repos.d]# yum makecache  #建立yum缓存

然后使用如下命令将系统更新到最新


1

2


[[email protected] yum.repos.d]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY*      
#导入签名KEY到RPM

[[email protected] yum.repos.d]# yum  upgrade-y     #更新系统内核到最新

接下来就要安装几个必要的软件了


1


[[email protected]
yum.repos.d]# yum install lrzsz ntpdate sysstat -y

lrzsz是一个上传下载的软件

sysstat是用来检测系统性能及效率的工具

5、定时自动更新服务器时间


1

2


[[email protected] ~]# echo ‘*/5
* * * * /usr/sbin/ntpdate time.windows.com >/dev/null 2 >&1‘>>/var/spool/cron/root

[[email protected] ~]# echo ‘*/10
* * * * /usr/sbin/ntpdate time.nist.gov >/dev/null 2>&1‘>>/var/spool/cron/root

提示:CentOS 6.4的时间同步命令路径不一样

6是/usr/sbin/ntpdate

5是/sbin/ntpdate

扩展:在机器数量少时,以上定时任务同步时间就可以了。如果机器数量大时,可以在网内另外部署一台时间同步服务器NTP Server。此处仅提及,不做部署。

时间同步服务器架构图:

6、精简开机自启动服务

刚装完操作系统可以只保留crond,network,syslog,sshd这四个服务。(Centos6.4为rsyslog)


1

2

3

4

5

6

7


[[email protected] ~]# for sun in `chkconfig --list|grep 3:on|awk ‘{print $1}‘`;do chkconfig --level 3$sun off;done

[[email protected] ~]# for sun in crond rsyslog sshd network;do chkconfig --level 3 $sun on;done

[[email protected] ~]# chkconfig --list|grep 3:on

crond           0:off   1:off   2:on    3:on    4:on    5:on    6:off

network         0:off   1:off   2:on    3:on    4:on    5:on    6:off

rsyslog         0:off   1:off   2:on    3:on    4:on    5:on    6:off

sshd            0:off   1:off   2:on    3:on    4:on    5:on    6:off

7、定时自动清理/var/spool/clientmqueue/目录垃圾文件,放置inode节点被占满

本优化点,在6.4上可以忽略不需要操作即可!


1

2

3

4


[[email protected]
~]# mkdir /server/scripts -p

[[email protected]
~]# vi /server/scripts/spool_clean.sh

#!/bin/sh

find/var/spool/clientmqueue/-typef -mtime +30|xargsrm-f

然后将其加入到crontab定时任务中


1


[[email protected] ~]# echo ‘*/30
* * * * /bin/sh /server/scripts/spool_clean.sh >/dev/null 2>&1‘>>/var/spool/cron/root

8、变更默认的ssh服务端口,禁止root用户远程连接


1

2

3

4

5

6

7

8

9


[[email protected]
~]# cp /etc/ssh/sshd_config /etc/ssh/sshd_config.bak

[[email protected]
~]# vim /etc/ssh/sshd_config

Port 52113#ssh连接默认的端口

PermitRootLogin no   #root用户黑客都知道,禁止它远程登录

PermitEmptyPasswords no #禁止空密码登录

UseDNS no            #不使用DNS

[[email protected] ~]# /etc/init.d/sshd reload    #从新加载配置

[[email protected] ~]# netstat -lnt     #查看端口信息

[[email protected] ~]# lsof -i tcp:52113

9、锁定关键文件系统


1

2

3

4

5


[[email protected]
~]# chattr +i /etc/passwd

[[email protected]
~]# chattr +i /etc/inittab

[[email protected]
~]# chattr +i /etc/group

[[email protected]
~]# chattr +i /etc/shadow

[[email protected]
~]# chattr +i /etc/gshadow

使用chattr命令后,为了安全我们需要将其改名


1


[[email protected] ~]# /bin/mv /usr/bin/chattr /usr/bin/任意名称

10、调整文件描述符大小


1

2

3


[[email protected] ~]# ulimit –n        #查看文件描述符大小

1024

[[email protected] ~]# echo ‘*  -  nofile  65535‘ >>
/etc/security/limits.conf

配置完成后,重新登录即可查看。

提示:也可以把ulimit -SHn 65535命令加入到/etc/rc.local,然后每次重启生效


1

2

3

4

5

6


[[email protected]
~]# cat >>/etc/rc.local<<EOF

#open
files

ulimit -HSn 65535

#stack
size

ulimit -s 65535

EOF

扩展:文件描述符

文件描述符在形式上是一个非负整数。实际上,它是一个索引值,指向内核为每一个进程所维护的该进程打开文件的记录表。当程序打开一个现有文件或者创建一个新文件时,内核向进程返回一个文件描述符。在程序设计中,一些涉及底层的程序编写往往会围绕着文件描述符展开。但是文件描述符这一概念往往只适用于Unix、Linux这样的操作系统。

习惯上,标准输入(standard input)的文件描述符是 0,标准输出(standard output)是 1,标准错误(standard error)是 2。尽管这种习惯并非Unix内核的特性,但是因为一些 shell 和很多应用程序都使用这种习惯,因此,如果内核不遵循这种习惯的话,很多应用程序将不能使用。

11、调整字符集,使其支持中文


1

2


sed-i ‘s#LANG="en_US.UTF-8"#LANG="zh_CN.GB18030"#‘/etc/sysconfig/i18n

source/etc/sysconfig/i18n

12、去除系统及内核版本登录前的屏幕显示


1

2


[[email protected]
~]# >/etc/redhat-release

[[email protected] ~]# >/etc/issue         #相当于echo
"" > /etc/issue

13、内核参数优化

说明:本优化适合apache,nginx,squid多种等web应用,特殊的业务也可能需要略作调整。


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24


[[email protected]
~]# vi /etc/sysctl.conf

#by sun in 20131001

net.ipv4.tcp_fin_timeout = 2

net.ipv4.tcp_tw_reuse = 1

net.ipv4.tcp_tw_recycle = 1

net.ipv4.tcp_syncookies = 1

net.ipv4.tcp_keepalive_time =600

net.ipv4.ip_local_port_range = 4000    65000

net.ipv4.tcp_max_syn_backlog = 16384

net.ipv4.tcp_max_tw_buckets = 36000

net.ipv4.route.gc_timeout = 100

net.ipv4.tcp_syn_retries = 1

net.ipv4.tcp_synack_retries = 1

net.core.somaxconn = 16384

net.core.netdev_max_backlog = 16384

net.ipv4.tcp_max_orphans = 16384

#一下参数是对iptables防火墙的优化,防火墙不开会有提示,可以忽略不理。

net.ipv4.ip_conntrack_max = 25000000

net.ipv4.netfilter.ip_conntrack_max = 25000000

net.ipv4.netfilter.ip_conntrack_tcp_timeout_established
= 180

net.ipv4.netfilter.ip_conntrack_tcp_timeout_time_wait
= 120

net.ipv4.netfilter.ip_conntrack_tcp_timeout_close_wait
= 60

net.ipv4.netfilter.ip_conntrack_tcp_timeout_fin_wait
= 120

[[email protected] ~]# sysctl –p    #使配置文件生效

提示:由于CentOS6.X系统中的模块名不是ip_conntrack,而是nf_conntrack,所以在/etc/sysctl.conf优化时,需要把

net.ipv4.netfilter.ip_conntrack_max 这种老的参数,改成net.netfilter.nf_conntrack_max这样才可以。

即对防火墙的优化,在5.8上是


1

2

3

4

5

6


net.ipv4.ip_conntrack_max = 25000000

net.ipv4.netfilter.ip_conntrack_max = 25000000

net.ipv4.netfilter.ip_conntrack_tcp_timeout_established
= 180

net.ipv4.netfilter.ip_conntrack_tcp_timeout_time_wait
= 120

net.ipv4.netfilter.ip_conntrack_tcp_timeout_close_wait
= 60

net.ipv4.netfilter.ip_conntrack_tcp_timeout_fin_wait
= 120

在6.4上是


1

2

3

4

5

6


net.nf_conntrack_max = 25000000

net.netfilter.nf_conntrack_max = 25000000

net.netfilter.nf_conntrack_tcp_timeout_established
= 180

net.netfilter.nf_conntrack_tcp_timeout_time_wait = 120

net.netfilter.nf_conntrack_tcp_timeout_close_wait = 60

net.netfilter.nf_conntrack_tcp_timeout_fin_wait = 120

另外,在此优化过程中可能会有报错:

1、5.8版本上


1

2

3

4

5

6


error: "net.ipv4.ip_conntrack_max"is an unknown key

error: "net.ipv4.netfilter.ip_conntrack_max"is an unknown key

error: "net.ipv4.netfilter.ip_conntrack_tcp_timeout_established"is an unknown key

error: "net.ipv4.netfilter.ip_conntrack_tcp_timeout_time_wait"is an unknown key

error: "net.ipv4.netfilter.ip_conntrack_tcp_timeout_close_wait"is an unknown key

error: "net.ipv4.netfilter.ip_conntrack_tcp_timeout_fin_wait"is an unknown key

这个错误可能是你的防火墙没有开启或者自动处理可载入的模块ip_conntrack没有自动载入,解决办法有二,一是开启防火墙,二是自动处理开载入的模块ip_conntrack


1

2


modprobe
ip_conntrack

echo "modprobe
ip_conntrack">> /etc/rc.local

2、6.4版本上


1

2

3

4

5

6


error: "net.nf_conntrack_max"isan unknown key

error: "net.netfilter.nf_conntrack_max"isan unknown key

error: "net.netfilter.nf_conntrack_tcp_timeout_established"isan unknown key

error: "net.netfilter.nf_conntrack_tcp_timeout_time_wait"isan unknown key

error: "net.netfilter.nf_conntrack_tcp_timeout_close_wait"isan unknown key

error: "net.netfilter.nf_conntrack_tcp_timeout_fin_wait"isan unknown key

这个错误可能是你的防火墙没有开启或者自动处理可载入的模块ip_conntrack没有自动载入,解决办法有二,一是开启防火墙,二是自动处理开载入的模块ip_conntrack


1

2


modprobe
nf_conntrack

echo "modprobe
nf_conntrack">> /etc/rc.local

3、6.4版本上


1

2

3


error: "net.bridge.bridge-nf-call-ip6tables"isan unknown key

error: "net.bridge.bridge-nf-call-iptables"isan unknown key

error: "net.bridge.bridge-nf-call-arptables"isan unknown key

这个错误是由于自动处理可载入的模块bridge没有自动载入,解决办法是自动处理开载入的模块ip_conntrack


1

2


modprobe
bridge

echo "modprobe
bridge">> /etc/rc.local

源文档 <http://oldboy.blog.51cto.com/2561410/1336488>

来自为知笔记(Wiz)

时间: 2024-10-14 08:51:04

装机初始优化的相关文章

系统初始优化脚本

#!/bin/bash #1.精简开机自启动服务,只保留crond,network,syslog,sshd这四个服务. for k in `chkconfig --list|grep 3:on|awk '{print $1}'`; do chkconfig --level 3 $k off; done for j in crond rsyslog sshd network; do chkconfig --level 3 $j on; done #2.修改ip地址.网关.主机名.DNS #修改ip

centos7 初始优化+及目录讲解

CentOS 7系统安装后的基础优化 一.系统版本内核信息 [[email protected] ~]# cat /etc/redhat-release CentOS Linux release 7.3.1611 (Core) [[email protected] ~]# uname -a Linux center 3.10.0-514.2.2.el7.x86_64 #1 SMP Tue Dec 6 23:06:41 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

Centos系统初始优化设置

更新YUM 一般系统安装完后需要更新软件包,但使用国外的yum源速度没得说,慢的不要不要.所以推荐使用国内的YUM源. 笔者一般使用网易或阿里的源可以登录相关的官网上下载使用,以下以阿里的yum源为例: 阿里镜像官网:http://mirrors.aliyun.com/ 首先先备份原有的yum mv  CentOS-Base.repo CentOS-Base.repo.bak 下载阿里yum源 wget http://mirrors.aliyun.com/repo/Centos-6.repo m

虚拟机简单一键初始优化

#!/bin/sh ##http://mirrors.aliyun.com/ wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo yum install tree -y grep keepcache /etc/yum.conf sed -i 's/keepcache=0/keepcache=1/g' /etc/yum.conf grep keepcache /etc/yum.

WebSphere优化

优化WebSphere WebSphere里的profile刚配完,一般默认的heapsize即Xms与Xmx值只有256mb,而IBM WAS是几个J2EE服务器中最吃内存的机器,在布署一些EAR应用时,如果你的EAR中使用的lib即jar files较多,加载时往往会超出256mb的限制,如果你的WAS在安装完后不进行适当的优化就用来布署应用,很快就会成死机状,然后在相应的profile的目录中会留下一堆的heapdump即内存out of memory并造成了was档机后留下的dump文件

centos7简易优化

centos7系统初始优化 yum install wget net-tools lrzsz-y 更改yum源 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo wget -O /etc/yum.repos.d/epel

FreeBSD上构架Nginx服务器

这篇文章主要记录作者如何在FreeBSD上构架Nginx服务器.作者采用下载该程序的一个源代码包手动编译的方法,而不是使用包管理工具.这样做有两个原因:首先包质量不能保证,或无效或版本旧:其次需要在编译时对多种重要的选项进行配置. 另外,相关FreeBSD初始优化见博主之前的博文. 1          GCC Nginx是一个由C语言编写的程序,因此首先需要在系统上安装编译工具.我们采用常见GNU的GCC.确保系统上安装GCC: # gcc gcc: No input files specif

自动化运维Saltstack系列(六)之配置管理系统模块

架构图 Saltstack配置管理大型web架构网站其实并不是很难,最主要是合理管理各功能模块之间依赖关系,尽量独立各功能模块,让每一个系统功能都可以被业务引用. Saltstack环境目录 file_roots:   base:     - /srv/salt/base   prod:     - /srv/salt/prod pillar_roots:   base:     - /srv/pillar/base   prod:     - /srv/pillar/prod Saltstac

常见的mysql 进程state&lt;转自网络&gt;

Analyzing 线程是对MyISAM 表的统计信息做分析(例如, ANALYZE TABLE ). checking permissions 线程是检查服务器是否具有所需的权限来执行该语句. Checking table 线程正在执行表检查操作. cleaning up 线程处理一个命令,并正准备以释放内存和重置某些状态变量. closing tables 线程是改变表中的数据刷新到磁盘和关闭使用的表. 这应该是一个快速的操作. 如果没有,你应该确认你没有一个完整的磁盘和磁盘是不是在十分繁重