Need more guidance on how to connect to an X4600

I have discovered the addystem.sh utility. Previously, I had tried to write in the xml file myself (mistake, since the addsystem.sh overwrites that file). I have noticed that this utility only allows IPMI connectivity to the X4600 Net management port.
Question 1: Does each system architecture/type have an unalterable configuration of this type, i.e. one must choose IPMI for the X4600? I thought that one could choose either to go in through the Net Mgmnt port or be able to get information as well through a console login.
Question 2: On the X4600 questions from addsystem.sh, what is the purpose of having a login name as well as a IPMI/Net Mgmnt port login name? Is this because data must be obtained via two methods?
Questions 2a: What if I only have a login uid/passwd defined and don't use the Net Mgmt port? Am I SOL?
Thanks,

Here is some info on the implementation of IPM. Each system must have TWO data sources defined: one system login and one system controller login.
The system login is also known as the domain login, or the operating system login. It gives you access to the Solaris (or Linux) operating system. The login you provide should allow you to run iostat and mpstat.
The system controller is known by many names, depending on the platform type:
System Controller/ALOM/ILOM/XSCF/SMS/SP
In particular, the ILOM exposes an IPMI interface. For platforms that expose the IPMI interface, we use ipmitool to get their data. This is the case for the X4600 platform. IPM uses the system controller to gather physical data such as temperatures, fan speeds, currents and voltages.
So to answer your questions:
1. Currently there is exactly one system controller type corresponding to a given platform. For the X4600, this is "X4600IPMI" in the ipmdc-systems.xml file. The address you specify is that of the ILOM.
2. addsystem.sh asks you for the system login (see above) and then the ILOM login.
2a. I'm assuming that by Net Mgmt port you mean the ILOM. The data collector collects different data from the two data sources. It actually needs both logins to get all the data that it needs.
Here is an example ipmdc-systems.xml if you want to monitor one X4600 system:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<systems xmlns="http://www.sun.com/xml/service/rtpmm/MonitoredSystems">
<system>
<systemID>SYSTEM_ID</systemID>
<enabled>true</enabled>
<dataSource>
<type>SystemLogin</type>
<connectionMethod>SSH</connectionMethod>
<address>ADDRESS_OF_OS_LOGIN</address>
<username>OS_LOGIN_USERNAME</username>
<password>OS_LOGIN_PASSWORD<password>
</dataSource>
<dataSource>
<type>X4600IPMI</type>
<connectionMethod>LOCAL</connectionMethod>
<address>ADDRESS_OF_ILOM</address>
<username>ILOM_USERNAME</username>
<password>ILOM_PASSWORD</password>
</dataSource>
</system>
</systems>

