Ok, i try to write it step by step.
1. go to your database and create a new database
2. create an db account specially for this new db
3. Go to your TS3 server folder and create e new file,
call it ts3db_mysql.ini and put this code into:
Code:
[config]
host=<your host>
username=<username>
password=<password>
database=<db name>
Fill it out with your database informations. don't type the <>
4. In your TS3 folder create a new file, call it ts3_server and put
this code into:
Code:
#!/bin/bash
DIR="/etc/ts3_server"
case "$1" in
start)
cd ${DIR}
${DIR}/ts3server_linux_x86 dbplugin=ts3db_mysql
;;
stop)
killall ts3server_linux_x86
;;
*)
echo "Usage: 'basename $0' {start|stop}">&2
exit 42
;;
esac
exit 0
5. start your server with this command
Code:
./ts3server_linux_x86 dbplugin=ts3db_mysql dbsqlcreatepath=create_mysql/
Now the database tables will be created.
From now, you can start and stop your server with this commands:
I hope you all understand my english mismatch ;-)
P.S.: If the database tables are not created, go into your ts3-server_linux-x86\sql\create_mysql
folder. There you will find create_tables.sql which you can directly import in your database