Team Speak 3 Custom Configurations

Hari

Active Member
Dec 11, 2015
3
1
75
I am newbie to teamspeak 3 but trying to learn every dimension of it, I tried searching the forum but couldn't find a accurate answer for my question or I think I missed out some of them. Is it possible to start a TS3 server with custom query, file port ,etc ( i.e the whole configuration entered from a txt file which will be emulated on server start ) ?
 

Alligatoras

Administrator
Mar 31, 2016
2,570
12
2,857
381
I am newbie to teamspeak 3 but trying to learn every dimension of it, I tried searching the forum but couldn't find a accurate answer for my question or I think I missed out some of them. Is it possible to start a TS3 server with custom query, file port ,etc ( i.e the whole configuration entered from a txt file which will be emulated on server start ) ?
If i understood correctly, are you looking for a script to autostart your teamspeak 3 server on your vps boot?
 

Hari

Active Member
Dec 11, 2015
3
1
75
Sorry if am confusing you !!
I need the server to start in the sense initialize with custom query port. For example when installing the server itself it should have custom ports.
 

Alligatoras

Administrator
Mar 31, 2016
2,570
12
2,857
381
Sorry if am confusing you !!
I need the server to start in the sense initialize with custom query port. For example when installing the server itself it should have custom ports.
Correct, Teamspeak 3 Default query port is 10011. You can change that!
For windows:

Open a shell dos (in windows : Start => Run and write "cmd" or more simple press key "window+R")
- You obtain a black window, this a dos (shell) window
- Now go on your server folder

an example:
Code:
cd d:\teamspeak\server\beta-29
- Now start your server with the query 52120 (for example)

Code:
ts3server_win32.exe query_port=52120
that's all.

For Linux:

I really don't know...but also didn't find something useful as i did some search :(
 

DifferentUser

Member
Feb 19, 2016
53
23
58
On Linux its easy:
You will need to create a inifile for the ts3server > you just start the ts3server with the parameter createinifile=1
this will create the file ts3server.ini in your teamspeaks root directory listed with every parameter available

and then open up the ts3server_startsrcript.sh an on Line 5 where it says
COMMANDLINE_PARAMETERS="${2}"
add the parameter inifile=ts3server.ini
so it would look like this
COMMANDLINE_PARAMETERS="inifile=ts3server.ini ${2}"

so with every start it should now use the ts3server.ini with its configurations
 
Top