Facebook Twitter Instagram
    TecAdmin
    • Home
    • FeedBack
    • Submit Article
    • About Us
    Facebook Twitter Instagram
    TecAdmin
    You are at:Home»Opensource»Install AjaXplorer ( File sharing platform ) on Linux

    Install AjaXplorer ( File sharing platform ) on Linux

    By RahulNovember 17, 20171 Min Read

    AjaXplorer is an open source solution for creating file sharing platform with your server. It allows to share files and documents over the internet using web interface, It also available in Android application to access.

    Advertisement
    Step 1: Download Archive and Extract

    Download AjaXplorer archive file and extract its content at document root of web server using below commands.

    # cd /var/www/html
    # wget http://kaz.dl.sourceforge.net/project/ajaxplorer/ajaxplorer/stable-channel/5.0.3/ajaxplorer-core-5.0.3.tar.gz
    # tar xzf ajaxplorer-core-5.0.3.tar.gz
    # mv ajaxplorer-core-5.0.3 ajaxplorer
    
    Step 2: Create MySQL Database and User

    AjaXplorer can be configured with MySQL or sqlite3 database. In this article we are using MySQL. Use following commands to create mysql database and user.

    # mysql -u root -p
    Enter password:
    
    mysql> CREATE DATABASE ajaxplorer;
    mysql> GRANT ALL ON ajaxplorer.* TO 'ajaxplorer'@'localhost' IDENTIFIED BY '_secret_password_';
    mysql> FLUSH PRIVILEGES;
    mysql> quit
    
    Step 3: Open AjaXplorer in Web Installer

    Now access the ajaxplorer folder on web browser using FQDN or Server ip address like below.

    http://localhost/ajaxplorer [or]
    http://svr2.tecadmin.net/ajaxplorer

    Now follow the instructions given by web installer with the help of below snapshots.

    filemanager-1

    filemanager-2

    filemanager-3

    filemanager-4

    filemanager-5

    filemanager-6

    Now you have all configured. Login to AjaXplorer admin panel and use it.

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email WhatsApp

    Related Posts

    How to Install Git on Fedora Linux

    How To Install Git on Fedora Linux

    How to Install OpenCV on Ubuntu 20.04

    How to Install OpenCV on Ubuntu 20.04

    How to Install Mattermost with MySQL on Ubuntu 14.04 & Debian 8

    Add A Comment

    Leave A Reply Cancel Reply

    Advertisement
    Recent Posts
    • Split Command in Linux With Examples (Split Large Files)
    • Test Your Internet Speed from the Linux Terminal
    • 11 Practical Example of cat Command in Linux
    • sleep Command in Linux with Examples
    • 20 Basic Linux Commands for the Beginners (Recommended)
    Facebook Twitter Instagram Pinterest
    © 2023 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.