How can I specify the serveradmin_password and inifile in the same command on TS3 Server

Hello, How can I change the serveradmin password and specify the ini file at the same command on the ubuntu linux server start.

I tried;
./ts3server_startscript.sh start serveradmin_password=MYSECRETPW inifile=ts3server.ini
./ts3server_startscript.sh start inifile=ts3server.ini serveradmin_password=MYSECRETPW

:dotted_line_face:

Or put the password parameter into the ini file

2 Likes

Like this?

machine_id=
default_voice_port=9987
voice_ip=
licensepath=
filetransfer_port=30033
filetransfer_ip=
query_port=10011
query_ip=0.0.0.0, ::
query_ip_whitelist=query_ip_whitelist.txt
query_ip_blacklist=query_ip_blacklist.txt
dbplugin=ts3db_sqlite3
dbpluginparameter=
dbsqlpath=sql/
dbsqlcreatepath=create_sqlite/
dbconnections=10
logpath=logs
logquerycommands=0
dbclientkeepdays=30
logappend=0
query_skipbruteforcecheck=0
serveradmin_password=MYSECRETPW

Yes looks good. Then you only need the inifile=ts3server.ini parameter on start.

2 Likes

Okey, thank you!