screen -A -m -d -S ts3 ./ts3server_linux_amd64 hab es so gemacht
Beiträge von Lemminator
-
-
-
hat es einer mit screen gestartet bekommen ???
-
j habs gefunden er schreibt dir ein token (in putty) diesen code musst du dann unter token benutzen eintragen und schon haste alle rechte
-
ah ok wie kan ich dann als serveradmin administrieren ?? lool bin glaub ich gerad e bisse überfragt
-
hallo kennst du die ports ?? damit ich auf die oberfläche komm zum einstellen ??
also ich hab schon mal udp 9987 und tcp 10011
hast du da noch was an ports ??
-
wo haste es gedownloadet ??
-
Hallo
da ich ha ein cod5 server mit mam wunderbar zum laufen bekommen habe wollt ich dies mit cod4 machen . installation ging ohne probleme .
Linux Debian Lenny php5 installiert sowie mysql und sqlite
Nun ./startscript start ging ... nun bin ich auf den server ...kein manuadminmod läuft
habe :/startscript debug ausgeführt da hatte ich keine fehlermeldungZitat[19.12.09 12:06:58] Notice: ==========================================
[19.12.09 12:06:58] Notice: Manu-Admin-Mod v0.10.1 beta is starting...
[19.12.09 12:06:58] Notice: ==========================================
[19.12.09 12:06:58] Notice: !! Please wait until the mod is completely initialised
[19.12.09 12:06:58] Notice: Config loaded: config.cfg
[19.12.09 12:06:58] Notice: Config loaded: maps.cfg
[19.12.09 12:06:58] Notice: Config loaded: admins.cfg
[19.12.09 12:06:58] Notice: Config loaded: groups.cfg
[19.12.09 12:06:58] Notice: Language files loaded: de
[19.12.09 12:06:58] Notice: All config files were parsed
[19.12.09 12:06:58] Notice: RCON connection established (+++++++++++++++)
[19.12.09 12:06:59] Notice: Game detected: Call of Duty 4
[19.12.09 12:07:00] Notice: Dvar check successful
[19.12.09 12:07:00] Notice: Synced playerlist with 'status'
[19.12.09 12:07:01] Notice: Updated Dvar g_gametype
[19.12.09 12:07:02] Notice: Updated teamnames (sas vs. ussr)
[19.12.09 12:07:02] Notice: Sets Dvar _manuadminmod to '0.10.1 beta'
[19.12.09 12:07:02] Notice: == Loading plugins and commands ==
[19.12.09 12:07:02] Notice: - Loading logkickbans.php
[19.12.09 12:07:02] Notice: - Loading weaponrestrictions.php
[19.12.09 12:07:02] Notice: - Loading tcp_query.php
[19.12.09 12:07:03] Notice: - Loading punkbuster.php
[19.12.09 12:07:03] Notice: - Loading welcomemessages.php
[19.12.09 12:07:03] Notice: - Loading basiccommands.php
[19.12.09 12:07:03] Notice: - Loading spreemessages.php
[19.12.09 12:07:03] Notice: - Loading statistics.php
[19.12.09 12:07:03] Notice: - Loading warns.php
[19.12.09 12:07:03] Notice: - Loading banner.php
[19.12.09 12:07:03] Notice: - Loading badwords.php
[19.12.09 12:07:03] Notice: - Loading randommapcycle.php
[19.12.09 12:07:03] Notice: Randommapcycle: Setting nextmap to mp_backlot (koth)
[19.12.09 12:07:05] Notice: Set Dvar sv_maprotationcurrent to 'gametype koth map mp_backlot'
[19.12.09 12:07:05] Notice: - Loading antiteamkiller.php
[19.12.09 12:07:05] Notice: - Loading voting.php
[19.12.09 12:07:05] Notice: - Loading modstuff.php
[19.12.09 12:07:05] Notice: Heartbeat has been sent to serverlist at manuadminmod.de: Couldn't resolve hostname
[19.12.09 12:07:05] Notice: - Loading nameprotection.php
[19.12.09 12:07:05] Notice: - Loading funmessages.php
[19.12.09 12:07:05] Notice: - Loading pingkicker.php
[19.12.09 12:07:05] Notice: == Finished loading plugins and commands
[19.12.09 12:07:06] Notice: !! Finished initialisation
[19.12.09 12:07:06] Notice: === Start processing loglines... ===
[19.12.09 12:07:06] Notice: Banner message was sent: ^2This Server is running Manu-Admin-Mod ^1v0.10.1 betanun hab ich hier gegooglt im forum
hab diesen befehl eingegeben usr/bin/php5 -f daemon.php cfg
da erhalt ich diesen fehler !ZitatManu-Admin-Mod v0.10.1 beta Copyright (C) 2008-2009 Manuel Kress
This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it under certain conditions.
Visit http://manuadminmod.de if you have any troubleError in command line parameters: Unrecognized part 'cfg'root@File-Server:/home/cod4/cod4/adminmod
kann mir jemand dabei helfen weiss echt im moment net weiter ??
Spoiler anzeigen
#!/bin/sh
# STARTSCRIPT by Hool and manu
# Much thanks to him
#
# If you have any problems, visit manuadminmod.de
# or contact manuel.strider@web.de
#
#============================
#
#=========
# CONFIG
#=========
#
# Name of process
# Unique for each mod installation
#=================================
NAME=mam
#Default: NAME=ManuAdminMod_1
#
# Basedir to adminmod installation:
#==================================
DIR=/home/cod4/cod4/adminmod
#Example: DIR=/var/games/cod4/adminmod
#
# Path to config directory
#=========================
CFGDIR=cfg
#Default: CFGDIR=config
#
# Path to log directory
#======================
LOGDIR=log
#Default: LOGDIR=log
#
# Additional parameters for the mod (e.g. -force)
#================================================
PARAMS=""
#Default: PARAMS=""
#
# Path to php-binary
# Normally only 'php'
#===================
PHP=php
Php=/usr/bin/php
#Example: PHP=/usr/local/bin/php
#
# Parameters for PHP (only for versed user)
#==========================================
PHPPARAMS="-f"
#Default: PARAMS="-f"
#
#==================================
# DO NOT EDIT STH BELOW THIS LINE
#==================================# -------------------------------------------------------------------
case "$1" in
start)
if [[ `screen -ls |grep $NAME` ]]
then
echo "Error: $NAME is already running, use '$0 stop' to stop it"
else
cd $DIR
screen -dmS $NAME $PHP $PHPPARAMS daemon.php -- -configdir "$CFGDIR" -logdir "$LOGDIR" $PARAMS
echo "$NAME was started. If you have problems try '$0 debug'"
fi
;;
stop)
if [[ `screen -ls |grep $NAME` ]]
then
kill `screen -ls |grep $NAME |awk -F . '{print $1}'|awk '{print $1}'`
echo "$NAME was stopped"
elseSpoiler anzeigen
debuglogfile
Logpos is: 1968
Line read: Finished reading
[spoiler]Modlog
0:00 [19.12.09 12:06:58] Notice: ==========================================
0:00 [19.12.09 12:06:58] Notice: Manu-Admin-Mod v0.10.1 beta is starting...
0:00 [19.12.09 12:06:58] Notice: ==========================================
0:00 [19.12.09 12:06:58] Notice: !! Please wait until the mod is completely initialised
0:00 [19.12.09 12:06:58] Notice: Config loaded: config.cfg
0:00 [19.12.09 12:06:58] Notice: Config loaded: maps.cfg
0:00 [19.12.09 12:06:58] Notice: Config loaded: admins.cfg
0:00 [19.12.09 12:06:58] Notice: Config loaded: groups.cfg
0:00 [19.12.09 12:06:58] Notice: Language files loaded: de
0:00 [19.12.09 12:06:58] Notice: All config files were parsed
0:00 [19.12.09 12:06:58] Notice: RCON connection established (88.134.158.95:20800)
0:00 [19.12.09 12:06:59] Notice: Game detected: Call of Duty 4
0:00 [19.12.09 12:07:00] Notice: Dvar check successful
0:00 [19.12.09 12:07:00] Notice: Synced playerlist with 'status'
0:00 [19.12.09 12:07:01] Notice: Updated Dvar g_gametype
0:00 [19.12.09 12:07:02] Notice: Updated teamnames (sas vs. ussr)
0:00 [19.12.09 12:07:02] Notice: Sets Dvar _manuadminmod to '0.10.1 beta'
0:00 [19.12.09 12:07:02] Notice: == Loading plugins and commands ==
0:00 [19.12.09 12:07:02] Notice: - Loading logkickbans.php
0:00 [19.12.09 12:07:02] Notice: - Loading weaponrestrictions.php
0:00 [19.12.09 12:07:02] Notice: - Loading tcp_query.php
0:00 [19.12.09 12:07:03] Notice: - Loading punkbuster.php
0:00 [19.12.09 12:07:03] Notice: - Loading welcomemessages.php
0:00 [19.12.09 12:07:03] Notice: - Loading basiccommands.php
0:00 [19.12.09 12:07:03] Notice: - Loading spreemessages.php
0:00 [19.12.09 12:07:03] Notice: - Loading statistics.php
0:00 [19.12.09 12:07:03] Notice: - Loading warns.php
0:00 [19.12.09 12:07:03] Notice: - Loading banner.php
0:00 [19.12.09 12:07:03] Notice: - Loading badwords.php
0:00 [19.12.09 12:07:03] Notice: - Loading randommapcycle.php
0:00 [19.12.09 12:07:03] Notice: Randommapcycle: Setting nextmap to mp_backlot (koth)
0:00 [19.12.09 12:07:05] Notice: Set Dvar sv_maprotationcurrent to 'gametype koth map mp_backlot'
0:00 [19.12.09 12:07:05] Notice: - Loading antiteamkiller.php
0:00 [19.12.09 12:07:05] Notice: - Loading voting.php
0:00 [19.12.09 12:07:05] Notice: - Loading modstuff.php
0:00 [19.12.09 12:07:05] Notice: Heartbeat has been sent to serverlist at manuadminmod.de: Couldn't resolve hostname
0:00 [19.12.09 12:07:05] Notice: - Loading nameprotection.php
0:00 [19.12.09 12:07:05] Notice: - Loading funmessages.php
0:00 [19.12.09 12:07:05] Notice: - Loading pingkicker.php
0:00 [19.12.09 12:07:05] Notice: == Finished loading plugins and commands
0:00 [19.12.09 12:07:06] Notice: !! Finished initialisation
0:00 [19.12.09 12:07:06] Notice: === Start processing loglines... ===
0:00 [19.12.09 12:07:06] Notice: Banner message was sent: ^2This Server is running Manu-Admin-Mod ^1v0.10.1 beta
0:00 [19.12.09 12:09:08] Notice: Banner message was sent: ^2Next map is: ^7Backlot (Hauptquartier)
gruss lemmi -
hi dennis :hallo:
weiss nicht wie oft ich jetzt euer forum durchsucht habe . Für den ersten Fehler wo ich hatte hab ich fast alle beiträge durchgelesen und dann die vorschläge ausprobiert . Das das problem bei Cod5 mit dieser nummer ist hab ich nicht gefunden /oder überlesen. Aber mal ehrlich wenn ich nach der anleitung in wiki geh (hab i auch gemacht) , dann müsste jeder diesen fehler bekommen weil dort steht connct. auf en server gib /pb_myguid an und schon bekommste die guid die ich zuerst eingetragen habe.
Deswegen Foren suche hilft .... fand den satz jetzt net so toll . dies soll jetzt net falsch rüber komme aber vielleicht mal darüber nachdenken warum es so weit gekomme is . aber gut schwamm drüber denke ihr habt auch genug zu tun ........
ich find eueren admin mod übrigends erste sahne
gruss lemmi -
Also die zehnstellige zahl im mod.log is die zahl die man benutzen sollte für Cod5 und nicht den pb guid da man sonst immer gekickt wird .
hoffe ihr ändert es noch auf der wiki seite bei euch
gruss lemmi -
jepp od einer werd es dann mal ausprobieren
gruss lemmi -
hei in der mod.l0og steht aber nur ne 10 stellige zahl reicht die aus ??
soll ich diese dann in der admin.cfg als guid nummer eintragen??
gruss lemmi -
hi hab jetzt ein neues problem .
bei der admin cfg steht ja miene pb id drin hab ich rausgefunden mit pb/myguid
nun wenn ich connecten will werd ich immer von punkbuster gekickt fehler meldung is die wo ich als thema verwendet hab .
hab jetzt schon mehrmals nach meiner id geschaut is immer dieselbe und ein schreibfehler kann ich nun auch auschließen nach dem ich diese guid 5 mal durchgelsen und verglichen hab :haue:
habt ihr einen tipp
gruss lemmi -
ok ich hab dann meinen fehler gefunden
einfach den config ordner in cfg umbennen -
hi
also ich hab mir nun fast alle beiträge durchgelsen und auch mit meinen einstellungen verglichen aber leider funkt. es bei mir nicht so wie bei andern .
Ich habe einen Linux Debian/lenny laufen . Php is alles aktuell
Hab alles soweit nach anleitung gemacht
konnte /.startscript ausführen ging -- auf server !admintest eingegeben--- ging nicht
nun fand ich ja das mit diesem befehl /usr/bin/php -f daemon.php cfg
dann bekomm ich diese fehler meldungZitat[30.06.09 10:31:09] Notice: ==========================================
[30.06.09 10:31:09] Notice: Manu-Admin-Mod v0.9.2 beta is starting...
[30.06.09 10:31:09] Notice: ==========================================
[30.06.09 10:31:09] Notice: !! Please wait until the mod is completely initialised
[30.06.09 10:31:09] !! Error: Couldn't find config dir: cfg
10s to quitmeine startscript sieht so aus
Zitat#!/bin/sh
# STARTSCRIPT by Hool and manu
# Many thanks to him
#
# If you have any problems, visit manuadminmod.de
# or contact manuel.strider@web.de
#
#============================
#
#=========
# CONFIG
#=========
#
# Name of process
# Unique for each mod installation
#================
NAME=mam
#Default: NAME=ManuAdminMod_1
#
# Basedir to adminmod installation:
#==================================
DIR=/home/codww/codww/adminmod
#Example: DIR=/var/games/cod4/adminmod
#
# Path to config directory
#=========================
cfgdir=configcod5
#Default: CFGDIR=Config_
#
# Path to log directory
#======================
LOGDIR=log
#Default: LOGDIR=log
#
# Path to php-binary
# Normally only 'php'
#===================
PHP=php
PHP=/usr/bin/php
#
# Parameters for PHP (only for versed user)
#==========================================
PARAMS="-f"
#Default: PARAMS="-f"
#
#==================================
# DO NOT EDIT STH BELOW THIS LINE
#==könnt ihr mir weiterhelfen
im vorraus danke gruss lemmi