一.直接使用Xampp代理kodexplorer
1.XAMPP官网下载Linux版本XAMPP:xampp-linux-x64-7.3.3-0-installer.run
2.使用cp命令将其复制到/opt 目录下
sudo cp -r /你传输在服务器的目录/文件.tar.gz /opt
//然后前往opt目录解压
cd /opt
sudo tar zxvf xampp-linux-x.x-x.tar.gz /opt
//如果xampp是安装文件(.run)同样的方法
sudo cp -r /你传输在服务器的目录/文件.run /opt
//然后前往opt目录安装
cd /opt
sudo xampp-linux-5.6.8-0-installer.run
//这样安装的话,XAMPP 会被安装在 /opt/lampp 目录下。
//运行xmapp
sudo /opt/lampp/lampp start
//不出意外,你会看到
Starting XAMPP for Linux 1.7.3a...
XAMPP: Starting Apache with SSL (and PHP5)...
XAMPP: Starting MySQL...
XAMPP: Starting ProFTPD...
XAMPP for Linux started.
//一般Apache容易出现问题,最有可能使端口被占用
//解决办法,编辑httpd.conf, 修改listen监听的端口
vim /opt/lampp/etc/httpd.conf
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 8088
/opt/lampp/bin/mysqladmin -u root -p password ===> 更改mysql密码
二. 安装kodexplorer
1.下载可道云 国内仓库地址
方法一:
git clone https://gitee.com/kalcaddle/KODExplorer.git
chmod -Rf 777 ./KODExplorer/*
方法二
wget https://gitee.com/kalcaddle/KODExplorer/repository/archive/master.zip
unzip master.zip
chmod -Rf 777 ./*
2.把下载好的问价夹使用mv 移动到xampp的htdocs中
sudo mv /你的可道云为文件夹地址 /opt/lampp/hrdocs/
//可以试着访问你的Apache地址+文件夹名称访问
http://192.168.1.100:8088/KODExplorer/