DLPAR Error


 
Thread Tools Search this Thread
Operating Systems AIX DLPAR Error
# 1  
Old 07-07-2008
DLPAR Error

Hello,
This is the foll error wen i try doin DLPAR from my VIO after adding the virtual adpaters on my clients:
HSCL294C DLPAR ADD Virtual I/O resources failed:
com.ibm.hsc.common.exceptions.PIHscClientException: HSCL294C DLPAR ADD Virtual I/O resources failed: HMCERRV3DLPAR020: AIX DLPAR operation a on slot resource failed without throwing exception. The request number is 1. The success number is 0.
The AIX command is:
drmgr -a -c slot -s Uxxx.570.65xxxx-V1-C80 -d 0
The AIX standard output is:
Unknown error.
The AIX standard error is:
Not enough returned data (1)
The RMC return code is 0. The AIX return code is 1140.

appreciate a response
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

LPAR RMC state for DLPAR

Hello, I have checked the state of rmc on the HMC as below: HMC1:~> lssyscfg -r lpar -m Server-xxx -F lpar_id,state,rmc_state,rmc_ipaddr,os_version,dlpar_mem_capable,dlpar_proc_capable,dlpar_io_capable --filter "lpar_ids=4" 4,Running,inactive,10.176.x.x,VIOS 2.2.6.51,0,0,0 HMC1:~> lssyscfg... (2 Replies)
Discussion started by: Phat
2 Replies

2. UNIX for Beginners Questions & Answers

Print Error in Console and both Error & Output in Log file - UNIX

I am writing a shell script with 2 run time arguments. During the execution if i got any error, then it needs to redirected to a error file and in console. Also both error and output to be redirected to a log file. But i am facing the below error. #! /bin/sh errExit () { errMsg=`cat... (1 Reply)
Discussion started by: sarathy_a35
1 Replies

3. AIX

AIX: DLPAR VFC - HMC v9

Hey All, I have running dual VIOS on a P9 systems, and just created a new LPAR profile. My objective is to create LPAR Client VFC adapters, and then DLPAR VFC Server adapters on the VIOS. In the HMC v9 Enhanced GUI, I have DLPAR a VFC adapter to both VIOS, however, you can't specify the... (1 Reply)
Discussion started by: aixkidbee
1 Replies

4. AIX

DLPAR capable with IVM - checks to do

I cannot find the post with the comment that DLPAR capability was not working with IVM. The two commands that need to be run are (as root, padmin does not know this command): VIOS: lsrsrc IBM.MngNode CLIENTS: lsrsrc IBM.MCP Examples: # lsrsrc IBM.MngNode Resource Persistent Attributes for... (2 Replies)
Discussion started by: MichaelFelt
2 Replies

5. UNIX for Advanced & Expert Users

LPAR,DLPAR and WPAR

Can anyone please let know difference between LPAR/DLPAR/WPAR. and its purpose ??? (3 Replies)
Discussion started by: Pavithran
3 Replies

6. AIX

HMC - tracking dlpar

I am trying to generate a report to track dlpar operation performed on a MS and was wondering if anyone has done this before. I can get history from HMC using lssvcevents , but this does not give me details as to what quantity was added or removed . Any thoughts ? Thanks (3 Replies)
Discussion started by: mk8570
3 Replies

7. UNIX for Dummies Questions & Answers

> 5 ")syntax error: operand expected (error token is " error

im kinda new to shell scripting so i need some help i try to run this script and get the error code > 5 ")syntax error: operand expected (error token is " the code for the script is #!/bin/sh # # script to see if the given value is correct # # Define errors ER_AF=86 # Var is... (4 Replies)
Discussion started by: metal005
4 Replies

8. UNIX for Dummies Questions & Answers

awk Shell Script error : "Syntax Error : `Split' unexpected

