• linux 常规部署教程


    1.查看端口
    yum -y install net-tools
    netstat -ant |grep 8898

    2.查看文件前100行

    tail -n 100 lmtc-member-20220614.txt
    ps -ef|grep lmtc-member.jar

    3.jar 手动 启动 命令

    nohup java -jar /home/service/lmtc-cloudpay/lmtc-member.jar >/home/service/lmtc-cloudpay/lmtc-member.txt 2>&1 &

    4.jar  启动脚本

    #这里可替换为你自己的执行程序,其他代码无需更改
    APP_NAME=/home/service/lmtc-cloudpay/lmtc-member.jar
    MEMORY_CONFIGURATION='-Xms128M -Xmx256M -XX:PermSize=64M -XX:MaxPermSize=128M';
    #使用说明,用来提示输入参数
    #Usage(){
    # echo "Usage: sh 执行脚本.sh [start|stop|restart|status]"
    # exit 1
    #}
    #nohup java -jar -Xms128M -Xmx256M -XX:PermSize=64M -XX:MaxPermSize=128M /home/service/lmtc-cloudpay/lmtc-member.jar >/home/service/lmtc-cloudpay/lmtc-member.txt 2>&1 &
    #检查程序是否在运行
    is_exist(){
    pid=`ps -ef|grep $APP_NAME|grep -v grep|awk '{print $2}' `
    #如果不存在返回1,存在返回0
    if [ -z "${pid}" ]; then
    return 1
    else
    return 0
    fi
    }
    #启动方法
    start(){
    is_exist
    if [ $? -eq "0" ]; then
    echo "${APP_NAME} is already running. pid=${pid} ."
    else
    nohup java -jar $MEMORY_CONFIGURATION $APP_NAME >> catalina.out 2>&1 &
    echo "...start OK!"
    fi
    }
    #停止方法
    stop(){
    is_exist
    if [ $? -eq "0" ]; then
    kill -9 $pid
    echo "...stop OK!"
    else
    echo "${APP_NAME} is not running"
    fi
    }
    #输出运行状态
    status(){
    is_exist
    if [ $? -eq "0" ]; then
    echo "${APP_NAME} is running. Pid is ${pid}"
    echo "${MEMORY_CONFIGURATION} run configuration setup "
    else
    echo "${APP_NAME} is NOT running."
    fi
    }
    #重启
    restart(){
    stop
    start
    }
    #根据输入参数,选择执行对应方法,不输入则执行使用说明
    case "$1" in
    "start")
    start
    ;;
    "stop")
    stop
    ;;
    "status")
    status
    ;;
    "restart")
    restart
    ;;
    *)
    usage
    ;;
    esac

  • 相关阅读:
    手写Hystrix基本原理
    U3D VideoPlayer播放视频和坑点
    【月度反思】202211
    Vue2.0开发之——Vue基础用法-vue-cli(30)
    Fiddler模拟弱网环境测试
    SQL创建数据库
    2022-11-16 几种三角函数的图形
    Ubuntu 放弃了战斗向微软投降
    c语言数据结构 二叉树(三)
    货币识别易语言代码
  • 原文地址:https://blog.csdn.net/liuyaokai1990/article/details/125564619