2022-09-12 15:18:54 +05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-09-12 16:01:47 +05:00
|
|
|
#Start Zabbix
|
2022-09-13 15:23:48 +05:00
|
|
|
#/usr/sbin/zabbix_server --foreground -c /etc/zabbix/zabbix_server.conf &
|
2022-09-12 16:01:47 +05:00
|
|
|
/usr/sbin/zabbix_server -c /etc/zabbix/zabbix_server.conf
|
2022-09-12 15:18:54 +05:00
|
|
|
|
2022-09-13 14:40:28 +05:00
|
|
|
#Start Php-fpm
|
2022-09-13 15:23:48 +05:00
|
|
|
/usr/sbin/php-fpm7.4 --nodaemonize --fpm-config /etc/php/7.4/fpm/php-fpm.conf &
|
2022-09-13 14:40:28 +05:00
|
|
|
|
2022-09-12 15:18:54 +05:00
|
|
|
#Start Nginx
|
2022-09-13 14:40:28 +05:00
|
|
|
/usr/sbin/nginx -g 'daemon off; master_process on;' &
|
2022-09-12 15:18:54 +05:00
|
|
|
|
2022-09-13 14:40:28 +05:00
|
|
|
# Wait for any process to exit
|
|
|
|
wait -n
|
|
|
|
# Exit with status of process that exited first
|
|
|
|
exit $?
|