zoukankan      html  css  js  c++  java
  • Linux下配置xampp

    How do I install XAMPP?
    Choose your flavor for your linux OS, the 32-bit or 64-bit version.

    Change the permissions to the installer

    chmod 755 xampp-linux-*-installer.run

    Run the installer

    sudo ./xampp-linux-*-installer.run

    That's all. XAMPP is now installed below the /opt/lampp directory.

    How do I start XAMPP?
    To start XAMPP simply call this command:

    sudo /opt/lampp/lampp start

    You should now see something like this on your screen:

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

    Ready. Apache and MySQL are running.

    If you get any error messages visit our community pages for help.

    Also, note that there is a graphical tool that you can use to manage your servers easily. You can start this tool with the following commands:

    cd /opt/lampp
    sudo ./manager-linux.run (or manager-linux-x64.run)

    How do I stop XAMPP?

    To stop XAMPP simply call this command:

    sudo /opt/lampp/lampp stop

    You should now see something like this on your screen:

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


    If you get any error messages visit our community pages for help.

    Also, note that there is a graphical tool that you can use to start/stop your servers easily. You can start this tool with the following commands:

    cd /opt/lampp
    sudo ./manager-linux.run (or manager-linux-x64.run)

  • 相关阅读:
    AVLTree的实现以及左右旋转维持自平衡
    哈希函数之布隆过滤器
    LeetCode——线段树解决区间总和问题
    第23章 Windows身份验证
    第22章 使用外部身份提供商登录
    第21章 登录
    第20章 定义客户端
    第19章 定义资源
    第18章 启动
    第17章 社区快速入门和模板
  • 原文地址:https://www.cnblogs.com/jackiehe/p/4346575.html
Copyright © 2011-2022 走看看