Last active
February 8, 2022 16:41
-
-
Save cloudybdone/3a7b78d4b7f67949caa19cffc6878bfa to your computer and use it in GitHub Desktop.
I Will Setup Opigno LMS on Ubuntu Linux
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 you need any help related to Opigno LMS installation service on Ubuntu contact with me: | |
| Telegram: https://t.me/Cloudybdone | |
| WhatsApp: https://wa.link/3j794g | |
| Skype: https://join.skype.com/invite/vLFaKHxboQrc | |
| Email: cloudybdone@gmail.com | |
| Linkedin: https://www.linkedin.com/in/cloudybdone/ | |
| Facebook: https://www.facebook.com/cloudybdone/ | |
| About Me: https://about.me/cloudybdone | |
| YouTube PlayList: https://www.youtube.com/watch?v=pxMpR8pIhic&list=PLiveDaEySXe-Hy8TBXqmavSQIZU3MdFwu&index=1 | |
| sudo apt update | |
| sudo apt upgrade | |
| sudo apt install | |
| apache2 -v | |
| sudo systemctl enable | |
| sudo service... | |
| sudo service apache2 status | |
| sudo -i | |
| apt install mariadb-server... | |
| mysql_secure_installation | |
| nano /usr/lib/systemd/.... | |
| LimitNOFILE=in..... | |
| systemctl daemon-reload | |
| systemctl status mariadb | |
| systemctl is-enabled mariadb | |
| create database opigno; | |
| CREATE USER 'opigno'..... | |
| GRANT ALL PRIVILEGES ON... | |
| exit | |
| systemctl.......... | |
| apt upgrade -y | |
| sudo apt-get install software-...... | |
| sudo add-apt-repository ppa:..... | |
| sudo apt install php7.2-fpm php7.2-common..... | |
| sudo apt install libapache2-mod-php php-mysq.... | |
| php --version | |
| sudo timedatectl list-timezones | |
| sudo nano /etc/php/7.4/.... | |
| file_uploads = | |
| allow_url_fopen = | |
| short_open_tag = | |
| memory_limit = | |
| max_execution_time = | |
| date.timezone = America/Chicago | |
| cd /tmp && wget https://ftp.drupal.org/files..... | |
| unzip opigno_lms-7.x-1.31-core.zip | |
| sudo mv opigno_lms-7.x-1.31..... | |
| sudo chown -R www-data:www-data /var..... | |
| sudo chmod -R 755 /var/www.... | |
| sudo service apache2 restart | |
| cd /etc/apache2/.... | |
| sudo nano 00.... | |
| <VirtualHost *:80> | |
| ServerAdmin admin@example.com | |
| DocumentRoot /var/www..... | |
| ServerName example.com | |
| <Directory /var/www/html/opigno/> | |
| Options FollowSymlinks | |
| Require all granted | |
| </Directory> | |
| ErrorLog ${APACHE_LOG_DIR}/error.log | |
| </VirtualHost> | |
| sudo a2ensite opigno.conf | |
| sudo systemctl restart apache2.service | |
| visit: http://localhost |
cloudybdone
commented
Jan 22, 2022
Author

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

