====== Configure MySQL ====== ---- ===== Script for Creating the Database ===== CREATE DATABASE wp_manager; GRANT ALL PRIVILEGES ON wp_manager.* TO 'wpweb'@'localhost' IDENTIFIED BY 'Password-123' WITH GRANT OPTION; FLUSH PRIVILEGES; ===== The Hibernate.cfg.xml File ===== The database configuration file is located in "C:\inetpub\wwwroot\XcaliburW\bin". Open this file with a text editor and edit the following lines: ...here... ==== Configure MySQL Usage ==== Edit the following lines: NHibernate.Driver.MySqlDataDriver NHibernate.Dialect.MySQL5Dialect ==== Connection String ==== Edit the following line: Server=127.0.0.1;Database=wp_manager;User=wpweb;Pwd=password; The value "password" corresponds to the password you chose during the creation of the **wpweb** account.