Last active
December 8, 2020 07:55
-
-
Save LinuxlinkedBD/dc0675b1f3dbcfafdc0a4c0bedb9b2d3 to your computer and use it in GitHub Desktop.
Mautic Installation with LAMP stack
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 complete Mautic setup, ping me on below contacts: | |
Telegram: linuxlinked | |
email: [email protected] | |
WhatsApp: +8801720903155 | |
Skype:live:.cid.c0dc316b9d727d5e | |
YouTube: https://youtu.be/e8vlsxnrzas | |
######################################################################################################################################## | |
sudo apt update | |
sudo apt install apache2 | |
sudo systemctl start apache2.service | |
sudo systemctl enable apache2.service | |
sudo systemctl restart apache2.service | |
sudo apt-get install mariadb-server mariadb-client | |
sudo systemctl start mariadb.service | |
sudo systemctl enable mariadb.service | |
sudo systemctl status mariadb.service | |
sudo apt install php7.0 libapache2-mod-php7.0 php7.0-common | |
cd /var/www/html | |
sudo git clone https://github.com/mautic/mautic.git | |
#Now finished the Installation Process. Visit you installed site. | |
http://localhost/mautic/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment