TeamSpeak 3 Server Crack [3.0.13.6] + AccountingServerEmulator + License Key

Status
Not open for further replies.
Joined
Jan 29, 2017
Messages
2
Reaction score
0
Points
33
I know that it was already asked but how can i run it on a 32bit linux computer? There is no other way for me than that. Thx!
 

LeU5er

Security Researcher
Joined
Aug 6, 2016
Messages
448
Reaction score
45
Points
118
I know that it was already asked but how can i run it on a 32bit linux computer? There is no other way for me than that. Thx!
Just download the 32bit-version crack. It should run without problems. If you have any issues, please post them here in this thread.
 
Joined
Jan 29, 2017
Messages
2
Reaction score
0
Points
33
Yes it works well. Sorry I had a little mistake in it. I now installed the anticrashscript and this happend:
./ts3anticrash.sh ts3server
./ts3anticrash.sh: Zeile 7: ps: Kommando nicht gefunden.
./ts3anticrash.sh: Zeile 7: wc: Kommando nicht gefunden.
./ts3anticrash.sh: Zeile 7: grep: Kommando nicht gefunden.
./ts3anticrash.sh: Zeile 7: grep: Kommando nicht gefunden.
./ts3anticrash.sh: Zeile 8: [: -eq: Einstelliger (unärer) Operator erwartet.
./ts3anticrash.sh: Zeile 11: su: Kommando nicht gefunden.
 

LeU5er

Security Researcher
Joined
Aug 6, 2016
Messages
448
Reaction score
45
Points
118
Yes it works well. Sorry I had a little mistake in it. I now installed the anticrashscript and this happend:
./ts3anticrash.sh ts3server
./ts3anticrash.sh: Zeile 7: ps: Kommando nicht gefunden.
./ts3anticrash.sh: Zeile 7: wc: Kommando nicht gefunden.
./ts3anticrash.sh: Zeile 7: grep: Kommando nicht gefunden.
./ts3anticrash.sh: Zeile 7: grep: Kommando nicht gefunden.
./ts3anticrash.sh: Zeile 8: [: -eq: Einstelliger (unärer) Operator erwartet.
./ts3anticrash.sh: Zeile 11: su: Kommando nicht gefunden.
Maybe try to install those packages with this command:
Code:
apt-get update && apt-get install -y procps coreutils ack-grep sudo
Like I said, this script is from Supervisor, I don't take responsibility for this.
 

Freasyx

Member
Joined
Jul 13, 2016
Messages
7
Reaction score
0
Points
33
When I start the TS via the ./ts3server_startscript.sh start command gives me this error:
Code:
 2017-01-30 17:21:38.376588|CRITICAL|VirtualSvrMgr |   |Could not start file manager 258 no network port available
 

LeU5er

Security Researcher
Joined
Aug 6, 2016
Messages
448
Reaction score
45
Points
118
When I start the TS via the ./ts3server_startscript.sh start command gives me this error:
Code:
 2017-01-30 17:21:38.376588|CRITICAL|VirtualSvrMgr |   |Could not start file manager 258 no network port available
With only this line of your TS3-Server log file I can't help you.
Please paste in here a bit more of the log file...
 

Freasyx

Member
Joined
Jul 13, 2016
Messages
7
Reaction score
0
Points
33
With only this line of your TS3-Server log file I can't help you.
Please paste in here a bit more of the log file...
This is log:
ucD73
 

zNeon

Member
Joined
Jan 26, 2017
Messages
6
Reaction score
1
Points
35
Where can i find this file: ts3anticrash.sh
I'm not ready to edit ...
 

LeU5er

Security Researcher
Joined
Aug 6, 2016
Messages
448
Reaction score
45
Points
118

LeU5er

Security Researcher
Joined
Aug 6, 2016
Messages
448
Reaction score
45
Points
118
Where can i find this file: ts3anticrash.sh
I'm not ready to edit ...
You have to create this file with the source which is in the description.
...just follow all steps . . . if you are able to read
 

zNeon

Member
Joined
Jan 26, 2017
Messages
6
Reaction score
1
Points
35
You have to create this file with the source which is in the description.
...just follow all steps . . . if you are able to read

How to make a file to download? I do not understand very well because it is in English ... Using Google translator sometimes does not help much!
 

LeU5er

Security Researcher
Joined
Aug 6, 2016
Messages
448
Reaction score
45
Points
118
How to make a file to download? I do not understand very well because it is in English ... Using Google translator sometimes does not help much!
FIRST STEP
Code:
nano /etc/init.d/ts3anticrash.sh

SECOND STEP
Paste this source in there:
Code:
#!/bin/bash

PATH=/YOUR/TEAMSPEAK3/SERVER/DIRECTORY/PATH
case $1 in
ts3server)
t3server=`ps ax | grep ts3server | grep -v grep | wc -l`
if [ $t3server -eq 1 ]
then exit
else
cd $PATH
./ts3server_startscript.sh start
fi
;;
ts3accounting)
t3accounting=`ps ax | grep AccountingServer | grep -v grep | wc -l`
if [ $t3accounting -eq 1 ]
then exit
else
cd $PATH
./AccountingServerEmulator-Linux
fi
;;
ts3tsdns)
t3tsdns=`ps ax | grep tsdnsserver | grep -v grep | wc -l`
if [ $t3tsdns -eq 2 ]
then exit
else
cd $PATH
screen -AmdS tsdnsserver ./tsdnsserver
fi
;;
esac

