Phpmyadmin not present in new vps version

New vps version (prestashop), have Centos.
Phpmyadmin and mysql root password is present.
How to manage database?

Ok, phpMyAdmin is not installed.
About mysql root password?

No root password created.
We can access as root directy with command:
mysql -u root

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;


you can fix this empty password by this below method.

update mysql.user set authentication_string=password(’’), plugin=‘m


yes, sure. Thanks

glad to help and your welcome.