다중 프로세스 배포 환경에서 연속적인 로그 보존하기
문제
...
cp /hello-spring/spring.log /logs/spring-$(date +$s).log
nohup java -jar /hello-spring/target/hello-spring.jar 2> spring.log 1> dev/null &해결
참고
Last updated
...
cp /hello-spring/spring.log /logs/spring-$(date +$s).log
nohup java -jar /hello-spring/target/hello-spring.jar 2> spring.log 1> dev/null &Last updated