[if !supportLists]1、 [endif]什么是集群?
简单地说,集群就是一堆机器做同一间事,例如:
www.jd.com提供买东西服务这就是一件事,可能事几千台服务器,在背后运行转支撑这个网站。
www.baidu.com 看着就是一个搜索框,背后可能事上万台服务器。
[if !supportLists]2、 [endif]为什么企业要用集群?
a.7*24服务,需要多台机器同时工作,互为实时备份。
b.高并发访问,需要多台服务器同时提供服务。
[if !supportLists]3、 [endif]集群特点
[if !supportLists]a. [endif]数据量大、用户多
[if !supportLists]b. [endif]7*24小时持续服务
[if !supportLists]c. [endif]高并发
[if !supportLists]d. [endif]用户分布广泛,网络情况复杂。
4、形象
mkdir -p /server/tools
mkdir -p /server/scripts
cat >/etc/hosts<
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
[if !vml]
[endif]172.16.1.5 lb01
[if !vml]
[endif]172.16.1.6 lb02
[if !vml]
[endif]172.16.1.7 web01
[if !vml]
[endif]172.16.1.8 web02
[if !vml]
[endif]172.16.1.9 web03
[if !vml]
[endif]172.16.1.31 nfs01
[if !vml]
[endif]172.16.1.41 backup
[if !vml]
[endif]172.16.1.51 db01[if !vml]
[endif]db01.etiantian.org
[if !vml]
[endif]172.16.1.61 m01
EOF
第一个:就近使用yum源地址,安装软件更快。
curl -s -o /etc/yum.repos.d/CentOS-Base.repo[if !vml]
[endif]http://mirrors.aliyun.com/repo/Centos-7.repo
第二个:安装RHEL/CentOS官方源不提供的软件包
curl -s -o /etc/yum.repos.d/epel.repo[if !vml]
[endif]http://mirrors.aliyun.com/repo/epel-7.repo
setenforce 0
4
、安全优化
# 1
、关闭selinux
sed -i 's#SELINUX=.*#SELINUX=disabled#g' /etc/selinux/config
sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config
grep SELINUX=disabled /etc/selinux/config
setenforce 0
getenforce
systemctl stop firewalld 禁止开机启动防火墙
systemctl disable firewalld
# 提权oldboy可以利用sudo
useradd oldboy
echo 123456|passwd --stdin oldboy
\cp /etc/sudoers /etc/sudoers.ori
echo "oldboy ALL=(ALL) NOPASSWD: ALL " >>/etc/sudoers
tail -1 /etc/sudoers
visudo -c
# 设置系统中文UTF8字符集
[root@oldboyedu ~]# cat /etc/locale.conf
LANG="en_US.UTF-8"
修改命令如下:
cp /etc/locale.conf /etc/locale.conf.ori
echo 'LANG="zh_CN.UTF-8"' >/etc/locale.conf
source /etc/locale.conf
echo $LANG
cp /etc/locale.conf /etc/locale.conf.ori 防止中文乱码
localectl set-locale LANG="zh_CN.UTF-8"
cat /etc/locale.conf
设置系统时间同步
yum install ntpdate -y
/usr/sbin/ntpdate[if !vml]
[endif]ntp3.aliyun.com
8.基础优化操作项:提升命令行操作安全性(可选优化)
#
提升命令行安全(可选配置)
echo 'export TMOUT=300' >>/etc/profile
echo 'export HISTSIZE=5' >>/etc/profile
echo 'export HISTFILESIZE=5' >>/etc/profile
tail -3 /etc/profile
. /etc/profile
9.基础优化操作项:加大文件描述符
#
实例演示:加大文件描述
echo '* - nofile 65535 ' >>/etc/security/limits.conf
tail -1 /etc/security/limits.conf
ulimit -SHn 65535
ulimit -n #<==
命令方式查看配置结果
[root@oldboyedu ~]# ulimit -SHn 65535
[root@oldboyedu ~]# 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
#以下参数是对iptables防火墙的优化,防火墙不开会提示,可以忽略不理。
net.nf_conntrack_max = 25000000
net.netfilter.nf_conntrack_max = 25000000
net.netfilter.nf_conntrack_tcp_timeout_established
= 180
net.netfilter.nf_conntrack_tcp_timeout_time_wait
= 120
net.netfilter.nf_conntrack_tcp_timeout_close_wait
= 60
net.netfilter.nf_conntrack_tcp_timeout_fin_wait
= 120
net.core.wmem_default = 8388608
net.core.rmem_default = 8388608
net.core.wmem_max = 16777216
net.core.rmem_max = 16777216
EOF
sysctl -p
老男孩老师2019/4/12 12:03:01
基础优化操作项:安装系统常用软件
CentOS6
和CentOS7都要安装的企业运维常用基础工具包
yum install tree nmap dos2unix lrzsz nc lsof wget tcpdump htop iftop iotop sysstat nethogs -y
CentOS7
要安装的企业运维常用基础工具包
yum install psmisc net-tools bash-completion vim-enhanced -y
13.扩展优化操作项-修改yum.conf文件配置信息保留yum安装的软件包将yum.conf中的keepcache=0改为keepcache=1,为日后一键安装网站集群留好rpm及依赖工具包。
=�E����
14. 锁定关键系统文件如/etc/passwd、/etc/shadow、/etc/group、/etc/gshadow、/etc/inittab,处理以上内容后把chattr、lsattr改名为oldboy,转移走,这样就安全多了。
15.
清空/etc/issue、/etc/[if !vml]
[endif]issue.net,去除系统及内核版本登录前的屏幕显示。
20.精简开机自启动服务
systemctl list-unit-files |grep enable|egrep -v "sshd.service|crond.service|sysstat|rsyslog|^NetworkManager.service|irqbalance.service"|awk '{print "systemctl disable",$1}'|bash
systemctl list-unit-files |grep enable
保留服务:
sshd|crond|sysstat|rsyslog|NetworkManager|irqbalance
最小化原则:
1安装软件包最小化
2权限最小化visudo
3目录文件权限最小化
4自启动服务最小化
5服务运行用户最小化
独行快,众行远。