This is about to install phpmyadmin in your Fedora based servers. That can simplify your task to manage database. So, no need to use terminals and fire queries in database.
1.) yum install phpmyadmin
2.) now open terminal and login into mysql database
now type :
CREATE USER 'admin'@'localhost' IDENTIFIED BY 'admin';
GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost' WITH GRANT OPTION;
3.) now open browser -> type : http://localhost/phpmyadmin -> enter user name and password : admin
and enjoy it..!!!
1.) yum install phpmyadmin
2.) now open terminal and login into mysql database
now type :
CREATE USER 'admin'@'localhost' IDENTIFIED BY 'admin';
GRANT ALL PRIVILEGES ON *.* TO 'admin'@'localhost' WITH GRANT OPTION;
3.) now open browser -> type : http://localhost/phpmyadmin -> enter user name and password : admin
and enjoy it..!!!