Logo
My Journal
Tag

database

Tag

Adding new users to MySQL Databases

# # Connect to the local database server as user root # You will be prompted for a password. # mysql -h localhost -u root -p # # Now we see the 'mysql>' prompt and we can run # the following to create a new database for xmodx. # mysql> create database xmodxdb; # # Now we create the user xmodx and...

Continue reading ...