phpmyadmin is not working after I installed it (Ubuntu)

Siddharth Shukla
1 min readFeb 10, 2020

--

sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf

sudo a2enconf phpmyadmin

sudo service apache2 reload

sudo apt update

sudo apt install phpmyadmin php-mbstring php-gettext

sudo phpenmod mbstring

sudo systemctl restart apache2

sudo mysql -u root -p;


CREATE USER 'siddharth'@'localhost' IDENTIFIED BY 'admin1818';

GRANT ALL PRIVILEGES ON *.* TO 'siddharth'@'localhost' WITH GRANT OPTION;

exit

Read More: https://realprogrammer.in/phpmyadmin-is-not-working-after-i-installed-it-ubuntu/

--

--

Siddharth Shukla
Siddharth Shukla

Written by Siddharth Shukla

I'm a Full Stack Engineer based in India ☀️, working at Kreativ Street. I'm a coding passion focused on Python, specifically Laravel & Django.

No responses yet