Skocz do zawartości
  • 👋 Witaj na MPCForum!

    Przeglądasz forum jako gość, co oznacza, że wiele świetnych funkcji jest jeszcze przed Tobą! 😎

    • Pełny dostęp do działów i ukrytych treści
    • Możliwość pisania i odpowiadania w tematach
    • System prywatnych wiadomości
    • Zbieranie reputacji i rozwijanie swojego profilu
    • Członkostwo w jednej z największych społeczności graczy

    👉 Dołączenie zajmie Ci mniej niż minutę – a zyskasz znacznie więcej!

    Zarejestruj się teraz

xGuard

Rekomendowane odpowiedzi

Opublikowano

<

<

<

<

<

<

<

<

<

<

<

 

 

 

 

 

 

Witam , chciałbym wam przedstawić jak zainstalować serwer TeamSpeak na swojej maszynie Dedykowanej/VPS, wiem że jest dużo owych poradników ale mimo to chciałbym wam przedstaw ić owy Poradnik.

 

To co? Ruszamy!

 

1. Łączymy się do naszej Maszyny przez SSH, jak się połączyć? Pobierz program do łączenia się przez SSH ja osobiście wybrałem PuTTY

 

2. Gdy już się zalogowaliśmy do owej maszyny wykonujemy następujące Komendy

apt-get update && apt-get upgrade -y

Co owe Komendy robią? apt-get update "update" aktualizuje listę dostępnych pakietów. A "upgrade" za to instaluje najnowsze wersje pakietów.

 

3. Gdy już owe Aktualizacje zakończyliśmy, możemy zacząć zabawę w Instalacje Serwera

cd /home
wget http://dl.4players.de/ts/releases/3.0.13.4/teamspeak3-server_linux_amd64-3.0.13.4.tar.bz2
tar xjvf teamspeak3-server_linux_amd64-3.0.13.4.tar.bz2
rm -r teamspeak3-server_linux_amd64-3.0.13.4.tar.bz2
cd teamspeak3-server_linux_amd64

Ale Kacper co robią te komendy?

 

 cd /home | Zmieniasz katalog n.p z root do home.

 

 wget | Jest to narzędzie do ściągania plików z internetu.

 

 tar xjvf | " uniksowy program do umieszczania grupy plików w jednym zbiorczym pliku (tzw. archiwum), który następnie może zostać skompresowany programami gzip, bzip2, compress lub lzma, co daje odpowiednio pliki .tar.gz (w skrócie .tgz), .tar.bz2, .tar.Z, i .tar.lzma. " Niestety tekst zaczerpnięty z google

 

 rm -r | Usuwasz dany Plik/Katalog.

 

4. Dobrze więc serwer mamy już na naszej Maszynie teraz wywołujemy dane komendy:

./ts3server_startscript.sh start
./ts3server_startscript.sh stop

5. Kopiujemy sobie dokładnie tą Linijkę:

 loginname= "serveradmin", password= "TutajBędzieJakieśHasło!"

Te dane będą praktycznie wymagane przy Instalacji botów lub nadawania sobie najwyższych uprawnień!

tylko pamiętacie że u was będzie to inaczej wyglądało niż u mnie! Co jest raczej oczywiste

 

Dobrze, ale mam jeszcze jakieś inne linijki co znimi?

a no zapewne masz jeszcze ową Linijke:

token=HdIq4yc0e2EyDdp84sXw7U6z6CxsMFK5UzrftFgD

A to jest owy kod do nadania sobie rangi Server Admin po wejściu pierwszy raz na serwer!

 

6. Jest to opcja opcjonalna ale mimo to przeze mnie polecana.

Dobrze a więc tworzymy nowy Plik w katalogu gdzie jest nasz serwer!

nano ts3server.ini

Co to jest za komenda nano? | Najprościej mówiąc jest to Notatnik/Edytor Plików.

 

Następnie wklejamy tam owy kod który znajdziecie w Spoilerze!

 

 

 

#The path of the *.ini file to use.
inifile=ts3server.ini

# The Voice IP that your Virtual Servers are listing on. [UDP] (Default: 0.0.0.0)
voice_ip=0.0.0.0
# The Query IP that your Instance is listing on. [TCP] (Default: 0.0.0.0)
query_ip=0.0.0.0
# The Filetransfer IP that your Instance is listing on. [TCP] (Default: 0.0.0.0)
filetransfer_ip=0.0.0.0

# The Voice Port that your default Virtual Server is listing on. [UDP] (Default: 9987)
default_voice_port=9987
# The Query Port that your Instance is listing on. [TCP] (Default: 10011)
query_port=10011
# The Filetransfer Port that your Instance is listing on. [TCP] (Default: 30033)
filetransfer_port=30033

# I don't really know for what this is. (Default: )
machine_id=

# Path to a list of Query IP's never allowed to connect. (Default: query_ip_blacklist.txt)
query_ip_blacklist=query_ip_blacklist.txt
# Path to a list of Query IP's always allowed to connect and flood. (Default: query_ip_whitelist.txt)
query_ip_whitelist=query_ip_whitelist.txt

# Path to a valid license.dat. (Default: )
licensepath=

