Teamspeak 3 Server Query

Censor

New Member
Joined
Mar 19, 2018
Messages
1
Reaction score
0
Points
3
So basically my VPS went down randomly and It came back up randomly one server teamspeak server came up from it and I had multiple of servers on my YaTqa and now I can't sign in I get this error

I also forgot my YaTqa password after changing it thinking it would work, is there anyway I can change it?
 

TecWar

Member
Joined
Apr 2, 2017
Messages
6
Reaction score
1
Points
38
Hi, you can change Query pw: (linux)
  1. Open up terminal/bash.
  2. cd to your TS3 server folder
  3. Stop your server (Choose the one that fits your situation)
  4. Code:
    ./ts3server_startscript.sh stop
  5. Open ts3server_startscript.sh with your favorite text editor and replace the this code....
    Code:
    COMMANDLINE_PARAMETERS=""
    with this code
    This step is not necessary if you already have COMMANDLINE_PARAMETERS="$2". They must have updated their startup script
    Code:
    COMMANDLINE_PARAMETERS=$2
  6. Save your changes.
  7. Go back to your command line and put this in
    Code:
    ./ts3server_startscript.sh start serveradmin_password=passwordhere
  8. Change the green highlighted text to the password you want
  9. You have changed your serveradmin password!
Copied from here
 

virgme

VIP
Joined
Dec 9, 2016
Messages
11
Reaction score
0
Points
38
if you want to change passwd to ts3 use tis commands
./ts3server_minimal_runscript.sh createinifile=1
./ts3server_minimal_runscript.sh inifile=ts3server.ini serveradmin_password=newpasswdhere
 
Top