Facebook Twitter Instagram
    TecAdmin
    • Home
    • Ubuntu 20.04
      • Upgrade Ubuntu
      • Install Java
      • Install Node.js
      • Install Docker
      • Install LAMP Stack
    • Tutorials
      • AWS
      • Shell Scripting
      • Docker
      • Git
      • MongoDB
    • FeedBack
    • Submit Article
    • About Us
    Facebook Twitter Instagram
    TecAdmin
    Home»Opensource»Install AjaXplorer ( File sharing platform ) on Linux

    Install AjaXplorer ( File sharing platform ) on Linux

    RahulBy RahulSeptember 9, 20131 Min ReadUpdated:November 17, 2017

    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.

    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
    Previous ArticleHow To Configure Mod_pagespeed with Apache on CentOS & RHEL
    Next Article How to Reset ( Re-Sync ) MySQL Master-Slave Replication

    Related Posts

    How To Install Git on Fedora Linux

    Updated:May 31, 20222 Mins Read

    How to Install OpenCV on Ubuntu 20.04

    Updated:September 17, 20214 Mins Read

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

    Updated:May 4, 20163 Mins Read

    How to Install Wine 7.x on CentOS, RHEL and Fedora

    Updated:August 3, 20222 Mins Read

    How to Install Wine 5.0 on Ubuntu 18.04 & 16.04 LTS

    Updated:December 18, 20202 Mins Read

    How to Install Mean.io On Ubuntu, Debian & LinuxMint

    Updated:September 21, 20191 Min Read

    Leave A Reply Cancel Reply

    Recent Posts
    • How to Import GPG Keys on Ubuntu & Debian (without apt-key)
    • How To Install Google Chrome On macOS
    • How to Install Minecraft on Ubuntu 22.04 & 20.04
    • Running a Cron job every Sunday (Weekly)
    • Running Multiple Commands At Once in Linux
    Facebook Twitter Instagram Pinterest
    © 2022 Tecadmin.net. All Rights Reserved | Terms  | Privacy Policy

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