DataCenter Diagram


 
Thread Tools Search this Thread
Operating Systems Solaris Solaris BigAdmin RSS DataCenter Diagram
# 1  
Old 09-18-2008
DataCenter Diagram

Quickly create diagram of server showing correct cabling requirements. Use to guide engineers to cable server correctly or test correct cable etc.

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Venn diagram results using awk

Hi, I have the following files 1.txt a 10 b 11 c 12 d 13 e 14 f 15 g 16 h 17 i 18 j 19 k 20 2.txt a 21 b 22 (15 Replies)
Discussion started by: jacobs.smith
15 Replies

2. Shell Programming and Scripting

Request to checkVenn diagram issue solve by Unix programm

Hello Any Unix programm can help me to solve thsi issue: I have 2 venn digrams please checke the attached file for pictures of venn diagram for eg red is A yellow is B and green is C..Please see attached file for Venn diagrams In one ..... I have 3 data set A , B and C Venn diagram... (0 Replies)
Discussion started by: manigrover
0 Replies

3. Hardware

hardware diagram / database

Hi - we are looking for a (hopefully free/opensource) solution for diagramming our rack/hardware configuration. the rack solution seems easier to find than the hardware piece. i.e. on our IBM 770 with two CEC's, a method of noting what hardware points to what... for example, on the primary CEC,... (0 Replies)
Discussion started by: TinWalrus
0 Replies

4. Shell Programming and Scripting

Parse Log & Create Flow Diagram - Ideas/Tools

Hi, I would like to develop a script which parses the log file and generates a flow diagram ( graphical display ). We have an application, for understanding the sequence of functions call made, we have an debug line at "ENTRY/EXIT" of function. I have a small log parsing script which grep the... (2 Replies)
Discussion started by: ennstate
2 Replies

5. AIX

Set up a Datacenter with Power System

Can u please help me in knowing the details of the servers needed, FIBRE CABLES, HA softwares, VIO Softwares and other details. I googled through out and couldnt get a clear idea of it. Please help me (6 Replies)
Discussion started by: Sounddappan
6 Replies

6. UNIX for Advanced & Expert Users

Process diagram for 50+ unix scripts

Can someone point me to a good book for drawing a process diagram for 50+ unix scripts? The scripts run at different frequencies, and do everything from putting and getting data via FTP, to database I/O, to checking disk space ... etc. (0 Replies)
Discussion started by: tomstone_98
0 Replies

7. UNIX for Advanced & Expert Users

extracting info from Unix database to construct a visual diagram

Ok heres the situation, We use Solaris 8 at work with Sybase for the db. I need to be able to easily create visual diagrams of some of our more complex systems. I've been using Visio which is such a manual process and takes a while. I was thinking maybe using Visio somehow in conjunction... (0 Replies)
Discussion started by: fusion99
0 Replies
Login or Register to Ask a Question
Autodia::Diagram::Class(3pm)				User Contributed Perl Documentation			      Autodia::Diagram::Class(3pm)

NAME
Autodia::Diagram::Class - Class that holds, updates and outputs the values of a diagram element of type class. SYNOPSIS
use Autodia::Diagram::Class; my $Class = Autodia::Diagram::Class->new; Description Autodia::Diagram::Class is an object that represents the Dia UML Class element within a Dia diagram. It holds, outputs and allows the addition of attributes, relationships and methods. METHODS
Constructor my $Class = Autodia::Diagram::Class->new($name); creates and returns a simple Autodia::Diagram::Class object, containing its name and its original position (default 0,0). Accessors Autodia::Diagram::Class attributes are accessed through methods, rather than directly. Each attribute is available through calling the method of its name, ie Inheritances(). The methods available are : Operations, Attributes, Inheritances, Dependancies, Parent, and has_child. The first 4 return a list, the later return a string. Adding elements to the Autodia::Diagram::Class is acheived through the add_<attribute> methods, ie add_inheritance(). Rather than remove an element from the diagram it is marked as redundant and replaced with a superceding element, as Autodia::Diagram::Class has highest precedence it won't be superceded and so doesn't have a redundant() method. Superclass and Component do. Accessing and manipulating the Autodia::Diagram::Class $Class->Attributes(), Inheritances(), Operations(), and Dependancies() all return a list of their respective elements. $Class->Parent(), and has_child() return the value of the parent or child respectively if present otherwise a false. $Class->add_attribute(), add_inheritance(), add_operation(), and add_dependancy() all add a new element of their respective types. See Also Autodia::DiagramObject Autodia::Diagram Autodia::DiagramSuperclass Autodia::DiagramInheritance AUTHOR
Aaron Trevena, <aaron.trevena@gmail.com> COPYRIGHT AND LICENSE
Copyright (C) 2004 by Aaron Trevena This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.1 or, at your option, any later version of Perl 5 you may have available. perl v5.12.4 2009-06-24 Autodia::Diagram::Class(3pm)