• mRC mystic Relay chat

    From Skuz@21:1/105 to All on Sunday, April 02, 2017 13:27:00
    For some unknown reason Daves BBS is showing up connected to the server about
    a dozen times. I've guessing this means he has a dozen mrc_clinet.py
    connected to the server at the same time? Anyway, think that he is on a rpi
    so I can't help any with that. Maybe someone else can.

    --- Mystic BBS v1.12 A31 (Windows)
    * Origin: flupH | fluph.darktech.org (21:1/105)
  • From bamageek@21:1/140 to Skuz on Sunday, April 02, 2017 19:23:00
    For some unknown reason Daves BBS is showing up connected to the server about a dozen times. I've guessing this means he has a dozen
    mrc_clinet.py connected to the server at the same time? Anyway, think
    that he is on a rpi so I can't help any with that. Maybe someone else
    can.

    I'm running Mystic on a Raspberry Pi and using the Mystic Relay Chat Utils
    v1.0 to keep the chat in play. I couldn't really tell on my side that it was running more than once. Anyone else got any idea why it is running more than once?

    This is what I added to my crontab

    # m h dom mon dow command
    # RESTART CHAT SERVER HOURLY
    1 */1 * * * /mystic/restart-chat-server.pl

    # MAKE SURE MYSTIC CHAT IS RUNNING - CHECK EVERY 5 MINUTES
    */5 * * * * /mystic/check-chat-server-running.pl



    cd /mystic
    clear ; ./mrc_client.py fluph.darktech.org 5000

    /**Dave's BBS telnet://davesbbs.com
    * @version 2.0 fsxNet: 21:1/140
    * GatorNet: 57:57/38
    **/

    --- Mystic BBS v1.12 A31 (Raspberry Pi)
    * Origin: fsxNet: Daves BBS (21:1/140)
  • From Skuz@21:1/105 to bamageek on Sunday, April 02, 2017 22:46:00
    On 04/02/17, bamageek said the following...

    I'm running Mystic on a Raspberry Pi and using the Mystic Relay Chat
    Utils v1.0 to keep the chat in play. I couldn't really tell on my side that it was running more than once. Anyone else got any idea why it is running more than once?

    Maybe the problem is everyone running, mRC version 1.1 now, except yours.

    This is what I added to my crontab

    Not sure how many others are running Mystic on a Raspberry Pi that are connected to the server now-a-days using mRC 1.1 Gryphon, aka Darryl
    Perry at Cyberia BBS cyberia.darktech.org might be the only person. Maybe he will jump in an post his crontab or say how does on his Rpi. Another person that use to connect to mRC using a Rpi is 21:1/124 Dogtown BBS Los Angeles USA Christopher Taylor bbs.kiwi.net But he hasn't connected to mRC for months now.

    --- Mystic BBS v1.12 A31 (Windows)
    * Origin: flupH | fluph.darktech.org (21:1/105)
  • From Avon@21:1/101 to bamageek on Monday, April 03, 2017 21:00:00
    On 04/02/17, bamageek pondered and said...

    For some unknown reason Daves BBS is showing up connected to the serv about a dozen times. I've guessing this means he has a dozen mrc_clinet.py connected to the server at the same time? Anyway, think that he is on a rpi so I can't help any with that. Maybe someone else can.

    I'm running Mystic on a Raspberry Pi and using the Mystic Relay Chat
    Utils v1.0 to keep the chat in play. I couldn't really tell on my side that it was running more than once. Anyone else got any idea why it is running more than once?

    This is what I added to my crontab

    # m h dom mon dow command
    # RESTART CHAT SERVER HOURLY
    1 */1 * * * /mystic/restart-chat-server.pl

    I'd say because it looks like you are starting the server hourly. But are you killing the old one first? Why do you need to do this at all? I'm a tad confused by this.

    Best, Paul

    --- Mystic BBS v1.12 A31 (Windows)
    * Origin: Agency BBS | telnet://agency.bbs.geek.nz (21:1/101)
  • From Gryphon@21:1/101 to Skuz on Tuesday, April 04, 2017 02:52:00
    On 04/02/17, Skuz pondered and said...

    On 04/02/17, bamageek said the following...

    I'm running Mystic on a Raspberry Pi and using the Mystic Relay Chat Utils v1.0 to keep the chat in play. I couldn't really tell on my sid that it was running more than once. Anyone else got any idea why it i running more than once?

    Maybe the problem is everyone running, mRC version 1.1 now, except yours.

    This is what I added to my crontab

    Not sure how many others are running Mystic on a Raspberry Pi that are connected to the server now-a-days using mRC 1.1 Gryphon, aka Darryl
    Perry at Cyberia BBS cyberia.darktech.org might be the only person.
    Maybe he will jump in an post his crontab or say how does on his Rpi. Another person that use to connect to mRC using a Rpi is 21:1/124
    Dogtown BBS Los Angeles USA Christopher Taylor bbs.kiwi.net But he
    hasn't connected to mRC for months now.

    I don't think that the issue he's having is specific to the RPi. I think
    it's a linux issue. My cron script is pretty simple. I check to see if the mrc_client.py is running. If it isn't, it starts it up again. If it is,
    then it exits. I run the cron script about once every 5 minutes.

    -------
    #!/bin/sh

    client=/home/bbs/mrc_client.py

    client_count=`ps -ef | grep ${client} | grep -v grep | wc -l | awk '{print $1}'

    if [ "${client_count}" == "0" ]; then
    cd /home/bbs
    ${client} fluph.darktech.org 5000 >> /home/bbs/logs/mrc_client.log 2>&
    fi

    Ò Ö· Ò .
    Ö·Ò·ÒÖÖ·Ç·Ö·Ò· Ö·Ç ÖÄÖÖÇ·Ö·Ò·ÒÒÒ cyberia.darktech.org
    ӶРӶǽÐÐÓ½ÐÐ Ó½Ó ÓÄÓ¶Ó½ÓÄÐ ÐÓÐ kingwood, tx.
    Ó½ ½Ó ½

    --- Mystic BBS v1.12 A31 (Windows)
    * Origin: Agency BBS | telnet://agency.bbs.geek.nz (21:1/101)