248_sakuravps2_tomcatの起動や停止には順番★

■tomcatの起動や停止には順番
tomcatの起動や停止には順番があります。起動時はtomcat -> apacheの順に、停止時は逆にapache -> tomcatの順に停止します。
[起動]
# /opt/tomcat/apache-tomcat-8.5.13/bin/startup.sh
# /opt/httpd/httpd-2.4.25/bin/apachectl start

(これ使わず、# service httpd restart が良い)
[停止]
# /opt/httpd/httpd-2.4.25/bin/apachectl stop
# /opt/tomcat/apache-tomcat-8.5.13/bin/shutdown.sh

以上