Sponsored Content
Full Discussion: p550 connected to a HMC
Operating Systems AIX p550 connected to a HMC Post 302106894 by johnf on Tuesday 13th of February 2007 05:43:20 AM
Old 02-13-2007
If you can connect them together with the cross over then this will take whatever switch you have out of the equation. Certainly withdrawing the power cable has an effect as well but make sure you keep the cable out for a few minutes to make sure all the internal capacitors are discharged. Also make absolutely sure that the HMC is fully powered up before reconnecting the P550. If this does not work it might be time to connect a laptop to the HMC port and see what is wrong with the 550.
 

10 More Discussions You Might Find Interesting

1. AIX

Hmc

Well i am right now working on an IBM P550 risc server with an HMC connected.. The server has 2 logical partitions (Lpar). both lpar is having Aix 5.3 installed. Now I have a doubt.. is it possible to have Aix in one lpar and windows 2003 in another.. cheers Bala (4 Replies)
Discussion started by: balaji_prk
4 Replies

2. Programming

Connected or not connected !

Hello ! I've got a question . I really don't het this point. Let's supose that I have a client connected to a server. I want the server IMEDIATLY know if the client is diconnected . How can I realize this ? :mad: Amd I'm just curios about one thing. I have a server and multiple clients... (3 Replies)
Discussion started by: !_30
3 Replies

3. AIX

Hmc

Hello everybody, had a question. Iam having a p650 box here, System Model: IBM,7038-6M2 Machine Serial Number: 1078DCC managed system - 1 which has 2 lpars on it i added memory to the box(made sure that memory added was in proper quads and was verified by a CE) after i rebooted the box, the... (4 Replies)
Discussion started by: karthikosu
4 Replies

4. AIX

HMC and Unix Box not connected

Hi There, I'm new here and this is my first (of many ;) ) problems. I've got AIX 5.3 on our unix box and i'm trying to do a DLPAR memory change, but then I ok it I get an error telling me that there is no RMC connection. Does anyone have any ideas what could cause this? Thanks in advance. ... (3 Replies)
Discussion started by: KeesH
3 Replies

5. AIX

Find the feature code of the installed processor card on my p550

Guys Does anyone know how to find the feature code of the installed processor card on my p550? Through AIX or HMC. Basically I need to find the processor card type. Thanks in advance Bala (2 Replies)
Discussion started by: balaji_prk
2 Replies

6. IP Networking

Am I Connected?

Be Gentle folks, I am a baby OpenSuSe 11.2 user :-) In windows Vista, there is a world in the systray when you are Internet connected and not just local. I have searched all over for a .RPM for the Network Manager or another packeg in Suse that can show me the same thing or something close. ... (0 Replies)
Discussion started by: donmaxwelliii
0 Replies

7. AIX

P550 Unable to access Console

I have recently aquired the following machine: IBM,9113-550 Up until yesterday we could connect a dumb terminal to serial port 1 and get console login. However the dumb terminal died. We are now using a laptop with a null modem cable attached to serial port 1. This works perfectly for all of... (1 Reply)
Discussion started by: rsw7724
1 Replies

8. AIX

LSSVCEVENTS [HMC]

Hi all :) two question... 1) in which file the HMC events will be stored? i talking about the log of the HMC console (lssvcevent). 2) The HMC function "Backup Critical Data" store the backup also on remote server through SFTP? In the documentation i read only FTP and NFS. ... (1 Reply)
Discussion started by: Zio Bill
1 Replies

9. AIX

HMC 7.7.5 errors - just me ?

Maybe this is the wrong forum, but... after upgrading one of our HMCs from 7.3.5 to 7.7.5 we detected two problems: - older problem files ( /info/en_US/eclipse/plugins/p7eai/heapdump... , /opt/ccfw/data/vr ) are not deleted by chhmcfs - HMC-scheduled backups via ftp to our nim-server don't run... (2 Replies)
Discussion started by: AchmedLachned
2 Replies

10. AIX

P550 9133 IPL Issues

First IPL of used P550 in Home Lab displayed this on Control Panel: Line-1(01 M F), Line-2(HMC=0 T). Issue #1: Changed "01" to "02" and "M" to "N" on line-1, but IPL failed; no change on display panel. Set "M" back to "N" and exit function "2", but function "3" for IPL restart would not display. ... (5 Replies)
Discussion started by: luw3486
5 Replies
CCOMPS(1)						      General Commands Manual							 CCOMPS(1)

NAME
ccomps - connected components filter for graphs SYNOPSIS
ccomps [ -sxvnzC? ] [ -X[#]v ] [ -ooutfile ] [ files ] DESCRIPTION
ccomps decomposes graphs into their connected components, printing the components to standard output. OPTIONS
The following options are supported: -s No output graph is printed. The return value can be used to check if the graph is connected or not. -x Only the connected components are printed, as separate graphs. -v Counts of nodes, edges and connected components are printed. -z Sort components by size, with the largest first. This is only effective if either -x or -X#v is present. Thus, -zX#0 will cause the largest component to be printed. -C Use clusters in computing components in addition to normal edge connectivity. In essence, this gives the connected components of the derived graph in which nodes top-level clusters and nodes in the original graph. This maintains all subgraph structure within a com- ponent, even if a subgraph does not contain any nodes. -n Do not project subgraph structure. Normally, if ccomps produces components as graphs distinct from the input graph, it will define subgraphs which are projections of subgraphs of the input graph onto the component. (If the projection is empty, no subgraph is pro- duced.) If this flag is set, the component contains only the relevant nodes and edges. -X node_name Prints only the component containing the node node_name, if any. -X# index Prints only component number index, if any, starting at 0. -o outfile If specified, each graph will be written to a different file with the names derived from outfile. In particular, if both -o and -x flags are used, then each connected component is written to a different file. If outfile does not have a suffix, the first file will have the name outfile; then next outfile_1, then next outfile_2, and so on. If outfile has a suffix, i.e., has the form base.sfx, then the files will be named base.sfx, base_1.sfx, base_2.sfx, etc. By default, each input graph is printed, with each connected component given as a subgraph whose name is a concatenation of the name of the input graph, the string "_component_" and the number of the component. OPERANDS
The following operand is supported: files Names of files containing 1 or more graphs in dot format. If no files operand is specified, the standard input will be used. RETURN CODES
Unless used to extract a single connected component, ccomps returns 0 if all the input graphs are connected; and non-zero if any graph has multiple components, or any error occurred. If just extracting a single component, ccomps returns 0 on success and non-zero if an error occurred. BUGS
It is possible, though unlikely, that the names used for connected components and their subgraphs may conflict with existing subgraph names. AUTHORS
Stephen C. North <north@research.att.com> Emden R. Gansner <erg@research.att.com> SEE ALSO
gc(1), dot(1), gvpr(1), gvcolor(1), acyclic(1), sccmap(1), tred(1), libgraph(3) 27 August 2008 CCOMPS(1)
All times are GMT -4. The time now is 01:41 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy