新装服务器部署流程

 1、配置内网IP    (如果是外网IP,linux要修改远程端口)

 2、配置自己的yum源     

yum install wget
rm -f /etc/yum.repos.d/CentOS-Base.repo
wget curl http://172.18.10.13/comratings.repo -O /etc/yum.repo.d/

 或者

curl http://172.18.10.13/comratings.repo >/etc/yum.repos.d/comratings.repo

 3、关闭SELinux      

sed -i 's#SELINUX=enforcing#SELINUX=disabled#g' /etc/selinux/config
setenforce 0

 4、添加zabbix监控

 5、配置防火墙

 6、配置定时任务

echo "10 6 * * * root (/usr/sbin/ntpdate time.nist.gov && /sbin/hwclock -w) &> /dev/null" >> /etc/crontab

 7、配置主机名

 8、安装软件包  vim   openssh-clients   ntpdate  man

 9、修改文件句柄数  # unlimit -n 65535             修改/etc/security/limits.conf

 10、可以禁用ipv6    

cat >> /etc/modprobe.d/ipv6.conf <<EOF
alias net-pf-10 off
alias ipv6 off
EOF



你可能感兴趣的:(服务器,防火墙,null,软件包)