Sponsored Content
Operating Systems Solaris T4-2 - Memory DIMM issue - ldom config resets to factory-default Post 303015482 by jim mcnamara on Thursday 5th of April 2018 09:27:06 AM
Old 04-05-2018
What does
Code:
fmadm faulty

show? If replacement is needed, then do it. Once the system "thinks" a certain way about errors it is really hard to try to operate the system like the problem does not exist. As you are seeing. And in fact, doing so may cover up even more serious issues.

I'm not sure what you are actually seeing. Your response seems to me like you have no support contract more than anything else. Which is understandable, but very hard to work around sometimes.

I don't recommend this, but if you are truly desperate try using the
Code:
fmadm repair

command. I do not recommend it except as a last ditch desperation approach to getting a box going for a short time. Once the error occurs again, you are back to square one.

EDIT: let me put this another way - I had a system which showed bad memory, but when the tech search the fmadm information, he found it was a PCI-e problem. But at first blush the system "thought" it was a DIMM. Let Oracle look at it. Don't decide on your own. My first take was wrong.

Last edited by jim mcnamara; 04-05-2018 at 10:39 AM..
 

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

memory config - need to get it

Hi, Im in need to get the mem config on a sun sparq Can some one please helpe me? (im not a unixperson) (1 Reply)
Discussion started by: skil
1 Replies

2. HP-UX

Memory dimm status

Hi, How to check the memory dimm status from OS leavel!! My system model HP N4000. Thanks, ARumugam. (2 Replies)
Discussion started by: arumsun
2 Replies

3. Solaris

Understanding memory config with prtdiag -v

Hi. I have 2 SunFire V490 servers running Solaris 10. We may have to upgrade with more memory on one of them to make it compatible with the other. Here's the one with 12GB of RAM: Memory size: 12288 Megabytes ========================= CPUs =============================================== ... (1 Reply)
Discussion started by: th1amigo
1 Replies

4. Solaris

Network Config on Zone in a Guest LDOM

Solaris for Sparc 11.1 with the latest patches. Created a Guest LDOM with two vnet's net0 and net1, installed a guest whole root, ip exclusive zone that I want to be able to utilize DHCP. I have been able to create the zone but unable to get it to boot because I am unable to assign an anet to it.... (4 Replies)
Discussion started by: os2mac
4 Replies

5. Solaris

T4 replaced motherboard - recovering LDOM config?

T4-2 issues meant replacing motherboard. I thought the ldom config was automatically saved? Got the oracle document here. At the moment, unable to get ldoms back - here is the output from a few commands:- ldm list NAME STATE FLAGS CONS VCPU MEMORY UTIL UPTIME... (4 Replies)
Discussion started by: psychocandy
4 Replies
TAP::Parser::IteratorFactory(3) 			User Contributed Perl Documentation			   TAP::Parser::IteratorFactory(3)

NAME
TAP::Parser::IteratorFactory - Figures out which SourceHandler objects to use for a given Source VERSION
Version 3.28 SYNOPSIS
use TAP::Parser::IteratorFactory; my $factory = TAP::Parser::IteratorFactory->new({ %config }); my $iterator = $factory->make_iterator( $filename ); DESCRIPTION
This is a factory class that takes a TAP::Parser::Source and runs it through all the registered TAP::Parser::SourceHandlers to see which one should handle the source. If you're a plugin author, you'll be interested in how to "register_handler"s, how "detect_source" works. METHODS
Class Methods "new" Creates a new factory class: my $sf = TAP::Parser::IteratorFactory->new( $config ); $config is optional. If given, sets "config" and calls "load_handlers". "register_handler" Registers a new TAP::Parser::SourceHandler with this factory. __PACKAGE__->register_handler( $handler_class ); "handlers" List of handlers that have been registered. Instance Methods "config" my $cfg = $sf->config; $sf->config({ Perl => { %config } }); Chaining getter/setter for the configuration of the available source handlers. This is a hashref keyed on handler class whose values contain config to be passed onto the handlers during detection & creation. Class names may be fully qualified or abbreviated, eg: # these are equivalent $sf->config({ 'TAP::Parser::SourceHandler::Perl' => { %config } }); $sf->config({ 'Perl' => { %config } }); "load_handlers" $sf->load_handlers; Loads the handler classes defined in "config". For example, given a config: $sf->config({ MySourceHandler => { some => 'config' }, }); "load_handlers" will attempt to load the "MySourceHandler" class by looking in @INC for it in this order: TAP::Parser::SourceHandler::MySourceHandler MySourceHandler "croak"s on error. "make_iterator" my $iterator = $src_factory->make_iterator( $source ); Given a TAP::Parser::Source, finds the most suitable TAP::Parser::SourceHandler to use to create a TAP::Parser::Iterator (see "detect_source"). Dies on error. "detect_source" Given a TAP::Parser::Source, detects what kind of source it is and returns one TAP::Parser::SourceHandler (the most confident one). Dies on error. The detection algorithm works something like this: for (@registered_handlers) { # ask them how confident they are about handling this source $confidence{$handler} = $handler->can_handle( $source ) } # choose the most confident handler Ties are handled by choosing the first handler. SUBCLASSING
Please see "SUBCLASSING" in TAP::Parser for a subclassing overview. Example If we've done things right, you'll probably want to write a new source, rather than sub-classing this (see TAP::Parser::SourceHandler for that). But in case you find the need to... package MyIteratorFactory; use strict; use vars '@ISA'; use TAP::Parser::IteratorFactory; @ISA = qw( TAP::Parser::IteratorFactory ); # override source detection algorithm sub detect_source { my ($self, $raw_source_ref, $meta) = @_; # do detective work, using $meta and whatever else... } 1; AUTHORS
Steve Purkis ATTRIBUTION
Originally ripped off from Test::Harness. Moved out of TAP::Parser & converted to a factory class to support extensible TAP source detective work by Steve Purkis. SEE ALSO
TAP::Object, TAP::Parser, TAP::Parser::SourceHandler, TAP::Parser::SourceHandler::File, TAP::Parser::SourceHandler::Perl, TAP::Parser::SourceHandler::RawTAP, TAP::Parser::SourceHandler::Handle, TAP::Parser::SourceHandler::Executable perl v5.16.3 2013-05-02 TAP::Parser::IteratorFactory(3)
All times are GMT -4. The time now is 05:31 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy