• 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!

Canary - Failed to established connection to the game server / Connection refused

seneke

New Member
Joined
Aug 1, 2024
Messages
11
Reaction score
0
GitHub
seneke
Hi everyone,

I spent almost 2 days for looking an answer and i got nothing. Ports, ip address etc. checked hundreds of times and it's okay. So i'm working local, I can reach my website, create account on website and even log in to my accout in client i can see my characters but after choose any of them i got:

obraz_2025-01-23_191920257.webp

And after 5 times:

2.webp


Below every important information I know about:


OpenSSH ALLOW Anywhere
7171/tcp ALLOW Anywhere
7172/tcp ALLOW Anywhere
Nginx Full ALLOW Anywhere
8080/tcp ALLOW Anywhere
80/tcp ALLOW Anywhere

Config.lua:

ip = "MyAddress"
allowOldProtocol = false
bindOnlyGlobalAddress = false
loginProtocolPort = 7171
gameProtocolPort = 7172
statusProtocolPort = 7171
maxPlayers = 0
serverName = "Canary"


-- MySQL
mysqlHost = "127.0.0.1"
mysqlUser = "v"
mysqlPass = "MyPassword"
mysqlDatabase = "canary"
mysqlDatabaseBackup = false
mysqlPort = 3306
mysqlSock = ""
passwordType = "sha1"

config.php:

$config['site_title'] = 'Znote AAC';
$config['site_title_context'] = 'Because open communities are good communities. :3';
$config['site_url'] = "http://MyAddress";

$config['server_path'] = '/home/v/canary';
$config['sqlUser'] = 'v';
$config['sqlPassword'] = 'MyPassword';
$config['sqlDatabase'] = 'canary';

$config['sqlHost'] = '127.0.0.1';

I'm doing Canary distro (13.21) from LINK on Ubuntu 24.04 on vmware.

If you have any questions for me, I'm here. Thank You very much for any help.
 
I had the same problem, my characters had the wrong worldid. I changed the worldid of my chars from 0 to 1 and it worked. But your problem might be different.
 
Where can I change that?
Post automatically merged:

Solved.

I missed SCREEN command in whole process. Don't blame me, it's my first contact with this staff :p
 
Last edited:
Back
Top