Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 818 Bytes

SERVICE.md

File metadata and controls

35 lines (23 loc) · 818 Bytes

Service

Running TalentMAP as a SystemD service

It is possible to run the Node server application as a SystemD process, which is consistent with other prcoesses the application requires, such as Apache. This allows the process to be stopped and started with ease, as well as a straightforward statis command. There is a sample service definition in /service/talentmap.service which is based of this example.

Enable service

systemctl enable talentmap.service

Start service

systemctl start talentmap.service

Stop service

systemctl stop talentmap.service

Restart service

systemctl restart talentmap.service

Check status of service service

systemctl status talentmap.service