hi there i write one awk script file in shell programing the code is related to dd/mm/yy to month, day year format but i get an error please can anybody help me out in this problem ?????? i give my code here including error awk ` # date-month -- convert mm/dd/yy to month day,... (2 Replies)
Discussion started by: Herry
2 Replies

9. UNIX for Dummies Questions & Answers

Error: Internal system error: Unable to initialize standard output file

Hey guys, need some help. Running AIX Version 5.2 and one of our cron jobs is writing errors to a log file. Any ideas on the following error message. Error: Internal system error: Unable to initialize standard output file I'm guessing more info might be needed, so let me know. Thanks (2 Replies)
Discussion started by: firkus
2 Replies

10. AIX

Dlpar

Hi, Anybody had a problem trying to rmdev a scsi device and get the following error : root@:/> rmdev -dlscsi3 -R Method error (/usr/lib/methods/ucfgncr_scsi): 0514-062 Cannot perform the requested function because the specified device is busy. I can't... (1 Reply)
Discussion started by: stumpy
1 Replies
Login or Register to Ask a Question
ost::LinkedDouble(3)					     Library Functions Manual					      ost::LinkedDouble(3)

NAME
ost::LinkedDouble - Self managed double linked list object chain. SYNOPSIS
#include <object.h> Public Types enum InsertMode { modeAtFirst, modeAtLast, modeBefore, modeAfter } Requested in overloaded insert() method to indicate how to insert data into list. Public Member Functions virtual LinkedDouble * getFirst (void) Get first linked object in list. virtual LinkedDouble * getLast (void) Gets the last object in the list. virtual LinkedDouble * getInsert (void) Virtual to get the insert point to use when adding new members. LinkedDouble * getNext (void) Get next object, for convenience. LinkedDouble * getPrev (void) Get prev object in the list. virtual void insert (LinkedDouble &obj, InsertMode position=modeAtLast) Insert object into chain at given position, as indicated by InsertMode; If no position is given, it defaults to modeAtLast, inserting element at list's end. virtual void detach (void) Remove object from chain. LinkedDouble & operator+= (LinkedDouble &obj) LinkedDouble & operator-- () Protected Member Functions LinkedDouble () virtual ~LinkedDouble () virtual void enterLock (void) virtual void leaveLock (void) virtual LinkedDouble * firstObject () virtual LinkedDouble * lastObject () Protected Attributes LinkedDouble * nextObject LinkedDouble * prevObject Detailed Description Self managed double linked list object chain. This is used for accumulating lists by using as a base class for a derived subclass. Author: David Sugar dyfet@gnutelephony.org Accumulating double linked list. Member Enumeration Documentation enum ost::LinkedDouble::InsertMode Requested in overloaded insert() method to indicate how to insert data into list. Enumerator: modeAtFirst insert at first position in list pointed by current object modeAtLast insert at last position in list pointed by current object modeBefore insert in list before current object modeAfter insert in list after current object Constructor &; Destructor Documentation ost::LinkedDouble::LinkedDouble () [inline], [protected] virtual ost::LinkedDouble::~LinkedDouble () [protected], [virtual] Member Function Documentation virtual void ost::LinkedDouble::detach (void) [virtual] Remove object from chain. virtual void ost::LinkedDouble::enterLock (void) [protected], [virtual] virtual LinkedDouble* ost::LinkedDouble::firstObject () [protected], [virtual] virtual LinkedDouble* ost::LinkedDouble::getFirst (void) [virtual] Get first linked object in list. This may be dynamically recast, and may refer to a master static bookmark pointer in a derived class. Otherwise it follows list to front. Returns: pointer to first object in list. virtual LinkedDouble* ost::LinkedDouble::getInsert (void) [virtual] Virtual to get the insert point to use when adding new members. This may be current, or always head or always tail. As a virtual, this allows derived class to establish 'policy'. Returns: pointer to insertion point in list. virtual LinkedDouble* ost::LinkedDouble::getLast (void) [virtual] Gets the last object in the list. This normally follows the links to the end. This is a virtual because derived class may include a static member bookmark for the current end. Returns: pointer to last object in list. LinkedDouble* ost::LinkedDouble::getNext (void) [inline] Get next object, for convenience. Derived class may use this with a dynamic cast. Returns: next object in list. LinkedDouble* ost::LinkedDouble::getPrev (void) [inline] Get prev object in the list. Returns: pointer to previous object. virtual void ost::LinkedDouble::insert (LinkedDouble &obj, InsertModeposition = modeAtLast) [virtual] Insert object into chain at given position, as indicated by InsertMode; If no position is given, it defaults to modeAtLast, inserting element at list's end. Parameters: object being inserted. position where object is inserted. virtual LinkedDouble* ost::LinkedDouble::lastObject () [protected], [virtual] virtual void ost::LinkedDouble::leaveLock (void) [protected], [virtual] LinkedDouble& ost::LinkedDouble::operator+= (LinkedDouble &obj) LinkedDouble& ost::LinkedDouble::operator-- () Member Data Documentation LinkedDouble* ost::LinkedDouble::nextObject [protected] LinkedDouble * ost::LinkedDouble::prevObject [protected] Author Generated automatically by Doxygen for GNU CommonC++ from the source code. GNU CommonC++ Sat Jun 23 2012 ost::LinkedDouble(3)