When deploying a Teamspeak3 server one thing that is vital for the first time startup is to make a note of the privilege key, but what do you do if for some reason you didn’t write it down?
In this article I will show you how to retrieve it!
- Login to your Teamspeak3 server
-
Connect to SQL: <pre class="lang:default decode:true">mysql -uyouruser -p</pre>
-
Select your TS3 Database: <pre class="lang:default decode:true " >USE <DatabaseName>;</pre>
-
Sleect the Tokens Table: <pre class="lang:default decode:true " >SELECT * FROM tokens;</pre>
- You should see a privilege key copy this (token_key) column
Its as simple as that! the privilege key can only be used once, when it has been used it will be removed from the tokens table.