1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
| #!/usr/bin/env bash
clear
VER=7.X.X ESIP=`ip addr | grep "inet" | grep -v "127.0.0.1" | grep -v "inet6" | awk -F/ '{print $1}' | awk '{print $2}' `
echo -e "\033[32m ############################################################################# \033[0m" echo -e "\033[32m # Auto Install ELK. ## \033[0m" echo -e "\033[32m # Press Ctrl + C to cancel ## \033[0m" echo -e "\033[32m # Any key to continue ## \033[0m" echo -e "\033[32m # Softwae:elasticsearch-${VER}/logstash-${VER}/filebeat-${VER}/kibana-${VER} ## \033[0m" echo -e "\033[32m ############################################################################# \033[0m"
Read_Input() { echo -e "\033[32m Please Input You Kibana Pass Key IP: \033[0m" read -p "Please Input You HOST Pass Key IP:[192.168.10.55]" KibanaIP read -p "Please Input You HOST Pass Key IP: Password:" KibanaPass
echo -e "\033[32m Please Input You Filebeat Pass Key IP: \033[0m" read -p "Please Input You HOST Pass Key IP:[192.168.10.56]" FilebeatIP read -p "Please Input You HOST Pass Key IP: Password:" FilebeatPass }
Init_Yumsource() { if ! ping -c2 www.baidu.com &>/dev/null then echo "您无法上外网,不能配置yum源" exit fi echo "配置阿里云yum源" if [ ! -d /etc/yum.repos.d/backup ];then mkdir /etc/yum.repos.d/backup mv /etc/yum.repos.d/* /etc/yum.repos.d/backup 2>/dev/null curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo &>/dev/null curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo &>/dev/null fi }
Init_Hostname() { hostnamectl set-hostname elk-1 echo "$ESIP elk-1" >> /etc/hosts }
Init_SElinux() { echo "关闭防火墙" systemctl stop firewalld systemctl disable firewalld echo "关闭selinux" setenforce 0 sed -ri '/^SELINUX=/ s/enforcing/disabled/' /etc/selinux/config echo "解决sshd远程连接慢的问题" sed -ri '/^GSSAPIAu/ s/yes/no/' /etc/ssh/sshd_config sed -ri '/^#UseDNS/ {s/^#//;s/yes/no/}' /etc/ssh/sshd_config systemctl enable sshd crond &> /dev/null }
Create_UserLogFile() { groupadd elk useradd elk -g elk mkdir -pv /data/elk/{data,logs} chown -R elk:elk /data/ }
Unpackaged_Authorization() { yum -y install ntpdate tar xvf /root/InstallELKB-Shell/elasticsearch-${VER}-linux-x86_64.tar.gz -C /opt/ chown -R elk:elk /opt/elasticsearch-${VER}/ ntpdate -b ntp1.aliyun.com }
Set_System_Parameter() { cat >> /etc/security/limits.conf <<EOF * soft nproc 2048 * hard nproc 4096 * soft nofile 65536 * hard nofile 131072 EOF
echo "vm.max_map_count = 262144" >> /etc/sysctl.conf && sysctl -p cat >> /etc/profile <<EOF export HISTTIMEFORMAT="%Y-%m-%d %H:%M:%S " EOF source /etc/profile
cat >> /opt/elasticsearch-${VER}/config/elasticsearch.yml <<EOF cluster.name: elk node.name: node-1 bootstrap.memory_lock: false path.data: /data/elk/data path.logs: /data/elk/logs network.host: 0.0.0.0 http.port: 9200 discovery.seed_hosts: ["elk-1"] cluster.initial_master_nodes: ["node-1"] EOF runuser -l elk -c "/bin/bash /opt/elasticsearch-${VER}/bin/elasticsearch " &> /opt/elasticsearch.log & }
Test_Service() { esport=`ss -antp |grep :::9200 | awk -F::: '{print $2}'` if [ $esport -eq 9200 ];then echo -e "\033[32m Elasticsearch is OK... \033[0m " fi }
PublicKeyKibana() { if [ ! -f /usr/bin/expect ];then yum -y install expect fi sed -i 's/# *StrictHostKeyChecking *ask/StrictHostKeyChecking no/g' /etc/ssh/ssh_config systemctl restart sshd
cd /root/.ssh/ ssh-keygen -t rsa -N '' -f id_rsa -q if [ $? -eq 0 ];then /usr/bin/expect <<-EOF set timeout 10 spawn ssh-copy-id $KibanaIP expect { "yes/no" { send "yes\r"; exp_continue } "password:" { send "$KibanaPass\r"} } expect eof EOF fi
}
Install_Kibana() { echo $ESIP > /root/InstallELKB-Shell/ESIP.txt scp /root/InstallELKB-Shell/kibana-${VER}-linux-x86_64.tar.gz $KibanaIP: scp /root/InstallELKB-Shell/ESIP.txt $KibanaIP: scp /root/InstallELKB-Shell/InstallKibana.sh $KibanaIP: ssh root@$KibanaIP ' bash /root/InstallKibana.sh ' }
PublicFilebeat() { if [ ! -f /usr/bin/expect ];then yum -y install expect fi sed -i 's/# *StrictHostKeyChecking *ask/StrictHostKeyChecking no/g' /etc/ssh/ssh_config systemctl restart sshd cd /root/.ssh/ rm -rf /root/.ssh/* ssh-keygen -t rsa -N '' -f id_rsa -q if [ $? -eq 0 ];then /usr/bin/expect <<-EOF set timeout 10 spawn ssh-copy-id $FilebeatIP expect { "yes/no" { send "yes\r"; exp_continue } "password:" { send "$FilebeatPass\r"} } expect eof EOF fi }
Install_Filebeat() { scp /root/InstallELKB-Shell/filebeat-${VER}-x86_64.rpm $FilebeatIP: scp /root/InstallELKB-Shell/InstallFilebeat.sh $FilebeatIP: ssh root@$FilebeatIP 'bash /root/InstallFilebeat.sh' scp /root/InstallELKB-Shell/filebeat.yml $FilebeatIP:/etc/filebeat/ ssh root@$FilebeatIP 'systemctl restart filebeat && systemctl disable filebeat && rm -rf /root/InstallFilebeat.sh' }
Install_logstash() { tar xvf /root/InstallELKB-Shell/logstash-${VER}.tar.gz -C /opt/ cp /root/InstallELKB-Shell/nginx.yml /opt/logstash-${VER}/ /opt/logstash-${VER}/bin/logstash -f /opt/logstash-${VER}/nginx.yml &>/opt/logstash.log & }
ES-StartUp_SelfStart() { cat >> /etc/init.d/elasticsearch.sh <<EOF nohup runuser -l elk -c ""/bin/bash /opt/elasticsearch-${VER}/bin/elasticsearch" & nohup /opt/logstash-${VER}/bin/logstash -f /opt/nginx.yml & EOF echo "/etc/init.d/elasticsearch.sh" >> /etc/rc.d/rc.local chmod +x /etc/init.d/elasticsearch.sh chmod +x /etc/rc.d/rc.local }
main() {
Read_Input Init_Yumsource Init_Hostname Init_SElinux Create_UserLogFile Unpackaged_Authorization Set_System_Parameter Test_Service
PublicKeyKibana Install_Kibana
PublicFilebeat Install_Filebeat
ES-StartUp_SelfStart Kibana-StartUp_SelfStart
Install_logstash } main
|