linux 运行jar 包
运行Jenkins
#!/bin/bash
nohup java -Dhudson.model.DownloadService.noSignatureCheck=true -jar jenkins.war --httpPort=8088 &
运行nexus
#!/bin/sh
#chkconfig: 2345 80 90
#description:开机自动启动的脚本程序
# 开启redis服务 端口为6379
/usr/local/nexus-3.13.0-01/bin/nexus start
运行springboot jar
#!/bin/bash
nohup java -Dfile.encoding=UTF-8 -jar litemall-all-0.1.0-exec.jar --server.port=8077 >/dev/null 2>&1 &