Similar Messages

  • In the middle of creating a book in aperture I need more photos. How can I add them to the browser at this stage?

    In the middle of creating a book in Aperture I need more photos. How can I add them to the browser at this stage?

    In the middle of creating a book in Aperture I need more photos. How can I add them to the browser at this stage?
    You can add more images to your book, by dragging them from the browser to your book album. Switch to the Library Inspector, select the album or project with the images in the source list, and then drag these images onto the book icon. That will add them to the book album, and then double click the book album again to continue working with the book.
    Regards
    Léonie

  • I need more disk space how do I do this?

    need more disk space how do I do this?

    First, empty the Trash if you haven't already done so. Then reboot. That will temporarily free up some space.
    Use a tool such as OmniDiskSweeper (ODS) to explore your volume and find out what's taking up the space. You can delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one.
    Proceed further only if the problem hasn't been solved.
    ODS can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    After installing ODS in the Applications folder, drag or copy — do not type — the following line into the Terminal window, then press return:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up.
    I don't recommend that you make a habit of this. Don't delete anything while running ODS as root. When you're done with it, quit it and also quit Terminal.

  • What if i need more than one prepareStatements per connection

    hi all!!
    Please take some time to look into this scenario.
    On the front end: User enters/ updates his/her records and submits. An ArrayList of object goes to backend.
    On back end: i have to loop for the size of the ArrayList submitted and see if some record is to be updated or inserted.
    Now at back end i do following steps:
    I have only one Connection object named connection.
    Step 1:
    query (say query1 )to see if the record in DB exists for the primary key as extracted from the element from ArrayList. So one prepareStatment ( say prepareStatement1) for this. I write a query and execute :
    prepareStatment1= connection.prepareStatement(query1);
    Step2 :
    A query ( say query2) to update Data in DB. And i have a separtae prepareStatement for this and i execute
    prepareStatment2 = connection.prepareStatement(query2);
    Sep3
    A query (say query3 )to insert Data in DB. And i have a separtae prepareStatement for this and i execute
    prepareStatment3 = connection.prepareStatement(query3);
    Step4:
    for: size of arraylist:
    1. take out the element at ith index from the list.
    2. see if the record exists i.e execute step1 and see if resultSet.next() is true.
    3. if record exists step2 applies so execute update query
    4. if record doesnot exist then go to step3 and execute insert query
    A weird thing happened .. insert was running fine but update was not. May be i was not checking appropriately. BUT the error that occurrd was that
    [Microsoft][ODBC SQL Server Driver]Connection is busy with
    results for another hstmt.
    So i changed my path and in loop i prepareStatement and execute query to see if record exists or not and store the result in some boolean variable and then close this prepareStatement. and if the result existed again prepare a statement for update or else prepare a statement for insert and execute the respective.
    and then again close this prepareStatement and go for next iteration of loop
    so each iteration i am preparing statement and then closing it BECAUSE Connection doesnot allow more than one statement per connection at one time. Am i right.??
    what should i do.? Although i have solved problem by closing and preparing in loop but that is so inefficient. Is there some elegant way???
    please reply.
    PS: I am using ms sql server 8.0 as my DBMS. I am developing web application using Sun Creator.

    No, you can use as many PreparedStatements as you like, all from one Connection, and you can keep them open as long as you like. (I do this with no problems.) Where you will run into problems is when you are trying to use two ResultSets at the same time. That's what the error message means, it just doesn't use JDBC terminology.

  • Need advice/guidance on how to export .FLV videos for my website.

    Can anyone help me?
    I am trying to embbed a .swf/.flv video into my website,
    using dreamweaver and flash cs4. But when i do so, and i load the
    video, the .FLV playback componet wont load or the browser dosent
    even try to load the data at all, it just plays the video. So users
    cant mute, have volum control, pause, stop or anything. Can someone
    please help me? i looked all over the net for 2 days and cant find
    a single turtorial or anything. I know alot of website use .FLV but
    how? and how do you export it?

    You need three parts for the flv playback: the swf, the flv,
    and the video player skin swf. If you create the flv from your
    Flash movie by importing the original video, Flash should make all
    of those parts for you. Upload each of these files to your server
    and the file should play as expected.
    Can you describe in more detail what you are doing that may
    be different?

  • I am trying to sync 11 new songs onto my iPod, and I have over 2 GB of free space, but my computer keeps telling me I can't sync because I need more space. How can that be?

    My iPod touch is not syncing correctly. I'm trying to add 11 new songs, and a message pops up telling me I need 24 more mb of space. In the bar below, it says I have over 2 gb of space free. Additionally, a playlist I was trying to add songs to is not adding the correct songs. In my iTunes, it has all the music, but when I synced, only 2 of the songs were transfered onto my actual iPod. I don't know what's going on or why. Help is much appreciated!!

    Make sure that yo have the boxed chanced to only sync the checked music. It appears that it is trying to sync ore than those.
    You can try unsycing all music and resyncing.

  • Aggregated planning in SNP...almost there but need more guidance...

    Gurus, 
    I am working on Aggregated SNP for our company.
    1. I have created a Loc Prod hierarchy. The hierarchy has 1 real Location under a pseuso Location and has 6 real products under pseudo header product.It looks like the screenshot below.
    2. I do not have a PPM hierarchy or a Resource hierarchy
    3. I run the Location heuristic for the header AGG_MFIBER@ Location 1010. I get the correct Pl orders for the header product. The Source Determination is set to Only Sub level.
    4. I am able to disaggregate the header values to the sub-products fine.
    5. But when I look at the Planned orfders for the sub products I see that there is no source of supply even though I have the PPMs for them.
    Do I need to create a PPM hierarchy and then disaggregate it for the system to get the lower level PPMs?
    I will work on it next week but if I can get some help it will save me a great deal of time.
    Thanks in advance,
    Subash

    Hi Cyrille,
    How are you? It has been long....
    This may end up in a long exchange....
    1. I struggled for sometime before I was able to set up the LOC Hier and PROD Hier and generate the LOCPROD Hier, as my screenshots show.
    2. I was able to run SNP for AGG_MFIBER and then disaggregate it to sub products. That is when I found the source of supply issue. I saw that the Header product did not have a SOS and created an SNP PPM manually. This is just after I posted the message.
    3. After that I tried to create a SNP PPM Hierarchy. I was able to add AGG_MFIBER to level for header PPM. After that I added all the sub products in the above LOCPROD Hierarchy and was able to save the same. I went to the edge table /SAPAPO/RELDHPPM and saw 57 entries.
    4. After that I ran SNP for AGG_MFIBER with Source Determination at 'Only Sublevel', the system created planned orders to cover the requirements but it still did not pick up the source of supply for AGG_MFIBER.
    5. Then I changed the Source Determination from 'Only Sublevel' to 'Only Header level' and executed SNP. This time it put ONE planned order only for the header material in the second period but it did pick up the Source of Supply.
    Still trying to understand the logic...
    Any ideas here as I try to get further...
    Thanks again,
    Subash
    Message was edited by: Subash Nanjangud
    Cyrille,
    After working thru the day on this issue I have been able to make things work...I will update the details tomorrow morning..
    Thanks,
    Subash

  • Need help/guidance with how to add a rescue email to my apple ID

    Ive been unable to access my itunes account because it keeps on asking me for my security questions (which i have never been asked before) I have unfortunetly forgotten the answers and realize that i can send myself an email with the answers. However i didnt add a rescue email when making my apple ID so could someone walk me through the steps as to how to do this now.
    thanks

    You won't be able to add a rescue email address until you can answer your questions, you will need to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use steps 1 to 7 half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312
    Navigate to appleid.apple.com using your web browser.
    Click "Manage your account"
    When prompted, sign in using your Apple ID and password.
    Click Password & Security
    You'll be asked to answer 2 of your 3 security questions before you can make any modifications. If you are unable to remember your answers, you can choose to send an email to your rescue email to reset your security questions.
    After you've validated your identity by correctly answering your security questions, click Edit to the right of your rescue email address.
    Once you've finished editing your rescue email address, click the Save button directly below the email field.

  • I need more space. How can I resize partition?

    my /dev/sdb4 is a NTFS partition that has 454.4 GB total, and 392.2. GB free. I've got  /home on /dev/sdb3.  Can I resize my NTFS partition (sdb4) to make is smaller, and then make my sdb3 bigger without losing any of my data on the NTFS partition?
    btw, / is on /dev/sbd1/
    Last edited by ronandi (2008-05-05 23:20:38)

    Statix wrote:
    If you are running arch off your hd, yes you will need to make a cd/usb.
    And windows doesn't mind resizing in my experience. It just runs a disk check after with no problems.
    In this situation, it appears the partition will have to be moved.
    Last time I moved my vista partition, I had to fix it with the install disk.
    Don't know about XP, never tried moving partitions in it.

  • File private/var/vm/sleepimage is 24.5gb and I need more space! How can I slim that down?

    This is the biggest file on my mac and is taking up a lot of space! My startup disk is full...Is there a way of slimming this file down. Also the file is private so it wont let me see it....

    Triple-click anywhere in the line below on this page to select it:
    pmset -g | grep mode | open -ef
    Copy the selected text to the Clipboard (command-C).
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V).
    A TextEdit window will open with the output of the command. If the command produced no output, the window will be empty. Post the contents of the TextEdit window (not the Terminal window), if any — the text, please, not a screenshot. The title of the window doesn't matter, and you don't need to post that.

  • Impossible to open muse CC, it needs more information, try to connect but cannot connect...

    I need to work with Muse CC, but It doesn't want to open.
    It tells me it need more information and want to connect to the Adobe server.
    After 10 sec. tells me it cannot connect and ask me to connect my computer to the internet... I'm connected !!!!!
    Help !!!

    Chat Now button near the bottom for Activation and Deactivation problems may help
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html
    OR
    -http://helpx.adobe.com/creative-cloud/kb/error-downloading-cc-apps.html
    -http://forums.adobe.com/community/download_install_setup
    -http://helpx.adobe.com/creative-cloud/kb/troubleshoot-cc-installation-download.html
    -http://helpx.adobe.com/x-productkb/global/errors-or-unexpected-behavior-websites.html
    -http://helpx.adobe.com/creative-cloud/kb/unknown-server-error-launching-cc.html
    -Server won't connect https://forums.adobe.com/thread/1233088

  • How to connect my CQ60 notebook to TV with "HDMI to RCA" cable?

    Hi there
    I have a Compaq Presario CQ60-213TU notebook computer which has an HDMI port. I bought an "HDMI to 3RCA+VGA" cable from ebay. I was able to connect my laptop to the extenal display with VGA, but when i tried to connect my laptop to my non HD tv it did not connect.
    Has anyone got a solution how to connect my laptop to my tv with "HDMI to 3RCA" cable.
    Please reply asap.
    Thanks

    you said it did not connect. what do you mean. what was displayed? what input did you have the tv on? need more info than "did not connect"
    click Kudos to say thanks if I helped

  • Help how to connecting Oracle SQL Developer 3.0  with Oracle Database 11g

    Hello,
    I'm new in oracle developer yesterday i setup in my laptop database 11g the last version (11.2.0.1.0), well i follow steps still i got succeed to install, and i got my local host URL and i test my user name and password work very well, my problem now is i try to connect database 11g using Oracle SQL Developer 3.0 (3.0.04.34) but always filed and with my little experience i don't know where the wrong. as i said i test database after finish install is work fine the my URL is https://Ahmed-HP:1158/em and i test my username and password that i already set before is enter normal in my local database, please i need help to know how i connect database with Oracle SQL Developer 3.0 (3.0.04.34).
    Thanks,

    885173 wrote:
    EdStevens, thanks for your quick answer, sorry for my explain was doesn't clear, i open oracle sql developer and choose new connection i set connection name system_orcl username:system password:*i set my password that i create when i setup database*
    -Now the link that i got after finish install database is https://Ahmed-HP:1158/em so i have question about this point Hostname and port if the link to access database is this https://Ahmed-HP:1158/em so this mean i typing at Hostname:localhost and port:1158 ?
    because the message when i test connection always is filed and I'm sure i typing username and password and SID:orcl as i set when install database.port 1158 is what the dbcontrol (Oracle Enterprise Manager) is listening on. OEM is NOT the database. As far as the database is concerned, OEM is "just another client".
    Actually, the database doesn't listen for requests on any port. There is another process, the "listener" that listens for requests to connect to the database. Typically, it listens on port 1521. You should have a tnsnames.ora file set up to resolve a connection request to the correct host. You can read more on this at http://edstevensdba.wordpress.com/2011/02/09/sqlnet_overview/

  • How to connect in itunes to use push notifications for iphone5

    I need some help. How to connect in Itunes so i can use push notifications in my iphone...

    Check to the right --->
    Under More Like This

  • Need more Ports!

    I have a wireless WRT54GS Router but I need more ports in back to connect other rooms(wired). What is the device that I need?

    Go out and buy a 4, 8 or 16 port switch.  Plug it in and you have your extra ports.

Maybe you are looking for

  • IPod Classic Syncing Error

    I have an iPod Classic 80GB from a few years ago. and everything works well besides i cannot sync it or see my music that was on it before it started to have issues. I can still scroll throught the menus, so it is not the OS, but i cannot see my musi

  • Export Data- csv Extremely Slow

    I am using SQL Developer 1.5.1 Build MAIN-5440 on Mac OS X 10.5.5 and the Export Data=>csv command is taking 20 minutes to show the file dialogue window. The query takes the expected amount of time and once I choose to save the file the remaining rec

  • Call log enhancement

    call log option to search by contact, to see a list of when you last had a call from your contact

  • Security questions reset not working

    I am trying to change my security questions because I forgot the answers to them but when I click on "Forgot your answers? Send reset security info email to j•••••@yahoo.com" I never get the email to reset them. My email also does not start with a 'J

  • Searching for equivalent Labview supported (Arm microcontroller based)development board

    hi every one i need to work on some development kit based on 32 bit microcontroller, i already have AVR 32 based EVK 1100 evaluation kit, but i am interested to work with Labview enivroment on ARM microcontrollers, can anyone help me for this, how co