Understanding a bit how init files work and the different run control targets in Linux.
Channel:
Subscribers:
1,220
Published on ● Video Link: https://www.youtube.com/watch?v=uiXEHJvtOA0
Installed Apache and checked out the init file.
1 clear
2 sudo yum -y install httpd
3 ls /etc/systemd/system
4 sudo systemctl enable httpd
5 ls /etc/systemd/system/multi-user.target.wants
6 less /usr/lib/systemd/system/httpd.service
7 sudo netstat -tnlp
8 sudo systemctl start httpd.service
9 sudo netstat -tnlp
10 history