Centos7 系统初试化脚本

Posted root0

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7 系统初试化脚本相关的知识,希望对你有一定的参考价值。

Centos7 系统初试化脚本

#!/bin/bash
yum install  -y wget && wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo && yum -y install vim wget bash-completion lrzsz nmap tree nc net-tools htop iotop iftop psmisc ntpdate && systemctl stop firewalld.service && systemctl disable firewalld.service 
#setenforce  0  && sed ‘7s#enforcing#disabled#g‘ /etc/selinux/config -i 
#优化文件描述符
echo *               -       nofile          65535  >>/etc/security/limits.conf
ulimit -n 65535   
#内核优化
cat >>/etc/sysctl.conf<<EOF
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
EOF
sysctl -p
sed -i.bak [email protected]#UseDNS [email protected] [email protected];[email protected]^GSSAPIAuthentication [email protected] [email protected]  /etc/ssh/sshd_config
systemctl restart sshd 
echo * * * * *  root /usr/sbin/ntpdate ntp1.aliyun.com >>/etc/crontab

 

以上是关于Centos7 系统初试化脚本的主要内容,如果未能解决你的问题,请参考以下文章

1-ESP8266-AT指令初试化及部分基础知识

6.Swift协议|扩展|访问权限|异常调试|类型转换|运算函数|ARC|类类型初试化器|值类型初始化器

shell脚本初试—002 接收参数

创建片段而不从 java 代码实例化它

CentOS7搭建Oracle11gRAC问题汇总

开源的.Net 工作流引擎Elsa初试——创建工作流服务器和图形化工作流配置管理应用