This step consists of entering the necessary information for the connection of LCM to the SQL database server.

These settings cannot be invented: not knowing them means that your host has not given them to you. Therefore: if you do not have this information at hand you cannot continue.

$ mysql -u root
mysql> create database lcm;
mysql> grant all on lcm.* to lcm_user@localhost identified by 'mypassword';

In the above example, we create a database named “lcm” and later create a new user named “lcm_user” to whom we give full access to the “lcm” database.

The “lcm_user” and “mypassword” will then be the connection login and connection password respectively for continuing the installation.

Please note that the best way to connect to your database depends on your local server configuration.