Jump to content

Sign in to follow this  
Kirux_x

game server crash GetOrCreateSubscriberConnection

Recommended Posts

Hi all, I've created a game server using ASC and upon launch am getting this crash

[2022.07.17-02.50.02:205][  0]FDatabaseRedisShared::GetOrCreateSubscriberConnection() Failed To find DB connection for MonumentDB or it had empty URL

I have read around about the tradeDB missing from gridserver.serveronly but I have added that in here is my gridserver.serveronly 

{
  "LocalS3URL": "",
  "LocalS3AccessKeyId": "",
  "LocalS3SecretKey": "",
  "LocalS3BucketName": "",
  "LocalS3Region": "",
  "TribeLogConfig": {
    "MaxRedisEntries": 1000,
    "BackupMode": "off",
    "MaxFileHistory": 10,
    "HttpBackupURL": "",
    "HttpAPIKey": "",
    "S3URL": "",
    "S3AccessKeyId": "",
    "S3SecretKey": "",
    "S3BucketName": "",
    "S3KeyPrefix": ""
  },
  "SharedLogConfig": {
    "FetchRateSec": 60,
    "SnapshotCleanupSec": 900,
    "SnapshotRateSec": 1800,
    "SnapshotExpirationHours": 48,
    "BackupMode": "off",
    "MaxFileHistory": 10,
    "HttpBackupURL": "",
    "HttpAPIKey": "",
    "S3URL": "",
    "S3AccessKeyId": "",
    "S3SecretKey": "",
    "S3BucketName": "",
    "S3KeyPrefix": ""
  },
  "TravelDataConfig": {
    "BackupMode": "off",
    "MaxFileHistory": 10,
    "HttpBackupURL": "",
    "HttpAPIKey": "",
    "S3URL": "",
    "S3AccessKeyId": "",
    "S3SecretKey": "",
    "S3BucketName": "",
    "S3KeyPrefix": ""
  },
  "DatabaseConnections": [
    {
      "Name": "Default",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    },
    {
      "Name": "TribeDB",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    },
    {
      "Name": "TravelDataDB",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    },
    {
      "Name": "TerritoryDB",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    },
    {
      "Name": "LogDB",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    },
    {
      "Name": "TradeDB",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    }
  ]
}

 

I have also generated many new Atlas ID's and made new exports from the latest version servergrideditor but am still getting the same results

the ASC is v0.1.8.2b the latest version to my knowledge.

 

Please help this has been driving me wild all weekend.

Edited by Kirux_x

Share this post


Link to post
Share on other sites

for anyone coming accross this problem i also added 

{
      "Name": "MonumentDB",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    }

 

to the servergrid.serveronly to now look like 

"DatabaseConnections": [
    {
      "Name": "Default",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    },
    {
      "Name": "TribeDB",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    },
    {
      "Name": "TravelDataDB",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    },
    {
      "Name": "TerritoryDB",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    },
    {
      "Name": "LogDB",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    },
    {
      "Name": "TradeDB",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    },
    {
      "Name": "MonumentDB",
      "URL": "127.0.0.1",
      "Port": 6379,
      "Password": "foobared"
    }
  ]
}

the server now launches correctly

  • Thanks 1

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...