PWI Server 1.5.1 Could not log in to Server

Results 1 to 8 of 8
  1. #1
    Apprentice Schaumalan is offline
    MemberRank
    Feb 2013 Join Date
    15Posts

    Support PWI Server 1.5.1 Could not log in to Server

    Hello Friends.





    As you can see above, this is my problem.
    I hope that you can find the error to me. I have several posts to
    but unfortunately still no searches found this error. Maybe it's also the
    English language.

    I think that it is perhaps at this one:
    "o log on to the character start location is62.."

    If this is the error, where can I change this please?

    Or are there other sources of error?

    Please excuse the language :-)

    Thanks for the help.


  2. #2
    .#!/bin/bash sora1984 is offline
    MemberRank
    Feb 2011 Join Date
    127.0.0.1Location
    387Posts

    Re: PWI Server 1.5.1 Could not log in to Server

    Start the map is62... with pw admin.
    Or change the map start section in your start script to something like:

    Code:
     
    
    PW=home
    cd /$PW/gamed/
    for map in gs01 is62
    do
       echo "Loading $map"
       ./gs $map > /$PW/logs/$map.log &
       sleep 1; echo "$map Loaded"
    done;
    You can add as many maps to the for statement as you like...

  3. #3
    Apprentice Schaumalan is offline
    MemberRank
    Feb 2013 Join Date
    15Posts

    Re: PWI Server 1.5.1 Could not log in to Server

    Thank you sora1984 you're my hero :-)

    Start is62 with pwAdmin not funktioiert at me, I had tried that before the post.

    But your script has led me on the right track and everything worked.
    I modified it just a little.

    PHP Code:
    #!/bin/sh
    PW_PATH=/home

    if [ ! -d $PW_PATH/logs ]; then
    mkdir $PW_PATH
    /logs
    fi

    echo "::: is62 = Ordination --> Start ::"
    cd $PW_PATH/gamed; ./gs is62 >$PW_PATH/logs/is62.log &
    sleep 60
    echo "::: is62 = Orgination  --> Ready :::"
    echo "" 



    Thank you :-)

  4. #4
    .#!/bin/bash sora1984 is offline
    MemberRank
    Feb 2011 Join Date
    127.0.0.1Location
    387Posts

    Re: PWI Server 1.5.1 Could not log in to Server

    if you want a little more feedback from the start process you could do:
    Code:
    #!/bin/sh
    PW_PATH=/home
    
    if [ ! -d $PW_PATH/logs ]; then
    mkdir $PW_PATH/logs
    fi
    
    echo "::: is62 = Ordination --> Start ::"
    cd $PW_PATH/gamed; ./gs is62 >$PW_PATH/logs/is62.log &
    sleep 20 #changed to 20, 60 is a huge wait..
    
    if ps -ef | grep './gs is62'\$ #if is62 is online...
    then
    echo "::: is62 = Origination  --> Ready :::"
    echo ""
    else 
    echo "::: is62 = Origination --> Offline :::"
    echo ""
    fi
    just a simple check but works well if you mainly use shell.

  5. #5
    Apprentice Schaumalan is offline
    MemberRank
    Feb 2013 Join Date
    15Posts

    Re: PWI Server 1.5.1 Could not log in to Server

    Hello.

    So it all worked well and I was in the game.

    Then I: server.stop and then again server.start

    My problem pwAdmin server restart doesn't work anymore---> only root Server is again.

    Error message: login or password incorrect



    TRACE : gdelivery::matrixpasswd query, user=herzileid
    GQueryPasswd:account is herzileid , login ip is xx.xx.xx.xxx
    TRACE : matrixpasswd NOT usbbind user 1024



    I didn't change anything and am now confused.

    Why not start pwAdmin ? Starts only after the rootserver reboot.

    Thx

    -------------------------------------------------------------------------------------------------------------------------
    Works again a different Regi Anmeldescript helped OK and "apt-getinstall php5-curl" was missing.

    Still, only pwAdmin will not start.

    I would like to write here if other users also have problems. It should beno spam.

    Last edited by Schaumalan; 14-10-14 at 10:46 PM.

  6. #6
    Developer - JS Ben is offline
    MemberRank
    Jul 2013 Join Date
    BelguimLocation
    1,244Posts

    Re: PWI Server 1.5.1 Could not log in to Server

    Quote Originally Posted by Schaumalan View Post
    Hello.

    So it all worked well and I was in the game.

    Then I: server.stop and then again server.start

    My problem pwAdmin server restart doesn't work anymore---> only root Server is again.

    Error message: login or password incorrect



    TRACE : gdelivery::matrixpasswd query, user=herzileid
    GQueryPasswd:account is herzileid , login ip is xx.xx.xx.xxx
    TRACE : matrixpasswd NOT usbbind user 1024



    I didn't change anything and am now confused.

    Why not start pwAdmin ? Starts only after the rootserver reboot.

    Thx

    -------------------------------------------------------------------------------------------------------------------------
    Works again a different Regi Anmeldescript helped OK and "apt-getinstall php5-curl" was missing.

    Still, only pwAdmin will not start.

    I would like to write here if other users also have problems. It should beno spam.

    Did you put the pwadmin on a webservice and started the webservice?

  7. #7
    Apprentice Schaumalan is offline
    MemberRank
    Feb 2013 Join Date
    15Posts

    Re: PWI Server 1.5.1 Could not log in to Server

    I have the pwAdmin on a dedicated server.

    I could fix the error but by your post. Tomcat was not started.

    # Restart Tomcat
    sudo /etc/init.d/tomcat7 restart


    # Stop Tomcat
    sudo /etc/init.d/tomcat7 stop

    Thank you

  8. #8
    Apprentice emzee07 is offline
    MemberRank
    May 2015 Join Date
    5Posts

    Re: PWI Server 1.5.1 Could not log in to Server

    sir where did you put that please on specific file



Advertisement