Linux users, click here.
Windows 7/10/Server 2016 users: Click Start, type services.msc and press ENTER.
Windows 8/Server 2012 users: Click the Windows key + R, type services.msc and press ENTER.
Figure 1-1
Figure 1-2
Different Linux distributions use various commands to start and restart services. Some distributions provide GUI tools for this purpose (for example, bum
).
Most common commands for service management among Linux distributions are:
systemctl
service
/etc/init.d/...
To restart the ESMC Server on a Linux system, stop the service, then restart using commands such as the ones shown below:
systemctl start eraserver
systemctl stop eraserver
or
service eraserver start
service eraserver stop
or
/etc/init.d/eraserver start
/etc/init.d/eraserver stop
These examples can be modified to restart / start / stop
other ESMC services such as eraagent, eramdmcore
or eraproxy
.
To view a list of running programs, run top
or htop
(exit the program by typing q
). If you want to find out which ESMC components are running, run htop
and then press the F3 key to search for the keyword era
.
Root priviledges are required to run the command successfully. Use sudo
or login as root. For example:
sudo systemctl start eraserver