• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Cant start my server?

frolic

New Member
Joined
Apr 21, 2024
Messages
1
Reaction score
0
Hey everyone!

I've been trying to start my first server to test some stuff in i've managed to get my website running and i have an account (i cant login for some reason but one step at a time). I've been trying to start my server to see if i can login from there but i get an SQL error when i try to run my server.

Establishing database connection...
MySQL Error Message: Plugin caching_sha2_password could not be loaded: The specified module could not be found. Library path is 'caching_sha2_password.dll'


Currently my config looks like this:

C++:
        if (string[IP] == "") {
            string[IP] = getGlobalString(L, "ip", "127.0.0.1");
        }

        string[MAP_NAME] = getGlobalString(L, "mapName", "forgotten");
        string[MAP_AUTHOR] = getGlobalString(L, "mapAuthor", "Unknown");
        string[HOUSE_RENT_PERIOD] = getGlobalString(L, "houseRentPeriod", "never");
        string[MYSQL_HOST] = getGlobalString(L, "mysqlHost", getEnv("MYSQL_HOST", "127.0.0.1"));
        string[MYSQL_USER] = getGlobalString(L, "mysqlUser", getEnv("MYSQL_USER", "forgottenserver"));
        string[MYSQL_PASS] = getGlobalString(L, "mysqlPass", getEnv("MYSQL_PASSWORD", "root"));
        string[MYSQL_DB] = getGlobalString(L, "mysqlDatabase", getEnv("MYSQL_DATABASE", "forgottenserver"));
        string[MYSQL_SOCK] = getGlobalString(L, "mysqlSock", getEnv("MYSQL_SOCK", ""));

What do i do?
 
Last edited:
Back
Top