Last active
September 4, 2023 02:39
-
-
Save oralinnet/17ac8f585424781b52106a67e1befaa2 to your computer and use it in GitHub Desktop.
HumHub install on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
Author
oralinnet
commented
Dec 28, 2020












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