[clue] Hardware (sunfire v210) pre-OS

mike havlicek mhavlicek1 at yahoo.com
Mon May 28 12:31:30 MDT 2012


Hi,
 
Access has been through the RJ45 serial mgmt port. 
I do get a display of things passing on a complete powercycle : poweroff and pull cord,
Then Prompted for ALOM login which I am able to do. 
The ending (get stuck point) is basically like this:
==============================================(STuff CUT from serial session)==>
Full VxDiag Tests - PASSED
 
    Status summary  -  Status = 7FFF
       VxDiag    -          -  PASSED
       POST      -          -  PASSED
       LOOPBACK  -          -  PASSED
       I2C       -          -  PASSED
       EPROM     -          -  PASSED
       FRU PROM  -          -  PASSED
       ETHERNET  -          -  PASSED
       MAIN CRC  -          -  PASSED
       BOOT CRC  -          -  PASSED
       TTYD      -          -  PASSED
       TTYC      -          -  PASSED
       MEMORY    -          -  PASSED
       MPC850    -          -  PASSED
Please login: admin
Please Enter password: ********

sc> poweron
sc> console
Enter #. to return to ALOM.
 
===================================================================
 
And thats about it.... I have tried from sc> doing:
 
sc> bootmode
Bootmode: normal
bootscript="setenv auto-boot? false"
sc> bootmode reset_nvram
sc>
SC Alert: SC set bootmode to reset_nvram, will expire MON MAY 28 17:17:47 UTC 2012.
sc> bootmode
Bootmode: reset_nvram
Expires MON MAY 28 17:17:47 UTC 2012
bootscript="setenv auto-boot? false"
sc>
 
poweroff/poweron again leaves me with the console message: Enter #. to return to ALOM
 
No "ok" ....
 
The server has a network mgmt port and a db9 serial which I haven't looked at since I lost control. Could control be switching
to send further output elsewhere after getting this much through the rj45 serial??? I fear something got hosed so that the whole
OpenBoot level is gone.... (Panic 8^)
 
-Mike

 

________________________________
 From: "Whiting, Gary" <Gary.Whiting at echostar.com>
To: "clue at cluedenver.org" <clue at cluedenver.org> 
Sent: Saturday, May 26, 2012 1:04 PM
Subject: Re: [clue] Hardware (sunfire v210)  pre-OS
  
It has been quite a while since I did anything with a SunFire Vxxx. I goes through POST successfully but you get no ok prompt? Have you tried connecting to ALOM through the SER MGT port?


Gary Whiting | IT Systems Manager, UNIX
EchoStar Information Technology
100 Inverness Terrace East | Englewood, CO  80112
(O) 303-706-5607 | (C) 303-229-6114
UNIX Team | 303-706-5471 | http://sats-it





-----Original Message-----
From: clue-bounces at cluedenver.org [mailto:clue-bounces at cluedenver.org] On Behalf Of clue-request at cluedenver.org
Sent: Saturday, May 26, 2012 12:00 PM
To: clue at cluedenver.org
Subject: clue Digest, Vol 16, Issue 44

Send clue mailing list submissions to
    clue at cluedenver.org

To subscribe or unsubscribe via the World Wide Web, visit
    http://cluedenver.org/mailman/listinfo/clue
or, via email, send a message with subject or body 'help' to
    clue-request at cluedenver.org

You can reach the person managing the list at
    clue-owner at cluedenver.org

When replying, please edit your Subject line so it is more specific than "Re: Contents of clue digest..."


Today's Topics:

   1. Re: [tech] Nagios question - remote plugin status isn't shown
      (Christopher Cross)
   2. Re: 32 bit app, 64 bit OS (Raymond DeRoo)
   3. Hardware (sunfire v210)  pre-OS (mike havlicek)
   4. Re: 32 bit app, 64 bit OS (Will Sterling)


----------------------------------------------------------------------

Message: 1
Date: Fri, 25 May 2012 16:21:08 -0600
From: Christopher Cross <g1ccross at gmail.com>
Subject: Re: [clue] [tech] Nagios question - remote plugin status
    isn't shown
To: "CLUE's mailing list" <clue at cluedenver.org>
Message-ID:
    <CANMPyz9cWHT0L8OHyd7ZuUfHveg2n9_gd0MftYFrAHZ_bBOknw at mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

Glad it was an easy fix. I manage the Nagios system at work so I recognized that output.

