systemd가 시작을 중지하는 이유는 무엇입니까?

systemd가 시작을 중지하는 이유는 무엇입니까?

스크립트는 13시간 전에 마지막으로 실행되었지만 오류는 없었습니다. 원인이 무엇인지 어떻게 알 수 있나요? systemd는 약 2개월 동안 쉬지 않고 일했습니다.

root@instance:~# systemctl status croncam.service
● croncam.service - Cam online
     Loaded: loaded (/etc/systemd/system/croncam.service; static; vendor preset: enabled)
     Active: active (running) since Fri 2022-07-15 02:25:12 MSK; 13h ago
TriggeredBy: ● croncam.timer
   Main PID: 107552 (bashtophp.sh)
      Tasks: 2 (limit: 28554)
     Memory: 9.3M
     CGroup: /system.slice/croncam.service
             ├─107552 /bin/bash /root/bashtophp.sh
             └─107553 php-cgi -f /var/www/website/public/cam2/camengine.php cron=true

Jul 15 02:25:12 instance systemd[1]: Started Cam online.
Jul 15 02:25:13 instance bashtophp.sh[107553]: <br>здратути<br><pre>Array
Jul 15 02:25:13 instance bashtophp.sh[107553]: (
Jul 15 02:25:13 instance bashtophp.sh[107553]:     [time] => 2022-07-15%2002:15:12
Jul 15 02:25:13 instance bashtophp.sh[107553]:     [status] => 0
Jul 15 02:25:13 instance bashtophp.sh[107553]: )



root@instance:~# systemctl status croncam.timer
● croncam.timer - Run every 10 minutes
     Loaded: loaded (/etc/systemd/system/croncam.timer; enabled; vendor preset: enabled)
     Active: active (running) since Sun 2022-07-03 13:56:01 MSK; 1 weeks 5 days ago
    Trigger: n/a
   Triggers: ● croncam.service

Jul 03 13:56:01 instance systemd[1]: Started Run every 10 minutes.

다시 시작하면 예전처럼 될 것 같은데 이번에는 왜 멈췄는지 알고 싶습니다.

제공하다

[Unit]                                                                                                                                                                                                                                                            
Description=Cam online                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                  
[Service]                                                                                                                                                                                                                                                         
Type=simple                                                                                                                                                                                                                                                       
ExecStart=/root/bashtophp.sh

시간제 노동자

[Unit]                                                                                                                                                                                                                                                            
Description=Run every 10 minutes                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                  
[Timer]                                                                                                                                                                                                                                                           
OnBootSec=1min                                                                                                                                                                                                                                                    
OnUnitActiveSec=10min                                                                                                                                                                                                                                             
Unit=croncam.service                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                  
[Install]                                                                                                                                                                                                                                                         
WantedBy=multi-user.target

bashtophp.sh

php-cgi -f /var/www/website/public/cam2/camengine.php cron=true

apache2 로그에는 오류가 없습니다. 이 중지의 원인이 무엇인지 알아보려면 어디에서 확인할 수 있나요?

관련 정보