Skip to content

Instantly share code, notes, and snippets.

@LinauxTerminology
Last active March 7, 2021 17:13
Show Gist options
  • Select an option

  • Save LinauxTerminology/adc49f350e50d77b0f45ad6948da9be4 to your computer and use it in GitHub Desktop.

Select an option

Save LinauxTerminology/adc49f350e50d77b0f45ad6948da9be4 to your computer and use it in GitHub Desktop.
Opigno Lms Install Ubuntu Linux
If you need Opigno LmsSetup contact with me:
Email: urmirohman218@gmail.com
Skype: https://join.skype.com/VOgbAxZNCAFi
Telegram:https://t.me/LinauxTerminology
WhatsApp: +8801408694088
Imo: +8801408694088
twiteer:https://twitter.com/LinauxTerminoal
facebook:https://www.facebook.com/LinauxTerminology
bip:01314582960
instagram:urmirohman218@gmail.com
------ Requrement ----------
Ubuntu 20.04 LTS
MariaDB
PHP (check which works now)
Apache Server
Step 1: Install Apache2 HTTP Server on Ubuntu
sudo apt update
sudo apt install apache2
sudo systemctl stop apache2.service
sudo systemctl start apache2.service
sudo systemctl enable apache2.service
Step 2: Install MariaDB Database Server
sudo apt-get install mariadb-server mariadb-client
sudo systemctl stop mariadb.service
sudo systemctl start mariadb.service
sudo systemctl enable mariadb.service
sudo mysql_secure_installation
Enter current password for root (enter for none): Just press the Enter
Set root password? [Y/n]: Y
New password: Enter password
Re-enter new password: Repeat password
Remove anonymous users? [Y/n]: Y
Disallow root login remotely? [Y/n]: Y
Remove test database and access to it? [Y/n]: Y
Reload privilege tables now? [Y/n]: Y
sudo mysql -u root -p
CREATE DATABASE opignodb DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
GRANT ALL ON opignodb.* TO 'opignousr'@'localhost' IDENTIFIED BY 'tig@r2020';
use opignodb;
FLUSH PRIVILEGES;
EXIT;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment