Hello, I'm getting a KErnel Pannic every time i restart the server, what could be happening? I just make: "shutdown -r now" and the server gets Kernel Panic. I'have to go on site and press the power button Here you have my sotware versions: Asterisk 1.4.24.1 DAHDI Tools Version - 2.1.0.2 DAHDI Version: 2.1.0.4 libpri version: 1.4.10.1 WANPIPE Release: 3.5.4 IS there something that i shoud check? Best Regards! -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100930/2ca03d45/attachment.htm
mahesh katta
2010-Sep-30 10:17 UTC
[asterisk-users] Kernel Panic When restarting the server
Hi, Mostly this Problem is Hardware issue . check your server Hardwares. On Thu, Sep 30, 2010 at 3:39 PM, Danny Dias <ing.diasdanny at gmail.com> wrote:> Hello, > > I'm getting a KErnel Pannic every time i restart the server, what could be > happening? > > I just make: "shutdown -r now" and the server gets Kernel Panic. I'have to > go on site and press the power button > > Here you have my sotware versions: > > Asterisk 1.4.24.1 > DAHDI Tools Version - 2.1.0.2 > DAHDI Version: 2.1.0.4 > libpri version: 1.4.10.1 > WANPIPE Release: 3.5.4 > > IS there something that i shoud check? > > Best Regards! > > -- > _____________________________________________________________________ > -- Bandwidth and Colocation Provided by http://www.api-digital.com -- > New to Asterisk? Join us for a live introductory webinar every Thurs: > http://www.asterisk.org/hello > > asterisk-users mailing list > To UNSUBSCRIBE or update options visit: > http://lists.digium.com/mailman/listinfo/asterisk-users >-------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100930/8a06747c/attachment.htm
On Thursday 30 Sep 2010, Danny Dias wrote:> Hello, > > I'm getting a KErnel Pannic every time i restart the server, what could be > happening? > > I just make: "shutdown -r now" and the server gets Kernel Panic. I'have to > go on site and press the power button > > Here you have my sotware versions: > > Asterisk 1.4.24.1 > DAHDI Tools Version - 2.1.0.2 > DAHDI Version: 2.1.0.4 > libpri version: 1.4.10.1 > WANPIPE Release: 3.5.4 > > IS there something that i shoud check? > > Best Regards!Use chmod -x to prevent the Asterisk and Dahdi startup scripts from running. (And make sure the modules aren't being loaded by udev or anything else.) Then see if you can get it to shut down cleanly. If so, that means it's one of the Dahdi modules causing it. -- AJS
----- "Danny Dias" <ing.diasdanny at gmail.com> wrote:> I'm getting a KErnel Pannic every time i restart the server, what could be happening? > I just make: "shutdown -r now" and the server gets Kernel Panic. I'have to go on site and press the power buttonI'd be willing to bet Wanpipe is attempting to stop while Asterisk is still using it. It's a known problem. Put the following into /etc/wanpipe/scripts/stop #!/bin/sh /etc/init.d/asterisk stop sleep 2 /etc/init.d/asterisk stop Then chmod +x it. When Wanpipe attempts to stop, it will shut down Asterisk first, bypassing a panic situation. --Tim -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20100930/5ffe80a3/attachment.htm