linux下安裝xampp,XAMPP目錄結構

XAMPP目錄結構

重要的文件和目錄 php

文件/目錄                              用途 html

/opt/lampp/bin/ XAMPP 命令庫。例如 /opt/lampp/bin/mysql 可執行 MySQL 監視器。
/opt/lampp/htdocs/ Apache 文檔根目錄。
/opt/lampp/etc/httpd.conf Apache 配製文件。
/opt/lampp/etc/my.cnf MySQL 配製文件。
/opt/lampp/etc/php.ini PHP 配製文件。
/opt/lampp/etc/proftpd.conf ProFTPD 配製文件。(從 0.9.5 版開始)
/opt/lampp/phpmyadmin/config.inc.php

phpMyAdmin 配製文件。 mysql


----------------------------------------------------------------------


Linux下XAMPP環境安裝

官方教程:https://www.apachefriends.org/faq_linux.html linux

安裝XAMPP sql

Choose your flavor for your linux OS, the 32-bit or 64-bit version. 數據庫

Change the permissions to the installer apache

chmod 755 xampp-linux-*-installer.run 安全

Run the installer 服務器

sudo ./xampp-linux-*-installer.run this

That's all. XAMPP is now installed below the /opt/lampp directory.


啓動XAMPP:

To start XAMPP simply call this command:

sudo /opt/lampp/lampp start

You should now see something like this on your screen:

Starting XAMPP 1.8.2...
LAMPP: Starting Apache...
LAMPP: Starting MySQL...
LAMPP started.

Ready. Apache and MySQL are running.

If you get any error messages visit our community pages for help.

Also, note that there is a graphical tool that you can use to manage your servers easily. You can start this tool with the following commands:

cd /opt/lampp
sudo ./manager-linux.run (or manager-linux-x64.run)

中止XAMPP:

To stop XAMPP simply call this command:

sudo /opt/lampp/lampp stop

You should now see something like this on your screen:

Stopping XAMPP 1.8.2...
LAMPP: Stopping Apache...
LAMPP: Stopping MySQL...
LAMPP stopped.

If you get any error messages visit our community pages for help.

Also, note that there is a graphical tool that you can use to start/stop your servers easily. You can start this tool with the following commands:

cd /opt/lampp
sudo ./manager-linux.run (or manager-linux-x64.run)



------------------------------------------------------------

首先,請從www.xampp.org下載最新版XAMPP。而後,將安裝文件服知道/opt下並解壓。若是你計算機沒有/opt目錄,清用超級用戶身份執行mkdir/opt命令來建立目錄。若是計算機沒有sudo命令請用su命令並輸入超級用戶密碼來切換到超級用戶。

 

使用如下命令將文件複製到/opt:

$sudo cp xampp-linux-x.x.tar.gz /opt

 

使用一下命令進入opt/目錄並解壓縮文件:

$ cd /opt

$ sudo tar zxvf xampp-linux-x.x-x.tar.gz /opt

 

卸載 XAMPP,只需輸入以下命令:sudo rm -rf /opt/lampp

卸載完成。

 

若是想要普通用戶能寫htdocs目錄,清修改目錄權限。

$ sudo chmod -R a+rw /opt/lampp/htdocs

 

啓動或中止xampp:

$ sudo /opt/lampp/lampp start & stop

 

小技巧:

Linux下的XAMPP圖形化面板

 

$ cd /opt/lampp/share/xampp-control-panel

$ sudo ./xampp-control-panel

 

XAMPP 命令

安裝 XAMPP

tar xvfz xampp-linux-1.6.4.tar.gz -C /opt

啓動 XAMPP

/opt/lampp/lampp start

中止 XAMPP

/opt/lampp/lampp stop

 

重啓 XAMPP

/opt/lampp/lampp restart

安全設置

/opt/lampp/lampp security

使用php4

/opt/lampp/lampp php4

使用php5

/opt/lampp/lampp php5

查看php版本

/opt/lampp/lampp phpstatus

只啓動 Apache

/opt/lampp/lampp startapache

中止 Apache

/opt/lampp/lampp stopapache

啓動 Apache 的 SSL 支持

/opt/lampp/lampp startssl

中止 Apache 的 SSL 支持

/opt/lampp/lampp stopssl

只啓動 MySQL 數據庫

/opt/lampp/lampp startmysql

中止 MySQL 數據庫

/opt/lampp/lampp stopmysql

啓動 ProFTPD 服務

/opt/lampp/lampp startftp

中止 ProFTPD 服務器

/opt/lampp/lampp stopftp

隨系統自動啓動

ln -s /opt/lampp/lampp /etc/rc.d/rc3.d/S99lampp

ln -s /opt/lampp/lampp /etc/rc.d/rc4.d/S99lampp

ln -s /opt/lampp/lampp /etc/rc.d/rc5.d/S99lampp

取消隨系統自動運行

ln -s /opt/lampp/lampp K01lampp

卸載 XAMPP

rm -rf /opt/lampp

XAMPP 重要的文件和目錄

XAMPP 命令庫。例如 /opt/lampp/bin/mysql 可執行 MySQL 監視器

/opt/lampp/bin/

Apache 文檔根目錄

/opt/lampp/htdocs/

Apache 配製文件

/opt/lampp/etc/httpd.conf

MySQL 配製文件

/opt/lampp/etc/my.cnf

PHP 配製文件

/opt/lampp/etc/php.ini

ProFTPD 配製文件。(從 0.9.5 版開始)

/opt/lampp/etc/proftpd.conf

phpMyAdmin 配製文件

/opt/lampp/phpmyadmin/config.inc.php

相關文章
相關標籤/搜索