Created
July 27, 2021 17:01
-
-
Save LinuxPlaner/6e4882fcabbe3a5da4ddb44f2dffb9f4 to your computer and use it in GitHub Desktop.
opingo .lms
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
Ping Me For opingo.lms related service: | |
SMS: +8801610932753 | |
IMO: +8801610932753 | |
BiP: +8801610932753 | |
Viber: +8801610932753 | |
Signal: +8801610932753 | |
Discord: supanta saha#3868 | |
Telegram: https://t.me/LinuxPlaner | |
WhatsApp: https://wa.link/njuw4c | |
Skype: https://join.skype.com/weW8UDI0u7o5 | |
Email: [email protected] | |
sudo -i | |
apt update -y | |
apt upgrade -y | |
apt install build-essential checkinstall | |
apt install ubuntu-restricted-extras | |
apt install software-properties-common | |
apt upgrade -y | |
apt -f install | |
apt autoremove | |
apt -y autoclean | |
apt -y clean | |
apt update | |
reboot | |
# Install Apache to check from web browser using 0.0.0.0 or localhost, check version, start,stop & restart Apache into Ubuntu | |
apt update | |
apt upgrade | |
service apache2 restart | |
systemctl enable apache2 | |
service apache2 stop | |
nano /etc/apache2/apache2.conf | |
# save and exit ctrl+s and sctr+x | |
service apache2 start | |
service apache2 restart | |
service apache2 reload | |
# Visit: http://localhost/ | |
# Install MariaDB & check version, start,stop & restart MariaDB | |
apt update | |
apt install mariadb-server | |
mysql_secure_installation | |
mysql --version | |
service mysql start | |
service mysql restart | |
mysql | |
use opigno; | |
FLUSH PRIVILEGES; | |
exit | |
service mysql restart | |
# Install PHP & check version | |
apt install software-properties-common | |
apt install mlocate | |
locate php | |
whereis php | |
# Install PHPmyAdmin | |
apt update -y | |
apt upgrade -y | |
apt update -y | |
service apache2 restart | |
service apache2 reload | |
# visit: http://localhost/phpmyadmin/ | |
service apache2 restart | |
service apache2 reload | |
cd | |
cd /tmp && wget https://ftp.drupal.org/files/projects/opigno_lms-8.x-2.21-core.zip | |
cd /var/www/html/opigno/ | |
php -r "unlink('composer-setup.php');" | |
apt install composer | |
composer require rusticisoftware/tincan:1.0.0 | |
apachectl -t | |
a2dismod mpm_event | |
systemctl restart apache2 | |
a2enmod mpm_prefork | |
a2enmod php7.4 | |
a2enmod rewrite | |
systemctl reload apache2 | |
systemctl restart apache2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment