zoukankan      html  css  js  c++  java
  • 基于CentOS搭建私有云服务

    系统版本:CentOS 7.2 64 位操作系统

    部署 XAMPP 服务

    下载 XAMPP(XAMPP 是个集成了多个组件的开发环境,包括 Apache + MariaDB + PHP + Perl。参考官网了解更多详情)

    是个集成了多个组件的开发环境,我们通过 wget 命令获取其安装包。

    wget https://www.apachefriends.org/xampp-files/7.1.10/xampp-linux-x64-7.1.10-0-installer.run

    下载完成后,请点击下一步。

    安装 XAMMP

    chmod a+x xampp-linux-x64-7.1.10-0-installer.run
    ./xampp-linux-x64-7.1.10-0-installer.run

    启动 XAMMP

    /opt/lampp/lampp start

    部署可道云 KODExplorer

    开源的云服务有好多,而可道云 KODExplorer 是目前国内有代表性、美观易用性好的私有云软件,用户可以通过远程网页,手机来访问,非常方便。

    安装 Git

    KODExplorer 需要通过 git 下载,我们需要先安装 Git

    yum -y install git

    下载 KODExplorer

    git clone https://github.com/kalcaddle/KODExplorer.git

    移动 KODExplorer

    本实验希望能够通过 http//118.89.65.22/KODExplorer来访问云服务,所以需要把下载到的 KODExplorer 移动到之前下载的 LAMPP 相应目录下,一般来说是 /opt/lampp/htdocs

    mv KODExplorer /opt/lampp/htdocs/ & cd /opt/lampp/htdocs/

    然后要给这个目录添加权限(至此,KODExplorer 安装完成)

    chmod -Rf 777 ./KODExplorer/*

    现在,在任意客户端访问 http://118.89.65.22/KODExplorer就可以使用部署的云服务了。

  • 相关阅读:
    JobHistory搜索智能化
    JobHistory搜索智能化
    JobHistory搜索智能化
    Hadoop Ls命令增加显示条数限制参数
    Hadoop Ls命令增加显示条数限制参数
    Markdown的简单用法
    Markdown常用编辑器
    搜索引擎的使用
    avalon.js 文字显示更多与收起
    浏览器访问网页的详细内部过程
  • 原文地址:https://www.cnblogs.com/jikexianfeng/p/8493199.html
Copyright © 2011-2022 走看看