Skip to content

Instantly share code, notes, and snippets.

@UbuntuEvangelist
Forked from oralinnet/HumHub.sh
Created December 28, 2020 16:39
Show Gist options
  • Save UbuntuEvangelist/3524265e95f3ab95401cddb6d3688bd6 to your computer and use it in GitHub Desktop.
Save UbuntuEvangelist/3524265e95f3ab95401cddb6d3688bd6 to your computer and use it in GitHub Desktop.
HumHub install on Ubuntu
If youu need HumHub Setup in Linux contact with me:
Skype: rakibul.raju90
Telegram:+880 1736863870
WhatsApp:+880 1736863870
Email:[email protected]
https://about.me/oralin/
===========================================================================================================
# Step 1: Install Nginx HTTP
sudo apt update
sudo apt install nginx
sudo systemctl stop nginx.service
sudo systemctl start nginx.service
sudo systemctl enable nginx.service
http://localhost
# Step 2: Install MariaDB Database Server
sudo apt install mariadb-server mariadb-client
sudo systemctl stop mariadb.service
sudo systemctl start mariadb.service
# Step 3: Create HumHub Database
sudo mysql -u root -p
CREATE DATABASE humhub;
CREATE USER 'humhubuser'@'localhost' IDENTIFIED BY 'Hum#$032Hub';
GRANT ALL ON humhub.* TO 'humhubuser'@'localhost' WITH GRANT OPTION;
use humhub;
FLUSH PRIVILEGES;
EXIT;
# Step 4: Install PHP 7.2-FPM and Related Modules
sudo apt update
sudo apt install php7.2-fpm php7.2-common php7.2-gmp php7.2-curl
# Step 5: Download HumHub Latest Release
cd /var/www/html
https://www.humhub.com/en/download ---- download file from here
sudo tar xvaf humhub-1.7.1.tar.gz
sudo mv humhub-1.7.1 humhub
http://localhost
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment