当前位置:网站首页>[Linux] release jar package, dynamically view logs, view program progress, and end programs
[Linux] release jar package, dynamically view logs, view program progress, and end programs
2022-07-19 01:05:00 【No bug is the biggest bug】
1.Jar Package release , It will generate automatically temp Log files
nohup java -jar xxx.jar >temp.txt &
2. Dynamic view log
tail -fn 1000 temp.txt
3. View the progress of the current program
ps -ef|grep xxx

4. End procedure
kill -9 5691
边栏推荐
- Hcia-r & s self use notes (7) (network layer) TTL and loop test, protocol number
- Application of optimistic lock and pessimistic lock in kubernetes
- 347. 前 K 个高频元素 ●●
- cli和vite通过代理实现跨域
- Vite3.0 发布
- VSCodeUserSetup-x64-1.65.0.exe
- Greenplum 6.x client connection
- 双指针汇总(未完待续)
- 【著色器實現Wave效果_Shader效果第一篇】
- How to solve the over correlation of graph neural network? A new perspective of IBM!
猜你喜欢
随机推荐
Redis命令
MySQL lock: comprehensive understanding
如何解决图神经网络过相关?一个IBM的新视角!
Mysql - contrôle de la concurrence Multi - versions (mvcc)
(十)STM32——Systick滴答定时器
支付宝国信证券开户安全吗?可以开吗?
Flowable workflow (flowable database table structure)
How to solve the over correlation of graph neural network? A new perspective of IBM!
The most beautiful yellow flower
[shader realizes wave effect _shader effect Chapter 1]
利用 Redis 的 sorted set 做每周热评的功能
常见链表题及其 Go 实现
Switch and router technology: Integrated Experiment of hot backup routing protocols HSRP, HSRP and spvstp
【单例模式】饿汉式、懒汉式、双重锁安全验证
Hcia-r & s self use notes (7) (network layer) TTL and loop test, protocol number
Joint search set
【Liunx】发布Jar包、日志动态查看、查看程序进程、结束程序
Jwt和Token
IDEA开发Servlet项目 如何右键创建servlet
Matlab画心









