Source:How to Start and Stop SEP sesam: Difference between revisions
(Fixing transclusion.) |
(Marked Jaglion version) |
||
Line 4: | Line 4: | ||
<!--T:2--> | <!--T:2--> | ||
{{Navigation_latest|release=[[ | {{Navigation_latest|release=[[SEP_sesam_Release_Versions|4.4.3 ''Beefalo''/5.0.0 ''Jaglion'']]|link=[[Special:MyLanguage/SEP_sesam_Documentation#previous|documentation archive]]}}<br /></noinclude> | ||
===Overview=== <!--T:3--></translate> | ===Overview=== <!--T:3--></translate> |
Revision as of 11:53, 19 January 2022
After the installation, the SEP sesam software will start automatically. You can use the command sm_main status
to see if all processes are running. You can start and stop the SEP sesam services manually by using the commands below.
For details on SEP sesam commands, see SEP sesam CLI.
Start/stop SEP sesam on Windows
One central SEP sesam service is running on Windows systems. It is called SEP Sesam and is running under the system account of the Windows operating system. This service starts all other required services.
- Start
- using the Windows services control panel
- in Windows Task Manager using the Services tab
- on CMD or Powershell:
net start sm_main
- on CMD or Powershell:
<SESAM_BIN>\bin\sesam\sm_main start
- on CMD or Powershell:
<SESAM_BIN>\bin\sesam\sm_startup -f
- Stop
- using the Windows services control panel
- in Windows Task Manager using the Services tab
- on CMD or Powershell:
net stop sm_main
- on CMD or Powershell:
<SESAM_BIN>\bin\sesam\sm_main stop
- on CMD or Powershell:
<SESAM_BIN>\bin\sesam\sm_shutdown -f
Start/stop SEP sesam on Linux
One central SEP sesam service is running on Linux systems that controls all other SEP sesam services. SEP sesam services are always running under the Linux root user account. Depending on the Linux distribution, the following commands can be used:
- Start
- in the Linux shell:
/etc/init.d/sesam start
(distrib. with INIT start system) - in the Linux shell:
systemctl start sepsesam.service
(distrib. with SYSTEMD start system) - in the Linux shell:
<SESAM_BIN>/bin/sesam/sm_main start
- in the Linux shell:
<SESAM_BIN>/bin/sesam/sm_startup
- Stop
- in the Linux shell:
/etc/init.d/sesam stop
(distrib. with INIT start system) - in the Linux shell:
systemctl stop sepsesam.service
(distrib. with SYSTEMD start system) - in the Linux shell:
<SESAM_BIN>/bin/sesam/sm_main stop
- in the Linux shell:
<SESAM_BIN>/bin/sesam/sm_shutdown