1、设置时区
rm -f /etc/localtime cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
2、配置内网IP (如果是外网IP,linux要修改远程端口)
3、配置自己的yum源
yum install wget rm -f /etc/yum.repos.d/CentOS-Base.repo wget -P /etc/yum.repos.d/ http://mirrors.163.com/.help/CentOS6-Base-163.repo wget -P /etc/yum.repos.d/ http://mirrors.aliyun.com/repo/epel-6.repo
或者
curl http://mirrors.163.com/.help/CentOS6-Base-163.repo >/etc/yum.repos.d/comratings.repo curl http://mirrors.aliyun.com/repo/epel-6.repo > /etc/yum.repos.d/epel-6.repo
如何需要最新版本的rpm包,请安装下面的仓库
rpm -Uvh http://repo.webtatic.com/yum/el6/latest.rpm
4、关闭SELinux
sed -i 's#SELINUX=enforcing#SELINUX=disabled#g' /etc/selinux/config setenforce 0
5、添加zabbix监控
6、配置防火墙
service iptables stop iptables -L service iptables save
7、安装软件包
yum install -y vim openssh-clients ntpdate man lrzsz
8、配置定时任务
echo "10 6 * * * root (/usr/sbin/ntpdate time1.aliyun.com && /sbin/hwclock -w) &> /dev/null" >> /etc/crontab
9、配置主机名
10、修改文件句柄数
#临时修改,立刻生效 ulimit -n 655350 #永久修改 echo "* soft nofile 655360" >> /etc/security/limits.conf echo "* hard nofile 655360" >> /etc/security/limits.conf
11、可以禁用ipv6
cat >> /etc/modprobe.d/ipv6.conf <原文链接:https://www.f2er.com/centos/375211.html