Service deployment and monitoring
Deployment services and make run in ubuntu
Today we did service deployment for dot net with ubuntu server.
Steps:
1) Download the rar file from mail
2) Extract the file
3) Change the directory inside the folder including .dll files
4) Move the folder to /srv directorymv foldername /srv/
Now go to the services directory:
cd /etc/systemd/system
ls
#you can see services files here
#enable the service
sudo systemctl enable *-servicename.service
#start the service
sudo systemctl start *-servicename.service
#get status of the service
sudo systemctl status *-servicename.serviceNow, check the services running in name of "hicare" using the command:
systemctl | grep "hicare"
Last updated