#!/bin/bash
##############################################################
# File Name: install_nacos.sh
# Version: V1.0
# Author: junwang
# Organization:
# Created Time : 2021-04-14 11:12:54
# Description:
##############################################################
wget http://47.105.153.221:33389/data/User/admin/home/caeri/nacos/nacos-server-2.1.1.tar.gz
tar -xf nacos-server-2.1.1.tar.gz -C /web
sed -i 's#server.tomcat.accesslog.enabled=true#server.tomcat.accesslog.enabled=false#g' /web/nacos/conf/application.properties
./startup.sh -m standalone
port=`netstat -lntup|grep 8848|wc -l`
if [ $port -eq 1 ]
then
echo '########################### install nacos success #######################################'
echo '....................................................................................................
....................................................................................................
....................................................................................................
...........+=+......==+......+==-........--++--.........--++++-......+=******-......................
...........@@@*-....@@*.....#@@@@+.....+==+++===+-....-=*=====**+..-#@@######-......................
...........@@@@@=. .@@=....*@@+#@@-..-==+......+==-.-=*=-.....-=*=.=@@+..... .......................
...........@@*+@@#+.@@=...=@@= .@@#..+=+..........-===+........-**+-#@@@@@@#=-......................
...........@@* -*@@#@@=..+@@*...-@@*.-==-.......+---===-.......+**-..-+====#@@-.....................
...........@@*...-#@@@* -@@#.....+@@=.+==+----+===-..-=*=+---+=**+..++----+#@@-.....................
...........#@*.....+#@+.#@#-......*@@+..-+=====+-......-+======+...-@@@@@@@@*+.+*-..................
....................................................................------..........................
....................................................................................................
....................................................................................................
....................................................................................................
....................................................................................................'
fi
标签:tar,gz,.........................................................................
From: https://www.cnblogs.com/ejjw/p/17929143.html