Page 1 of 1

PHPMYADMIN

PostPosted: Fri Mar 13, 2020 6:21 pm
by Ajay22
Hi Team,

Can any one let me know what is the default password of phpMyAdmin,

I have done fresh installation via Vicibox 9.0.1 ISO

Even i have not set any password on mysql, i have tried all possible way to login in phpMyAdmin, eg 6666 1234 , root password blank , root with server password

All this are not working for me

Re: PHPMYADMIN

PostPosted: Mon Mar 16, 2020 9:58 am
by bbakirtas
root has no password
you can use cron 1234 or creating new password for root

Re: PHPMYADMIN

PostPosted: Tue Mar 17, 2020 9:51 pm
by Ajay22
bbakirtas wrote:root has no password
you can use cron 1234 or creating new password for root


HI BBakirtas,

Its not working for me, can you pls help me to setup mysql root password, after installation i have not made any changes its default password is blank, how can i setup new password for mysql.

Re: PHPMYADMIN

PostPosted: Wed Mar 18, 2020 1:30 am
by bbakirtas
ssh - > mysql

CREATE USER 'username'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'username'@'localhost';
FLUSH PRIVILEGES;

or mysqladmin -u root password YOURNEWPASSWORD