Install

FAQ
screenshots
downloads
installing

How do install this program.

Installing ADMAN ver 0.2.0

To run Adman you must have a running MySQL installation somewhere. MySQL can be downloaded at http://www.mysql.com/

1. Unpack the package.

2. Create a database for use by ADMAN.

At the command prompt:

c:\mysqladmin create manager

3. Create a database users with limited permissions for use by ADMAN.

At the command prompt:

c:\mysql
mysql> GRANT insert, delete, update, select ON manager.* TO username@"%" IDENTIFIED BY 'password';

Replace username and password with appropriate values. Repeat this step as many times as you have ADMAN users

mysql> FLUSH PRIVILEGES;
mysql> QUIT;

4. Populate the database with tables.

At the command prompt:

c:\mysql manager < c:\path-to-adman-installation\tables.sql

5. Run the manager application.

When you run the application for the first time it asks you server name, username and password. These values can be changed afterwards from File->Settings

6. Dont forget to send comments and bugs to mike@epl.ee !