一、XAMPP下载安装:

1、https://www.apachefriends.org/download.html下载安装包,

因为我们是要安装到linux下面,所以下载xampp的linux版本,如下图,并且选择适合自己操作系统位数的版本(32位跟64位之分)

Linux系统中Xampp+Bugfree安装-LMLPHP

2、如何查看自己linux操作系统位数:

在linux终端下(或者crt、xshell之类)敲击命令:uname –a,如果后面出现的是x86——64,有显著64标志的就是64位,那么你下载64位的xampp版本,没有显著64标志的就是32位,下载32位xampp

Linux系统中Xampp+Bugfree安装-LMLPHP

3、安装XAMPP

将xampp上传到linux服务器下,比如我们上传到/opt目录下

第一步:chmod 755 xampp-linux-*-installer.run

第二步:sudo ./xampp-linux-*-installer.run

如图安装过程:输入Y同意后安装

Linux系统中Xampp+Bugfree安装-LMLPHP

现在xampp安装到了/opt/lampp下

4、启动XAMPP

sudo /opt/lampp/lampp start

启动会出现类似信息

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

Ready. Apache and MySQL are running.

此时不代表全部启动,用ps –ef|grep  httpd  以及ps –ef|grep mysql 看看服务是否启动正常

 5、停止XAMPP

  1. 停止xampp

sudo /opt/lampp/lampp stop

出现

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

如果最终没有停止,就强行杀掉,kill -9 pid

二、安装部署Bugfree

将bugfree安装包放到linux 的/opt目录下

A: 解压bugfree  unzip  bugfree*

       B:  修改名字  mv  bugfree3.0.1   bugfree

名字修改为:bugfree

Linux系统中Xampp+Bugfree安装-LMLPHP

  C:讲bugfree拷贝到apache的工程路径下:cp -r bugfree  lampp/htdocs

Linux系统中Xampp+Bugfree安装-LMLPHP

  D:访问BugFree环境检查

当前机器下打开浏览器窗口输入:http://localhost/bugfree/install,开始安装;

局域网其它机器打开浏览器输入:Ip地址目录 例如:http://192.168.164.129/bugfree

环境检查,没有权限的赋予权限,没有文件的创建文件,一直到环境检查通过

a、创建BugFile目录且赋予【读写】权限:

/opt/lampp/htdocs/BugFile

Linux系统中Xampp+Bugfree安装-LMLPHP

BugFile文件夹赋予权限:

Linux系统中Xampp+Bugfree安装-LMLPHP

   b、assets目录赋予【写权限】

/opt/lampp/htdocs/bugfree/assets

Linux系统中Xampp+Bugfree安装-LMLPHP

c、runtime目录赋予【写权限】

/opt/lampp/htdocs/bugfree/protected/runtime

Linux系统中Xampp+Bugfree安装-LMLPHP

d、config目录和文件赋予【写权限】

/opt/lampp/htdocs/bugfree/protected/config

特别注意:config 文件 和 目录都要赋予【读写权限】

chmod  777      config

chmod -R 777  config

Linux系统中Xampp+Bugfree安装-LMLPHP

  e、install目录赋予【写权限】

/opt/lampp/htdocs/bugfree/install

chmod -R 777

Linux系统中Xampp+Bugfree安装-LMLPHP

   f、配置成功

e、点击继续

Linux系统中Xampp+Bugfree安装-LMLPHP

 f、安装成功

Linux系统中Xampp+Bugfree安装-LMLPHP

 到处为止!!!!!!!!!!!!

04-14 03:35