当前位置:首页 > linux > 正文内容

启动脚本将pid输出到文本中

root3年前 (2022-01-21)linux1114

启动脚本如下

nohup java -jar testapi.jar --server.port=8080 & echo $! > pidfile.txt

这里就会生成一个pidfile.txt 文件里面只有pid

如果要关闭该进程

停止脚本如下

kill -9 $(cat pidfile.txt)


注意文件的路径

扫描二维码推送至手机访问。

版权声明:本文由一叶知秋发布,如需转载请注明出处。

本文链接:https://zhiqiu.top/?id=214

标签: java
分享给朋友:

相关文章

修改系统server文件需要加载一下配置

vim /usr/lib/systemd/system/*.service修改了server的配置需要执行一下systemctl daemon-reload让系统重新加载以下配置,尤其是server中的配置地址更换了分区...

Cannot uninstall 'ipaddress'. It is a distutils installed project and thus

强制升级:sudo pip install --ignore-installed +模块名...

How to remotely monitor hosts over Telnet and SSH [Tutorial]

python ssh登录服务器In this tutorial, you will learn how to carry out basic configurations on a server with Telnet and SSH co...

linux 安全策略关闭

#防火墙关闭systemctl stop firewalld.service#永久关闭防火墙systemctl disable firewalld.service#临时关闭selinuxsetenforce 0#永久关闭sed -i &qu...

linux 开机自启

方式一:编写脚本,vi  /etc/rc.local#!/bin/sh -e # # rc.local # # This script is execu...

k8s 给sc 开启或者关闭 默认设置

k8s 给sc 开启或者关闭 默认设置

https://www.freesion.com/article/3909514696/ 关闭默认设置kubectl patch storageclass managed-nfs-storage-67 ...