The solution I proposed above as jlennane worked for me. You can find the wp-config-sample.php in the WR root.
Then modify the following parameters to match the schema you created in your MySql data base.
Finally, save it into the WP root as wp-sample.php
/** The name of the database for WordPress */
define(‘DB_NAME’, ‘your schema name on MySql’);
/** MySQL database username */
define(‘DB_USER’, ‘root or your user name’);
/** MySQL database password */
define(‘DB_PASSWORD’, ‘password from your Mysql Db schema’);