CentOS6(7)にhttpd操作コマンドメモ
CentOS6の場合
# sudo service httpd start
# sudo chkconfig httpd on
CentOS7の場合
sudo systemctl start httpd.service
sudo systemctl enable httpd.service
Coding Changes the World
CentOS6の場合
# sudo service httpd start
# sudo chkconfig httpd on
CentOS7の場合
sudo systemctl start httpd.service
sudo systemctl enable httpd.service