Пример юнита для systemd
Материал из BiTel WiKi
(Различия между версиями)
Zavndw (Обсуждение | вклад) (добавил планировщик) |
Zavndw (Обсуждение | вклад) м |
||
| Строка 45: | Строка 45: | ||
ExecStop=/opt/bgbilling/BGBillingServer/scheduler.sh -estop | ExecStop=/opt/bgbilling/BGBillingServer/scheduler.sh -estop | ||
| + | [Install] | ||
| + | WantedBy=multi-user.target</source> | ||
| + | |||
| + | BGData_loader | ||
| + | <source lang="bash"> | ||
| + | [Unit] | ||
| + | Description=BGData_loader Daemon | ||
| + | After=network.target activemq.service | ||
| + | Requires=activemq.service | ||
| + | |||
| + | [Service] | ||
| + | Type=forking | ||
| + | ExecStart=/opt/BGBillingServer/data_loader.sh -estart | ||
| + | ExecStop=/opt/BGBillingServer/data_loader.sh -estop | ||
| + | |||
[Install] | [Install] | ||
WantedBy=multi-user.target</source> | WantedBy=multi-user.target</source> | ||
Версия 05:33, 23 августа 2017
Данные юниты используются в образах виртуальных машин.
Activemq
[Unit] Description=Apache ActiveMQ Daemon After=network.target Requires= [Service] Type=forking ExecStart=/opt/activemq/apache-activemq-5.9.1/bin/linux-x86-64/activemq start ExecStop=/opt/activemq/apache-activemq-5.9.1/bin/linux-x86-64/activemq stop [Install] WantedBy=multi-user.target
BGBillingServer
[Unit] Description=BGBilling Server Daemon After=network.target mysql.service activemq.service Requires=mysql.service activemq.service [Service] Type=forking ExecStartPre=/opt/bgbilling/BGBillingServer/script/bgcommonrc checkmysql ExecStart=/opt/bgbilling/BGBillingServer/server_start.sh ExecStop=/opt/bgbilling/BGBillingServer/server_stop.sh [Install] WantedBy=multi-user.target
BGScheduler
[Unit] Description=BGScheduler Server Daemon After=network.target,mysql.service,activemq.service Requires=mysql.service,activemq.service [Service] Type=forking ExecStartPre=/opt/bgbilling/BGBillingServer/script/bgcommonrc checkmysql ExecStart=/opt/bgbilling/BGBillingServer/scheduler.sh -estart ExecStop=/opt/bgbilling/BGBillingServer/scheduler.sh -estop [Install] WantedBy=multi-user.target
BGData_loader
[Unit] Description=BGData_loader Daemon After=network.target activemq.service Requires=activemq.service [Service] Type=forking ExecStart=/opt/BGBillingServer/data_loader.sh -estart ExecStop=/opt/BGBillingServer/data_loader.sh -estop [Install] WantedBy=multi-user.target
BGCRM
[Unit] Description=BGCRM Daemon After=network.target Requires= [Service] Type=forking ExecStart=/opt/BGCRM/crm.sh start ExecStop=/opt/BGCRM/crm.sh stop [Install] WantedBy=multi-user.target
