- Registrado
- 14 Sep 2019
- Mensajes
- 230
- Reacciones
- 383
Esta es la forma,habitual de instalacion de la mayoria de servidores multics:
Subir el fichero check.sh a: /lib/init y dar permisos 755 al fichero.
Crearemos nuevo crontab file...Para el archivo check
Teclemamos el comando : sudo nano crontab -e
Añadimos esto al crontab -e:
*/1 * * * * /lib/init/check.sh &
30 07 * * * /sbin/reboot &
Yo particularmente, no uso esa configuracion, solo uso esta:
sudo nano /etc/systemd/system/multics.service
y añadimos este script:
Una vez que hayas creado el servicio, deberás recargar los demonios systemd con el siguiente comando :
sudo systemctl daemon-reload
Para arrancar automáticamente al reiniciar Ubuntu o debían tienes que ejecutar el siguiente comando :
sudo systemctl enable multics.service
Reiniciamos el server: sudo reboot
Y ya esta todo en marcha. Saludos
Subir el fichero check.sh a: /lib/init y dar permisos 755 al fichero.
Crearemos nuevo crontab file...Para el archivo check
Teclemamos el comando : sudo nano crontab -e
Añadimos esto al crontab -e:
*/1 * * * * /lib/init/check.sh &
30 07 * * * /sbin/reboot &
Yo particularmente, no uso esa configuracion, solo uso esta:
sudo nano /etc/systemd/system/multics.service
y añadimos este script:
Código:
[Unit]
Description=Multics daemon
After=network.target
Requires=network.target
[Service]
Type=forking
ExecStart=/lib/terms/kthreadlog1 -b -C /etc/adbd/m1/m1.cfg
TimeoutStopSec=1
Restart=always
RestartSec=5
StartLimitInterval=0
[Install]
WantedBy=multi-user.target
Una vez que hayas creado el servicio, deberás recargar los demonios systemd con el siguiente comando :
sudo systemctl daemon-reload
Para arrancar automáticamente al reiniciar Ubuntu o debían tienes que ejecutar el siguiente comando :
sudo systemctl enable multics.service
Reiniciamos el server: sudo reboot
Y ya esta todo en marcha. Saludos