Windows: Run the command in a elevated CMD session.
https://www.windows-commandline.com/open-elevated-command-prompt/Linux: Setup an additional Systemd script which defines an After and Requires option.
Based on examples from article if a systemd service is defined and named admsrvc.service then a systemd service for fathom in 12.0 may also be created and establish a requirement and statement of ordering using the below example:
#
[Unit]
Description=OpenEdge Management for OE 12.0
After=network.target admsrvc.service
Requires=admsrvc.service
[Service]
Environment=DLC=/usr/dlc
ExecStart=/usr/dlc/bin/fathom -start
ExecStop=/usr/dlc/bin/fathom -stop
Type=forking
[Install]
WantedBy = default.target
Enable service to start when OS restarts
systemctl enable <service name>