# How many days inactive clients without a server group should stay in the database. (Default: 30)
dbclientkeepdays=30
# How many connections to the database are open at the same time. (Default: 10)
dbconnections=10
# How many threads (processes) the server uses for UDP connections. [Must be between 1 and 30] Found in the server binary. (Default: )
threads_voice_udp=30
# Seems to not have any effect, set or unset. Found in the server binary.(Default: )
threads_query_tcp=

# Which database plugin to use. Possible Values: {ts3db_sqlite3|ts3db_mariadb|ts3db_mysql} (Default: ts3db_sqlite3)
dbplugin=ts3db_sqlite3
# Extra parameters for the choosen database plugin. (Default: )
dbpluginparameter=
# Path to the SQL scripts. (Default: sql/)
dbsqlpath=sql/
# Path to the SQL install scripts. (Default: create_sqlite/)
dbsqlcreatepath=create_sqlite/

# How long a log line should stay in the database. (Default: 90)
dblogkeepdays=90
# If the server should append to old logs instead of creating new ones. (Default: 0)
logappend=0
# Path to log files. (Default: logs)
logpath=logs
# If Query commands should be logged on the instance log. (Default: 0)
logquerycommands=0

# If enabled it works like every query ip would be on the query_ip_whitelist. (Default: 0)
query_skipbruteforcecheck=0

# Temporary overrides the Admin Server Query Password. (Default: )
serveradmin_password=

# Stops the "Password/Token" Dialog from appearing on database creation. (Windows only) (Default: 0)
no_password_dialog=0
# The server will open a cmd window on start. (Windows only) (Default: 0)
open_win_console=0

# Untested, found in the server binary.  (Default: )
logs=
# Untested, found in the server binary.  (Default: 1)
create_sqlite=1

# Untested, found in the server binary.  (Default: 0)
no_permission_update=0
# Completely resets the database on every start while enabled. (Default: 0)
clear_database=0
# Wether or not create a virtual server on default_voice_port on database setup. (Default: 1)
create_default_virtualserver=1

# Creates a default ts3server.ini in the server directory on server start. (Default: 0)
createinifile=0

 

Gdy już wkleiliśmy dany kod edytujemy linijki takie jak

query_port=10011 | Na jakieś dowolne numerki! (Oczywiście nie 12345 hehe)
filetransfer_port=30033 | Nie jest to jakoś wymagane do edycji ale mimo to polecam to także zmienić! :>

7. Edytujemy plik startowy!

nano ts3server_startscript.sh

oraz zmieniamy z owej Linijki:

COMMANDLINE_PARAMETERS="${2}" #add any command line parameters you want to pass here

Na:

COMMANDLINE_PARAMETERS="${2} inifile=ts3server.ini" #add any command line parameters you want to pass here

8. Gotowe!! Startujemy serwer!!

./ts3server_startscript.sh start

Dlaczego stworzyłem owy Poradnik? Ponieważ byłem kiedyś sam zielony w te sprawy i chciałem pomóc trochę Użytkownikom Internetów :D

@Edit

Uebało mi 7 oraz 8 :< Ale juz jest :D

­

Opublikowano

 

Witam , chciałbym wam przedstawić jak zainstalować se rwer TeamSpeak na sw ojej maszynie Dedykowanej/VPS, wiem że jest dużo owych poradników ale mimo to chciałbym wam przedstaw ić owy Poradnik.

 

Swojej*

Przestawić nowy*

 

Warto poprawic ;p ?

 

Gratki za poradnik. Troche inny jest od pozostach i nie jest taki sam ... like za same checi i wiecej poradnikow kolego;]

Chcesz żeby szybko ci odpowiedział ?

-Napisz @zxkalen

Pomogłem ci ?

-Zostaw Like

 

76561198043616385.png

Opublikowano

Przyda sie nowym osobom, ktore chca/ beda chcialy 'powstawic' ts'a.

Zazwyczaj jestem dostepny 24/7, zdarzaja sie male przerwy :D 

 

Pomoglem/ spodobala Ci sie Moja wypowiedz ? Daj like B)

Opublikowano

fajny poranik jak bede mogl to dam plusa :D

 

 

 

Witam , chciałbym wam przedstawić jak zainstalować se rwer TeamSpeak na sw ojej maszynie Dedykowanej/VPS, wiem że jest dużo owych poradników ale mimo to chciałbym wam przedstaw ić owy Poradnik.

 

Swojej*

Przestawić nowy*

 

Warto poprawic ;p ?

 

Gratki za poradnik. Troche inny jest od pozostach i nie jest taki sam ... like za same checi i wiecej poradnikow kolego;]

 

Gotowe :>

 

Dobry poradnik,

plusik za wytłumaczenie co, gdzie i jak.

 

Przyda sie nowym osobom, ktore chca/ beda chcialy 'powstawic' ts'a.

Dziękuje za waszą pozytywną ocenę ;)

­

  • 3 miesiące temu...
Opublikowano

Sporo tego jest na tym forum ale może być :3 + za estetyke :P

Zarchiwizowany

Ten temat przebywa obecnie w archiwum. Dodawanie nowych odpowiedzi zostało zablokowane.

×
×
  • Dodaj nową pozycję...