To run the MySQL post-installation scripts:
- Using command line, Go to the folder where scripts are installed
- Example,
cd C:\Server\MySQL_PI
- Example,
- Ensure that all the files included
agl_master.sql
are in this folder. - Execute the following command to load the scripts and make sure that MySQL executable is set in the path correctly so that it can be accessed from anywhere
.mysql -h[hostname] -u[username] -p [databasename] < agl_master.sql
- Example,
mysql -hlocalhost -uagiliance -p agiliance < agl_master.sql
- Example,