Created
June 7, 2018 20:27
-
-
Save mauriciopazpp/3cf4bd442975caa08394d26c0101df51 to your computer and use it in GitHub Desktop.
Install phpmyadmin
This file contains 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
sudo apt-get update | |
/** | |
* phpmyadmin | |
*/ | |
sudo apt-get install phpmyadmin php-mbstring php-gettext | |
/** | |
* Habilite as extensões | |
*/ | |
sudo phpenmod mcrypt | |
sudo phpenmod mbstring | |
/** | |
* Reinicie o seu servidor apache ou Nginx | |
*/ | |
Apache: sudo systemctl restart apache2 | |
Nginx: sudo systemctl reload nginx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment