系统版本:CentOS 7.2 64 位操做系统html
是个集成了多个组件的开发环境,咱们经过 wget
命令获取其安装包。linux
wget https://www.apachefriends.org/xampp-files/7.1.10/xampp-linux-x64-7.1.10-0-installer.run
下载完成后,请点击下一步。git
chmod a+x xampp-linux-x64-7.1.10-0-installer.run ./xampp-linux-x64-7.1.10-0-installer.run
/opt/lampp/lampp start
开源的云服务有好多,而可道云 KODExplorer 是目前国内有表明性、美观易用性好的私有云软件,用户能够经过远程网页,手机来访问,很是方便。github
KODExplorer 须要经过 git 下载,咱们须要先安装 Gitapache
yum -y install git
git clone https://github.com/kalcaddle/KODExplorer.git
本实验但愿可以经过 http//118.89.65.22/KODExplorer
来访问云服务,因此须要把下载到的 KODExplorer 移动到以前下载的 LAMPP 相应目录下,通常来讲是 /opt/lampp/htdocs
spa
mv KODExplorer /opt/lampp/htdocs/ & cd /opt/lampp/htdocs/
而后要给这个目录添加权限(至此,KODExplorer 安装完成)操作系统
chmod -Rf 777 ./KODExplorer/*
如今,在任意客户端访问 http://118.89.65.22/KODExplorer就能够使用部署的云服务了。code