小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

CentOS7 安裝tomcat7.x為系統(tǒng)服務(wù)器 Systemctl管理Tomcat

 昵稱597197 2017-10-19

本文轉(zhuǎn)載:http://blog./uid-24648266-id-5729891.html


CentOS7開始,從/etc/init.d腳本改為了systemctl管理服務(wù)。

親自測(cè)試成功。


1.首先,需要為tomcat配置pid。

bin/catalina.sh
[java] view plain copy
  1. # Copy CATALINA_BASE from CATALINA_HOME if not already set  
  2. [ -z "$CATALINA_BASE" ] && CATALINA_BASE="$CATALINA_HOME"  
  3. # 設(shè)置pid。一定要加在CATALINA_BASE定義后面,要不然pid會(huì)生成到/下面  
  4. CATALINA_PID="$CATALINA_BASE/tomcat.pid"  

tomcat.pid文件與bin目錄平級(jí)。

2.創(chuàng)建tomcat.service文件

/lib/systemd/system/tomcat.service 
[java] view plain copy
  1. [Unit]  
  2. Description=Tomcat  
  3. After=syslog.target network.target remote-fs.target nss-lookup.target  
  4.   
  5. [Service]  
  6. Type=forking  
  7.   
  8. Environment="JAVA_HOME=/home/jdk/jdk1.7.0_79"  
  9.   
  10. PIDFile=/home/tomcat/apache-tomcat-7.0.47/tomcat.pid  
  11. ExecStart=/home/tomcat/apache-tomcat-7.0.47/bin/startup.sh  
  12. ExecReload=/bin/kill -s HUP $MAINPID  
  13. ExecStop=/bin/kill -s QUIT $MAINPID  
  14. PrivateTmp=true  
  15.   
  16. [Install]  
  17. WantedBy=multi-user.target  

Environment="JAVA_HOME=/home/jdk/jdk1.7.0_79" 這里要配置環(huán)境變量,在/etc/profile中的配置在系統(tǒng)服務(wù)中不生效。

3.設(shè)置為開機(jī)啟動(dòng)

[java] view plain copy
  1. systemctl enable tomcat.service    

4.其它

修改tomcat.service文件后需要執(zhí)行下面命令使其生效:
systemctl daemon-reload
查詢tomcat 進(jìn)程  ps -ef | grep "tomcat"| grep -v grep
如果多個(gè)tomcat,則拷貝到不同的目錄,使用不同的端口。tomcat.service文件名不同即可。
例如:tomcat1.service tomcat2.service tomcat3.service


啟動(dòng)nginx服務(wù)

systemctl start nginx.service

設(shè)置開機(jī)自啟動(dòng)

systemctl enable nginx.service

停止開機(jī)自啟動(dòng)

systemctl disable nginx.service

查看服務(wù)當(dāng)前狀態(tài)

systemctl status nginx.service

重新啟動(dòng)服務(wù)

systemctl restart nginx.service

查看所有已啟動(dòng)的服務(wù)

systemctl list-units --type=service

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多