系統版本: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