Skip to content

Instantly share code, notes, and snippets.

@oralinnet
Last active September 4, 2023 02:39
Show Gist options
  • Save oralinnet/17ac8f585424781b52106a67e1befaa2 to your computer and use it in GitHub Desktop.
Save oralinnet/17ac8f585424781b52106a67e1befaa2 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
@oralinnet
Copy link
Author

Screenshot from 2020-12-24 23-49-58
Screenshot from 2020-12-25 00-33-31
Screenshot from 2020-12-25 00-35-13
Screenshot from 2020-12-25 00-36-19
Screenshot from 2020-12-25 00-37-01
Screenshot from 2020-12-25 00-37-17
Screenshot from 2020-12-25 00-37-44
Screenshot from 2020-12-25 00-38-00
Screenshot from 2020-12-25 00-39-39
Screenshot from 2020-12-25 00-40-25
Screenshot from 2020-12-25 00-40-31
Screenshot from 2020-12-25 17-06-22

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment