首页 > 其他分享 >nacos安装

nacos安装

时间:2023-12-26 19:35:23浏览次数:34  
标签:tar gz .........................................................................

#!/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

相关文章

  • nginx 安装
    #!/bin/bash###############################################################FileName:install_nginx.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1317:12:54#Description:###############################################......
  • rabbitmq安装
    #!/bin/bash###############################################################FileName:install_rabbit.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1411:12:54#Description:##############################################......
  • redis安装
    #!/bin/bash###############################################################FileName:install_redis.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1417:12:54#Description:###############################################......
  • JDK1.8安装
    #!/bin/bash###############################################################FileName:install_redis.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1517:12:54#Description:###############################################......
  • kafka安装
    单节点kafka安装#!/bin/bash###############################################################FileName:install_kafka.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1417:12:54#Description:###################################......
  • emqx安装
    #!/bin/bash###############################################################FileName:install_emqx.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1517:12:54#Description:################################################......
  • cockroach安装
    `#!/bin/bash##############################################################FileName:install_cockroach.shVersion:V1.0Author:junwangOrganization:CreatedTime:2021-04-1317:12:54Description:#######################################################......
  • elasticsearch安装
    #!/bin/bash###############################################################FileName:install_redis.sh#Version:V1.0#Author:junwang#Organization:#CreatedTime:2021-04-1517:12:54#Description:###############################################......
  • 【VMware】虚拟机安装centos7安装教程(秒看秒懂)
    一、Centos7背景简介          CentOS7是一个企业级的Linux发行版本,它源于RedHat免费公开的源代码进行再发行。内核更新至3.10.0、支持Linux容器、支持OpenVMwareTools及3D图像即装即用、支持OpenJDK-7作为缺省JDK、支持内核空间内的iSCSI及FCoE、支持PTPv2等功能......
  • 【已解决】WordPress安装插件提示:需要访问您网页服务器的权限
    前一段时间把workpress做了迁移后,发现安装插件的时候会给出如下提示: 经过百度查询找到解决方法,修改 /var/www/html/wp-config.php文件,增加字段:define('FS_METHOD','direct');如下图 之后重启服务:systemctlrestarthttpd,即可正常安装插件了,如下 ......