Install MySQL Query Browser and Create the Default User
Before installing Author-it Website Manager you will need to create a user and blank database.The following instructions use the MySQL Query Browser.
To Create the User and Database:
- Install MySQL Query Browser
- Login to MySQL Query Browser as the administrator using the following server host and username:
Server Host: localhost
Username: root
Password: (leave blank)
Schema: (leave blank)

- Choose OK to continue
- Choose Ignore to open the Query Browser

- Create a blank database called awm by adding the following SQL query to the query area:
CREATE DATABASE awm
- Choose Execute to run the query
- Delete the query text so the query area is blank for the next step
- Create the database user by adding the following SQL query to the query area (as a single line of text without paragraph breaks):
GRANT ALL PRIVILEGES ON awm.* TO 'awm_site'@'localhost' IDENTIFIED BY '1234'
The query creates the user awm_site, with access from localhost using the password 1234.
- Choose Execute to run the query
- Close the Query Browser.
The database is ready to be populated with the Author-it Website Manager table structure.
|