Here is a nice Nagios tip. You can make custom checks easily in bash (or anything else). Just use the exit code to tell Nagios what the status is and any output will be on the status line. Define the script as a command and use it in a service definition.


exit 0 = OK
exit 1 = Warning
exit 2 = Critical

Sometimes this is easier than trying to figure out someone else's plugin that is way more complex than you need or if you just have a very unique system to monitor.

Christopher Cross
g1ccross at gmail.com
(310)536-6392


On Fri, May 25, 2012 at 3:48 PM, Jim Ockers <ockers at ockers.net> wrote:

> **
> Hi Chris,
>
> That was it thanks, you nailed it.  I was missing the fact that NRPE 
> prints out only that version message if you connect remotely and don't 
> specify a command for it to run.  I had the check_nrpe command 
> configured wrong in the Nagios server's commands.cfg.  In my ignorance 
> I did it wrong when I defined the command.
>
> This config snippet causes it to generate the NRPE v2.13 output (note 
> no
> $ARG1$):
>
> define command{
>         command_name    check_nrpe
>         command_line    /usr/nagios/libexec/check_nrpe -H $HOSTADDRESS$
>         }
>
> [root at nagios]# /usr/nagios/libexec/check_nrpe -H remote.host.IP NRPE 
> v2.13
>
>
> I changed the config to this and now NRPE and my plugins generate the 
> command output I expected:
>
> define command{
>         command_name    check_nrpe
>         command_line    /usr/nagios/libexec/check_nrpe -H $HOSTADDRESS$ -c
> $ARG1$
>         }
>
> [root at nagios]# /usr/nagios/libexec/check_nrpe -H remote.host.IP -c 
> check_md_raid
>
> OK - Checked 1 arrays.
>
> Thanks it's all working fine now,
>
> Jim
>
> --
> Jim Ockers, P.E., P.Eng. (ockers at ockers.net) Contact info: 
> http://www.ockers.net/
>
> Christopher Cross wrote:
>
> It sounds like you are only checking the npre plugin version and not 
> the raid check command in your Nagios config. Can you post the 
> relevant parts of your Nagios config files. The host, service, and 
> commands parts should provide enough info.
>
> Christopher Cross
> g1ccross at gmail.com
> (310)536-6392
>
>
> On Fri, May 25, 2012 at 3:11 PM, Jim Ockers <ockers at ockers.net> wrote:
>
>> Hi CLUEbies,
>>
>> I'll keep this simple since I hope it's a simple question. I set up 
>> nagios and it's monitoring a remote system to make sure the RAID 
>> array is OK. I'm using the NRPE (remote) plugin because the 
>> /proc/mdstat file contains the RAID array health information, and 
>> it's not readable from my Nagios server.  In the web interface the 
>> status is shown (OK, critical,
>> etc) but no further command output is shown.
>>
>> There's a whole "Status Information" column in the web interface and 
>> instead of showing some useful command output it shows only "NRPE v2.13".
>> When I click on the service to drill into the status further, the 
>> "Performance Data" is blank where the status output should be.  I 
>> think it would be a lot better if the actual plugin output was shown 
>> in the web interface.
>>
>> When I run the local command it displays this:
>>
>> [root]# /usr/nagios/libexec/check_md_raid OK - Checked 1 arrays.
>>
>> When I run the remote command from the nagios monitoring server it 
>> displays this:
>>
>> [root at nagios ~]# /usr/nagios/libexec/check_nrpe -H remote.host.IP -c 
>> check_md_raid OK - Checked 1 arrays.
>>
>> >From this I know the remote command is working as configured, and 
>> >the
>> command output is seen on the nagios server when it runs the remote 
>> command because it picks up the OK status.  In the web/GUI interface for "Services"
>> it shows OK but the only status information is "NRPE v2.13" instead 
>> of the "OK - Checked 1 arrays." command output like it shows for 
>> every other non-remote Nagios command.
>>
>> Help please?  How can I get the remote command output shown in the 
>> web interface?  Believe it or not I've tried a variety of google 
>> searches for this and got nothing, so help me CLUE you're my only hope!
>>
>> Thanks,
>> Jim
>>
>> --
>> Jim Ockers, P.E., P.Eng. (ockers at ockers.net) Contact info: 
>> http://www.ockers.net/
>>
>>
>
> _______________________________________________
> clue mailing list: clue at cluedenver.org For information, account 
> preferences, or to unsubscribe see:
> http://cluedenver.org/mailman/listinfo/clue
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://cluedenver.org/pipermail/clue/attachments/20120525/9cf7cfcf/attachment-0001.html 

