Dedicated Server Database issues

1
Hi,

I have a dedicated Server, when I try and add my server I have the Game Server address & port, and the database Address plus the database name, but I can only find the password for the database and not the username, how do I find this...

Oh just to mentions I have looked in the config_local.cs file and it is this

$cm_config::DB::Connect::server = "127.0.0.1"; // server IP or domain name. Can enter port if it is not default
$cm_config::DB::Connect::user = "root"; // MUST be a user with ROOT privileges in order to create new DBs
$cm_config::DB::Connect::password = "not showing here"; // password for that user

However I get "Access denied on database login. Wrong credentials or missing privileges on database"

Re: Dedicated Server Database issues

2
Ok figured it out.. for me the username for me was the actual database name itself
My config_local.cs file is like this (edited for various reasons)

$cm_config::DB::Connect::server = "Your server IP : Port"; // server IP or domain name. Can enter port if it is not default
$cm_config::DB::Connect::user = "lif_xxxxxxxx"; // MUST be a user with ROOT privileges in order to create new DBs
$cm_config::DB::Connect::password = "Admin password"; // password for that user
cron