标签:linux
公司经常会新买服务器来实现相应的业务,对于新买的服务器,首先应该做哪些操作呢?
通过相应的客户端工具(如:xshell)登录服务器,修改root密码
修改hostname主机名
关闭selinux
设置防火墙:
iptables -F
chkconfig iptables on
iptables -A INPUT -p tcp --dport 22 -j ACCEPT (非常重要,注意顺序)
iptables -P INPUT DROP (设置INPUT链默认为拒绝) /etc/init.d/iptables status
分区,格式化,挂载
优化内核参数
本文出自 “见” 博客,请务必保留此出处http://732233048.blog.51cto.com/9323668/1636224
标签:linux
原文地址:http://732233048.blog.51cto.com/9323668/1636224