Hey everyone, this has really been bugging me for a while now. I’ve been running my own PN server for local development and testing it with my Wii U. My account server is running flawlessly, however I can’t get it to connect to my friends server. I’m not seeing any requests at all in the friends server’s console. Here’s my current setup:
Friends .env:
PN_FRIENDS_CONFIG_POSTGRES_URI=[REDACTED]
PN_FRIENDS_CONFIG_POSTGRES_MAX_CONNECTIONS=20
PN_FRIENDS_CONFIG_AES_KEY=[REDACTED]
PN_FRIENDS_CONFIG_GRPC_API_KEY=[REDACTED]
PN_FRIENDS_CONFIG_GRPC_SERVER_PORT=50052
PN_FRIENDS_CONFIG_AUTHENTICATION_SERVER_PORT=50153
PN_FRIENDS_CONFIG_SECURE_SERVER_HOST=localhost
PN_FRIENDS_CONFIG_SECURE_SERVER_PORT=50154
PN_FRIENDS_CONFIG_ACCOUNT_GRPC_HOST=localhost
PN_FRIENDS_CONFIG_ACCOUNT_GRPC_PORT=50051
PN_FRIENDS_CONFIG_ACCOUNT_GRPC_API_KEY=[REDACTED] # Guessing this is my PN_ACT_CONFIG_GRPC_API_KEY?
PN_FRIENDS_CONFIG_ENABLE_BELLA=true
Server mongo entry:
{
"service_name": "Friend List",
"service_type": "nex",
"game_server_id": "00003200",
"title_ids": [
"0005001010001C00",
"000500301001500A",
"000500301001510A",
"000500301001520A",
"0004013000003202",
"0004003000008D02",
"0004003000009602",
"0004003000009F02",
"000400300000AF02"
],
"ip": "localhost",
"port": 50153,
"access_mode": "prod",
"maintenance_mode": false,
"device": 1,
"aes_key": "[REDACTED]" // But it's the same as my account server's aes key.
}
I really need this fixed, so could anyone please help? =)