Centos安装基础工具
yum update -y
yum install -y java-1.8.0-openjdk.x86_64 java-1.8.0-openjdk-devel.x86_64 \
lrzsz lsof net-tools bind-utils iputils traceroute telnet curl wget vim \
gzip tar zip unzip git htop perf gcc gcc-c++ openssl openssl-devel patch tree \
tcpdump iftop iotop sysstat nethogs
修改/etc/resolv.conf
chattr -i /etc/resolv.conf
sed -i '1i nameserver 8.8.8.8' /etc/resolv.conf
chattr +i /etc/resolv.conf
修改/etc/security/limits.conf
cat >>/etc/security/limits.conf<<EOF
root soft nofile 100001
root hard nofile 100002
* soft nofile 100001
* hard nofile 100002
* soft memlock unlimited
* hard memlock unlimited
EOF
修改/etc/sysctl.conf
sysctl -p