New vps version (prestashop), have Centos.
Phpmyadmin and mysql root password is present.
How to manage database?
Phpmyadmin not present in new vps version
TonzaniE
#1
didarali
#4
becasue remote access for root is disabled and allowed just locally. you can fix this empty password by this below method.
update mysql.user set authentication_string=password(’’), plugin=‘mysql_native_password’ where user=‘root’;
flush privileges;