• Hey Guest, we're evolving the future of TeaSpeak.
    You're invited to join the discussion here!

Server Overview of Commandline Parameters

F4te

Active member
Hello everyone,

i am looking for an overview or a list, how and what i can add as commandline parameters.

kind regards
F4te
 

F4te

Active member
awesome, now i have no problem with configs anymore :)

@WolverinDEV
I would recommend adding the commandline parameters to teastart_minimal.sh and tealoop.sh
like so:
teastart_minimal.sh
Code:
[....]

export LD_LIBRARY_PATH="$LD_LIBRARY_PATH;./libs/"
export LD_PRELOAD="./libs/libjemalloc.so.2"

./TeaSpeakServer $@
#Cleanup & reset the terminal
stty cooked echo
tealoop.sh
Code:
#!/usr/bin/env bash

while true;
do
    ./teastart_minimal.sh $@
    c=5
[....]