程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> ubuntu開機自動啟動xampp的兩種方法

ubuntu開機自動啟動xampp的兩種方法

編輯:PHP綜合

方法一:

1. 在/etc/init.d 目錄下建立lampp.sh 文件,然後添加以下內容:
#!/bin/sh
/opt/lampp/lampp start

2. chmod 755 /etc/init.d/lampp.sh

3. 編輯/etc/init.d/rc.local在最後一行加上:
   sh /etc/init.d/lampp.sh

或者
   exec /etc/init.d/lampp.sh  (注:這種方法即使開機後沒有登入,XAMPP還是會啟動)

4. 重啟ubuntu

方法二:
sudo ln -s /opt/lampp/lampp  /etc/init.d/lampp
sudo update-rc.d -f lampp defaults

*
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved