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:
mysql -uyouruser -p
- Select your TS3 Database:
USE <DatabaseName>;
- Sleect the Tokens Table:
SELECT * FROM tokens;
- 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.