All servers run Domino 9.0.1 and we use Daniel Nashed's start-stop script
https://www.nashcom.de/nshweb/pages/startscript.htm
2 of them is running SLES11 SP4 and here simple scripts running with notes user works:
Code: Select all
#!/bin/sh
/etc/init.d/rc_domino stop
Code: Select all
#!/bin/sh
/etc/init.d/rc_domino start
Alternatively Domino can be started/stopped by "systemctl start/stop domino.service".
But no matter what combination in a script i try, Veeam fails executing the script.
Running the script as root i have tried:
Script finished execution with unexpected exit code: 126
Code: Select all
#!/bin/sh
systemctl stop domino.service
Code: Select all
#!/bin/sh
exec systemctl stop domino.service
So the question really just boils down to if anyone have some experience in starting/stopping services using a script in combination with Veeam B&R?