Community Forums Today's Posts     Member List     Archive    
Results 1 to 4 of 4
  1. #1
    Join Date
    Aug 2002
    Location
    Philly
    Posts
    47

    Think we found a workaround to the room db getting lost

    Ok. My TSS host, FastAttack of www.fastattack.org hosting, thinks we found a way to get TSS to remember the room info on restart.

    When creating a new room besides regging it set it as "Default" and then create it and move on to your next room.

    We have tried this successfully several times and each time the rooms all came back up after a restart.

    Now, if we can just get it to remember the user db were set :P

  2. #2
    FastAttack Guest

    I want to add

    I don't use the tss.minimal start but I use a modified Niels Werensteijn tss.sh

    I am going to put it up here.

    Code:
     
    #! /bin/bash
    # Copyright (c) 2001 TeamSpeak team All rights reserved.
    #
    # Author: Niels Werensteijn 2001
    # Modded by : Fastattack
    # /etc/init.d/tss.sh
    #
    ### BEGIN INIT INFO
    # Provides: tss
    # Required-Start: $network
    # Required-Stop:
    # Default-Start: 3 5
    # Default-Stop:
    # Description: FastAttack
    ### END INIT INFO
    
    
    cd /home/tss
    
    if [ "$UID" = "0" ]; then
    
    exec "su" - tss -c "/home/tss/tss.sh $1"
    
    fi
    
    
    case "$1" in
    start)
    echo Starting FastAttack Team Sound Server Daemon
    /home/tss/server_linux -PID=/home/tss/tss2.pid > /dev/null
    echo FastAttack Server Daemon successfully started!!
    ;;
    stop)
    echo Stopping FastAttack Server Daemon
    kill -TERM `cat /home/tss/tss2.pid`
    sleep 10
    killall -9 server_linux
    echo FastAttack Server Daemon Succesfully stopped.
    ;;
    restart)
    $0 stop && $0 start
    ;;
    *)
    echo "Usage: $0 {start|stop|restart}"
    exit 1
    esac
    exit 0

  3. #3
    Join Date
    Aug 2002
    Location
    Philly
    Posts
    47
    Nobody is posting back, did this help anyone else?

  4. #4
    Join Date
    Nov 2002
    Location
    Germany
    Posts
    5
    Did not help on my Win2k server... all channels were gone after reboot (except of course the std one).

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. TS Connection Problem
    By 2pr in forum [TeamSpeak 2] Client Support
    Replies: 27
    Last Post: 21-11-2009, 09:33
  2. No Sound
    By tank464 in forum [TeamSpeak 2] Client Support
    Replies: 20
    Last Post: 18-11-2009, 19:16
  3. MySQL startup error: SQL files not found
    By winetown in forum [TeamSpeak 2] Server Support
    Replies: 6
    Last Post: 05-06-2008, 07:43
  4. No reply from server.... PLEASE HELP
    By Stratician in forum [TeamSpeak 2] Client Support
    Replies: 2
    Last Post: 02-05-2007, 18:48
  5. Timeout nach 30 Sekunden
    By NNNChef in forum [TeamSpeak 2] Client Support
    Replies: 0
    Last Post: 09-01-2006, 21:05

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •