摘要:
自己安装的系统,根据自己需求做一些统一的初始化设置 #! /bin/sh # 更新系统 yum -y update # 安装基础软件 yum -y install net-tools lrzsz wget vim # 关闭防火墙 systemctl stop firewalld systemctl 阅读全文
摘要:
SprintBoot项目服务启停脚本 vim springboot.sh #!/bin/bash export BUILD_ID=DONTKILLME APP_NAME=$2 #APP_NAME=admin-1.0-SNAPSHOT function stop(){ PID=`ps -ef|grep 阅读全文