새로 systemd 당신은 서비스를 만들 수 있습니다.
예를 들어 에 파일 또는 심볼릭 링크 를 만들어야합니다 /etc/systemd/system/
. myphpdaemon.service 및 다음과 같은 컨텐츠를 배치하면 myphpdaemon이 서비스 이름이됩니다.
[Unit]
Description=My PHP Daemon Service
#May your script needs MySQL or other services to run, eg. MySQL Memcached
Requires=mysqld.service memcached.service
After=mysqld.service memcached.service
[Service]
User=root
Type=simple
TimeoutSec=0
PIDFile=/var/run/myphpdaemon.pid
ExecStart=/usr/bin/php -f /srv/www/myphpdaemon.php arg1 arg2> /dev/null 2>/dev/null
#ExecStop=/bin/kill -HUP $MAINPID #It's the default you can change whats happens on stop command
#ExecReload=/bin/kill -HUP $MAINPID
KillMode=process
Restart=on-failure
RestartSec=42s
StandardOutput=null #If you don't want to make toms of logs you can set it null if you sent a file or some other options it will send all php output to this one.
StandardError=/var/log/myphpdaemon.log
[Install]
WantedBy=default.target
명령을 사용하여 서비스를 시작, 상태 확인, 다시 시작 및 중지 할 수 있습니다.
systemctl <start|status|restart|stop|enable> myphpdaemon
PHP 스크립트는 계속 실행하려면 일종의 "루프"가 있어야합니다.
<?php
gc_enable();//
while (!connection_aborted() || PHP_SAPI == "cli") {
//Code Logic
//sleep and usleep could be useful
if (PHP_SAPI == "cli") {
if (rand(5, 100) % 5 == 0) {
gc_collect_cycles(); //Forces collection of any existing garbage cycles
}
}
}
작업 예 :
[Unit]
Description=PHP APP Sync Service
Requires=mysqld.service memcached.service
After=mysqld.service memcached.service
[Service]
User=root
Type=simple
TimeoutSec=0
PIDFile=/var/run/php_app_sync.pid
ExecStart=/bin/sh -c '/usr/bin/php -f /var/www/app/private/server/cron/app_sync.php 2>&1 > /var/log/app_sync.log'
KillMode=mixed
Restart=on-failure
RestartSec=42s
[Install]
WantedBy=default.target
PHP 루틴을 한 번에 한 번 실행해야하는 경우 (예 : 파기) 쉘 또는 bash 스크립트를 사용하여 PHP 대신 시스템 서비스 파일로 직접 호출해야합니다.
#!/usr/bin/env bash
script_path="/app/services/"
while [ : ]
do
# clear
php -f "$script_path"${1}".php" fixedparameter ${2} > /dev/null 2>/dev/null
sleep 1
done
당신이 변경해야이 옵션을 선택한 경우 KillMode을 에 mixed
프로세스를 bash는 (주)와 PHP (아이가) 죽을.
ExecStart=/app/phpservice/runner.sh phpfile parameter > /dev/null 2>/dev/null
KillMode=process
This method also is effective if you're facing a memory leak.
참고 : "myphpdaemon.service"를 변경할 때마다`systemctl daemon-reload '를 실행해야하지만, 그렇지 않으면 걱정할 필요가있을 때 경고가 표시됩니다.