-
Notifications
You must be signed in to change notification settings - Fork 0
Home
김윤수 edited this page Oct 26, 2024
·
1 revision
## $HOME/.config/systemd/user/server.service
[Unit]
Description=Camera Server system daemon
[Service]
Type=simple
ExecStart=/usr/bin/python3 $HOME/camera-server/server.py
Restart=always
[Install]
WantedBy=default.target
### -b : 현재 부팅에서의 로그만 확 / -r 마지막기록을 최상단으로 내림차순 / -u `systemctl list-units` 에서 정의된 유닛기준으로 메시지 필터링
journalctl --user -b -r -u server
## user 레벨에서, 현재 부팅 시점에서 마지막 기록기준 내림차순으로, server systemd unit의 로그를 확인하겠다는 뜻입니다.
## 실시간성을 원한다면 journalctl --user -f -u server로 확인할수있습니다