Start/stop/restart ActiveGate
To start, stop or restart an ActiveGate you need to start, stop or restart the respective services for Linux or services for Windows that the ActiveGate is using—depending on the operating system on which the ActiveGate is installed. The actual services present also depend on the purpose for which the ActiveGate has been installed and on the functional modules that have been enabled.
Linux systemd (all supported Linux systems except Ubuntu 14.04)
You'll need root privileges to execute the commands to start, stop or restart ActiveGate services:
-
Start an ActiveGate service
systemctl start <service name>
For example:
1systemctl start dynatracegateway -
Stop an ActiveGate service
systemctl stop <service name>
For example:
1systemctl stop dynatracegateway -
Restart an ActiveGate service
systemctl restart <service name>
For example:
1systemctl restart dynatracegateway -
Query the current status of an ActiveGate service
systemctl status <service name>
For example:
1systemctl status dynatracegateway
Linux System V (Ubuntu 14.04)
You'll need root privileges to execute the commands to start, stop or restart ActiveGate services:
-
Start ActiveGate
service <service_name> start
For example:
1service dynatracegateway start -
Stop ActiveGate
service <service_name> stop
For example:
1service dynatracegateway stop -
Restart ActiveGate
service <service_name> restart
For example:
1service dynatracegateway restart -
Query the current status of an ActiveGate service
service <service_name> status
For example:
1service dynatracegateway status