...
Create the TermWeb database by opening a DOS prompt and enter the following:
mysql -u root -p < createdb.sql
This creates an empty database called
termweb
and a usertermwebuser
with passwordtermwebpwd
. The user name and password can be changed as desired. The user currently needs all permissions (except GRANT) in the database.Import the
termweb.sql
file to the database, by running the following at the DOS prompt:mysql -u termwebuser -p termwebpwdptermwebpwd termweb < termweb.sql
3. Copy the MySQL JDBC Driver to Tomcat
...