Hello, i recently followed a tutorial for setting up a Altis life server but problem is it doenst show up on the browser unless i put the IP in the remote connection. I dont get any errors when launching the server but it just doesnt show up and it kick me off right away when i join the server to test it.
Thanks for any help!
Regards
Niklas
ArmA 3 Altis life server issues
-
fingerniklas
- New to forums

- Posts: 3
- https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
- Joined: Tue Sep 09, 2014 9:49 am
-
theRadAleks
- This is my homepage

- Posts: 204
- Joined: Wed Feb 19, 2014 6:07 pm
- Location: Dallas, TX
Re: ArmA 3 Altis life server issues
Its because your server is most likely not querying the steam servers. Put this code in your server.cfg
With this you should be able to add your server to your favorites in steam by just putting in your IP, and the port as 27016.
If your server still isnt responding to steam servers, you can visit this link that goes into more detail with setting up the server.cfg and making your server respond to steam servers! https://community.bistudio.com/wiki/server.cfg
Code: Select all
steamPort = 8766;
steamQueryPort = 27016;If your server still isnt responding to steam servers, you can visit this link that goes into more detail with setting up the server.cfg and making your server respond to steam servers! https://community.bistudio.com/wiki/server.cfg
-
fingerniklas
- New to forums

- Posts: 3
- Joined: Tue Sep 09, 2014 9:49 am
Re: ArmA 3 Altis life server issues
I'm using the TADST and this is how the config looks like:
Code: Select all
// Config file generated 9/10/2014 2:46 PM with TADST.
steamPort = 8766;
hostName = "Serp Altis Life || SWE ||";
password = "******";
passwordAdmin = "*****";
logFile = "";
motd[] = {
};
motdInterval = 3;
maxPlayers = 10;
kickduplicate = 0;
verifySignatures = 0;
requiredSecureId = 0;
voteMissionPlayers = 3;
voteThreshold = 1.5;
disableVoN = 0;
vonCodecQuality = 10;
persistent = 1;
timeStampFormat = "none";
BattlEye = 1;
doubleIdDetected = "";
onUserConnected = "";
onUserDisconnected = "";
onHackedData = "";
onDifferentData = "";
onUnsignedData = "";
regularCheck = "";
class Missions
{
class Mission_1
{
template = "altis_life.altis";
difficulty = "regular";
};
};
-
fingerniklas
- New to forums

- Posts: 3
- Joined: Tue Sep 09, 2014 9:49 am
Re: ArmA 3 Altis life server issues
I looked in the netlog and it says InitSteamServer failed
Code: Select all
0.000: NetLogger: start - Wed Sep 10 15:18:03 2014
0.000: Clk(62500000)
21.431: Arma3 version: 1.28
21.446: 15:18:24 Dedicated host created.
21.470: Fac:start(1.1,2.2,'WinSock 2.0','Running',32767,65467)
27.303: Par: 1.1,65535,1400,90,3,400000,2,32000,8000,2000000,400,0,6000000,1.040,1000.0,0.980,3000000,3000000,65536
27.303: Par: 2.50,150000.0,400,15,0.1500,0.1000,0.0500,0.0200,2.20,30000.0,1.80,20000.0,1.40,10000.0,1.10,3000.0,1.40,1.20
27.303: Par: [0.900,20.0] [0.980,10.0] [1.000,0.0] [1.020,20.0] [1.100,40.0] [1.300,50.0]
27.304: Fac:cp(2307,65507,65535,65536)
27.304: Fac:cp(1,2,65527,'MSAFD Tcpip [UDP/IP]')
27.308: Ch(0):open(31.186.251.98:2307 <-> 255.255.255.255:0)
27.309: Pe(0):succ(31.186.251.98:2307)
27.309: Pe(0):list(2307)
27.702: Fac:cp(2305,65507,65535,65536)
27.702: Fac:cp(1,2,65527,'MSAFD Tcpip [UDP/IP]')
27.702: Ch(1):open(31.186.251.98:2305 <-> 255.255.255.255:0)
27.702: Pe(1):succ(31.186.251.98:2305)
27.702: Pe(1):srv
27.702: Pe(1):list(2305)
27.706: Pe(1):srv(2305,'Serp Altis Life || SWE ||',623191333)
27.719: Pe(0):cli
27.731: 15:18:30 BattlEye Server: Initialized (v1.194)
27.733: 15:18:30 Host identity created.
27.735: InitSteamServer failed!
43.477: Ch(0):st(BW:250,250,0,250,250,0,0,G:3,0/0,0,-1.00,0/0,0,-1.00,0,0,Q:0/0/0,R0.00-0.00,0-0,0-0)
43.878: Ch(1):st(BW:250,250,0,250,250,0,0,G:3,0/0,0,-1.00,0/0,0,-1.00,0,0,Q:0/0/0,R0.00-0.00,0-0,0-0)-
theRadAleks
- This is my homepage

- Posts: 204
- Joined: Wed Feb 19, 2014 6:07 pm
- Location: Dallas, TX
Re: ArmA 3 Altis life server issues
Your missing this in your config
Code: Select all
steamQueryPort = 27016;-
Caliban55
- This is my homepage

- Posts: 439
- Joined: Sat Sep 04, 2010 10:20 am
- Location: Cologne, Gemany
- Contact:
Re: ArmA 3 Altis life server issues
The Steam query port is hard coded into the game since version 1.22 (always game port +1), any changes to this in the server.cfg are ignored (as a result, not a required setting). The steamPort= is still required though.
There is still some info missing:
1) Your server .RPT file, the netlog file is not useful for this
2) your mod= start-up parameter
Please also check the following:
- Does the server start with a default mission
- Is the database server/connection working
- Are all key files (for mods/Add-Ons) installed in the \keys folder, so that players can connect
Recommended: Please try to start the server without using TADST, this will only add a layer of complication to find out why you can't connect to the server. Start the server with the collowing command:
arma3server.exe -cfg=YOUR_SERVER_CFG_FILE -mod=YOUR_MODS
There is still some info missing:
1) Your server .RPT file, the netlog file is not useful for this
2) your mod= start-up parameter
Please also check the following:
- Does the server start with a default mission
- Is the database server/connection working
- Are all key files (for mods/Add-Ons) installed in the \keys folder, so that players can connect
Recommended: Please try to start the server without using TADST, this will only add a layer of complication to find out why you can't connect to the server. Start the server with the collowing command:
arma3server.exe -cfg=YOUR_SERVER_CFG_FILE -mod=YOUR_MODS