------------------------------

Message: 2
Date: Sat, 26 May 2012 09:42:18 +0200
From: Raymond DeRoo <rderoo at deroo.net>
Subject: Re: [clue] 32 bit app, 64 bit OS
To: CLUE's mailing list <clue at cluedenver.org>
Message-ID: <538C30D1-331F-40CF-8791-845B181068B0 at deroo.net>
Content-Type: text/plain; charset=us-ascii

David:

> pae kernel gets you all the RAM and most of the speed...

PAE *may* be an option, but only if multiple applications need ~3G or run. MySQL and Postgres still will not allocate more than ~3.2G of RAM on a 32bit OS regardless of how much physical RAM is present. So my initial statement really still stands.

Cheers,
Raymond



------------------------------

Message: 3
Date: Sat, 26 May 2012 04:36:12 -0700 (PDT)
From: mike havlicek <mhavlicek1 at yahoo.com>
Subject: [clue] Hardware (sunfire v210)  pre-OS
To: "CLUE's   list" <clue at cluedenver.org>
Message-ID:
    <1338032172.86782.YahooMailNeo at web36204.mail.mud.yahoo.com>
Content-Type: text/plain; charset="iso-8859-1"

Hi All,
?
I think I hosed this one. I got this through ebay ($60.00) so I admit I was a little careless in dangerous operations. Got the thing to boot over network. Realizing that there was not enough memory for recent Solaris I decided to try putting a DVD ROM in that I was led to believe was compatible. (I fear the real bozo maneuver might have been accompanied with a knockout punch... shifting of a loose metal?pci slot cover--> found it laying on motherboard upon popping top)... Thought I might have screwed up the card reader when I popped the DVD in, but the reader works well enough for the system to know when the card itself is removed...
Anyway the system seems to display good diags but doesn't goto OBP (ok).....? Anybody familiar with sunfire v210 and any magic reset to get to "ok" ...? jumper type remedy??? I have been reading posts that talk about fru removal in ALOM but at first glance it looks like the only fru removal at that level is for the power supply.... 
?
?
Thanks,
?
-Mike
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://cluedenver.org/pipermail/clue/attachments/20120526/2a0e04b3/attachment-0001.html 

------------------------------

Message: 4
Date: Sat, 26 May 2012 08:14:12 -0600
From: Will Sterling <will.sterling at gmail.com>
Subject: Re: [clue] 32 bit app, 64 bit OS
To: "CLUE's mailing list" <clue at cluedenver.org>
Cc: "nclug at nclug.org" <nclug at nclug.org>
Message-ID: <1374984521503933891 at unknownmsgid>
Content-Type: text/plain; charset=ISO-8859-1

If your application does not need more RAM then 32bits can address there is no down side to running it in 32 bit on a 64 bit OS other then needing to make sure you have the 32 bit libraries installed.

The application will actually be a tiny bit faster because of the shorter memory addresses.

On May 25, 2012, at 8:44 AM, "grant at amadensor.com" <grant at amadensor.com> wrote:

> I am wondering the pitfalls of running 32 bit applications on 64 bit Linux.
>
> We are looking at upgrading a large enterprise system.   It would be
> very helpful if we could upgrade the operating system first, because 
> then we can upgrade the application in place and carry over all of our
> settings and data more easily.   The old version is a 32 bit
> application, the new one is a 64 bit application.   If we upgrade the
> hardware and operating system first, this is better, since it is due a 
> hardware upgrade anyway, and we are looking at maybe moving it to a
> new data center.   We would like to run this way for a while, then do
> the upgrade, since it is a large project to upgrade this mess.  Where 
> is this going to bite us?
>
>
>
>
> _______________________________________________
> clue mailing list: clue at cluedenver.org For information, account 
> preferences, or to unsubscribe see:
> http://cluedenver.org/mailman/listinfo/clue


------------------------------

_______________________________________________
clue mailing list
clue at cluedenver.org
http://cluedenver.org/mailman/listinfo/clue

End of clue Digest, Vol 16, Issue 44
************************************


_______________________________________________
clue mailing list: clue at cluedenver.org
For information, account preferences, or to unsubscribe see:
http://cluedenver.org/mailman/listinfo/clue
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://cluedenver.org/pipermail/clue/attachments/20120528/92951bf1/attachment-0001.html 


More information about the clue mailing list