THIRD STEP
Code:
crontab -e

FOURTH STEP
Paste these 3 lines in there:
Code:
*/1 * * * * /etc/init.d/ts3anticrash.sh ts3server
*/25 * * * * /etc/init.d/ts3anticrash.sh ts3accounting
*/1 * * * * /etc/init.d/ts3anticrash.sh ts3tsdns

FIFTH & LAST STEP
Code:
/etc/init.d/cron restart
 

zNeon

Member
Joined
Jan 26, 2017
Messages
6
Reaction score
1
Points
35
FIRST STEP
Code:
nano /etc/init.d/ts3anticrash.sh

SECOND STEP
Paste this source in there:
Code:
#!/bin/bash

PATH=/YOUR/TEAMSPEAK3/SERVER/DIRECTORY/PATH
case $1 in
ts3server)
t3server=`ps ax | grep ts3server | grep -v grep | wc -l`
if [ $t3server -eq 1 ]
then exit
else
cd $PATH
./ts3server_startscript.sh start
fi
;;
ts3accounting)
t3accounting=`ps ax | grep AccountingServer | grep -v grep | wc -l`
if [ $t3accounting -eq 1 ]
then exit
else
cd $PATH
./AccountingServerEmulator-Linux
fi
;;
ts3tsdns)
t3tsdns=`ps ax | grep tsdnsserver | grep -v grep | wc -l`
if [ $t3tsdns -eq 2 ]
then exit
else
cd $PATH
screen -AmdS tsdnsserver ./tsdnsserver
fi
;;
esac

THIRD STEP
Code:
crontab -e

FOURTH STEP
Paste these 3 lines in there:
Code:
*/1 * * * * /etc/init.d/ts3anticrash.sh ts3server
*/25 * * * * /etc/init.d/ts3anticrash.sh ts3accounting
*/1 * * * * /etc/init.d/ts3anticrash.sh ts3tsdns

FIFTH & LAST STEP
Code:
/etc/init.d/cron restart
I understand, but I believe that these steps are for linux, and for windows? How do I stop rebooting every 2 hours
 

Freasyx

Member
Joined
Jul 13, 2016
Messages
7
Reaction score
0
Points
33
Can i change ip address of voice server?
I have changed in ts3server.ini but don't work!
 

LeU5er

Security Researcher
Joined
Aug 6, 2016
Messages
448
Reaction score
45
Points
118
I understand, but I believe that these steps are for linux, and for windows? How do I stop rebooting every 2 hours
The full installation tutorial can be found here: https://r4p3.net/threads/teamspeak-...-6-accountingserveremulator-license-key.3473/
It's the first step: "1. Put this in your hosts file!!!"
Please, just read line for line... Is this too much expected today?

Can i change ip address of voice server?
I have changed in ts3server.ini but don't work!
Do you mean that you want to change the default port?
 

zNeon

Member
Joined
Jan 26, 2017
Messages
6
Reaction score
1
Points
35
Hi, I've been able to do everything, but at the time I'm going to save the crontab, it gets an error at the time of the rescue ... How to solve it?
erro: http://prnt.sc/e39ukh
 

LeU5er

Security Researcher
Joined
Aug 6, 2016
Messages
448
Reaction score
45
Points
118
Hi, I've been able to do everything, but at the time I'm going to save the crontab, it gets an error at the time of the rescue ... How to solve it?
erro: http://prnt.sc/e39ukh
Please send the source of your crontab, without that I can't help you.
 

Alii

New Member
Joined
Jan 30, 2017
Messages
1
Reaction score
0
Points
13
You give me all you can shutdown the server I say I can do or what needs changing
 
Status
Not open for further replies.
Top