java 启动jar包 借助 cronolog来分隔日志
第一种:安装cronolog
Mac
brew install cronolog
Linux
- Download (the latest version )
wget http://cronolog.org/download/cronolog-1.6.2.tar.gz
- Unzip
tar zxvf cronolog-1.6.2.tar.gz
- Enter the directory where the cronolog installation file is located
cd cronolog-1.6.2
- Run and install
./configure
make
make install
- Check the directory where cronolog is installed (verify whether the installation is successful)
which cronolog
Under normal circumstances, it is displayed as: /usr/local/sbin/cronolog
参考:
- https://blog.katastros.com/a?ID=00850-24925358-9bb7-462e-bfce-628b2eea1566
- https://blog.csdn.net/wodiaonihai/article/details/122407459
启动 jar 包
nohup java -jar common-api.jar | /usr/local/cronolog/sbin/cronolog logs/console-%Y-%m-%d.out &
nohup java -jar bop-data-1.0-SNAPSHOT.jar | /usr/local/cronolog/sbin/cronolog /root/logs/%Y-%m-%d-bop-data.log &
第二种:使用apache自带日志分割模块rotatelogs,分割日志
安装 httpd,因为rotatelogs在apache中
yum install httpd
启动
service httpd start
查看
which rotatelogs
启动
nohup java -jar bop-data-1.0-SNAPSHOT.jar | /usr/sbin/rotatelogs /root/logs/%Y%m%d-bop-data.log 86400 480 &
结果
此博客主要用于记录相关知识点,大部分内容来自网络文章,特此感谢各位作者