Starting MySQL Server
service mysql start
Creating a Database as a MySQL User
Username: root
Database name: test
mysqladmin -u root create test -p
It will ask for a password, but as there is no default password, simply press Enter.
Setting a Passwo...