AIX Monitoring works for 6.1 and not if 6.1.0.0 even if I manually install

I pushed scom 2012 agent to a list of AIX servers wherein it got successfully installed for sever it discovered version as 6.1 and failed with the message ( Signed certificate verification operation was not successful )for the servers it discovered
as 6.1.0.0 . even if I manually install  . Following is the message I got on running Get-OS version.sh.
<DiscoveredOS><Hostname>HOSTNAME</Hostname><OSName>AIX</OSName><OSAlias>AIX</OSAlias><Version>6.1.0.0</Version><Arch>powerpc</Arch><IsLinux>false</IsLinux></DiscoveredOS>

Yes, SCOM can manage each server in the cluster but you will need to do the following:
- Make sure each node in the cluster is registered in the DNS server SCOM uses. If you cannot update DNS you will need to update the hosts file on each SCOM server that manages the agent.
- On each node, manually install the agent -->
http://technet.microsoft.com/en-us/library/hh212686.aspx
- After you install the agent you can manually generate the certificate by running the following command on the agent:
   /opt/microsoft/scx/bin/tools/scxsslconfig -h <hostname> -d <domain name> -f -v
Where <hostname> and <domain name> are what you have in DNS for the server.
- Run the discovery wizard and SCOM should sign the certificate and manage the agent.
Regards,
-Steve

Similar Messages

  • Auto To working for one material and not working for other material

    Hi,
    Hope everybody is doing fine.
    I have configured the auto TO. Its working fine for one material and not working for the other material. I checked the material master and wm 1,2 views have the same fileds / values. What could be wrong?
    I didn't setup the back ground processing job. Is that is affecting it?
    thanks for any help.
    regrads,
    KHAN

    Thnaks,
    You are right but then what could be wrong? Its working for one material and not working for otehr material? Any clue?
    Appreciate your time charlie

  • Prgrmatic viewlink setting for hgrid is working for one level and not remai

    Hi All,
    I have create 2 VO objects dynamicaly and created 2 VL's dynamically .I have a static HGrid.and iam setting viewlinks dynamically.It is working for 1 level but not another leve..For Example.. Grid id displaying projects to Tasks but not tasks to subtasks.
    here is my code
    public void createViewLink(){
    OADBTransaction dbTransaction=getOADBTransaction();
    OAViewObject obj = (OAViewObject)this.findViewObject("TestProjects1VO1");
    OAViewObject obj1 = (OAViewObject)this.findViewObject("TestTasks1VO1");
    AttributeDef[] prjLinkAttrs = new AttributeDef[] { obj.findAttributeDef("ProjectId") };
    AttributeDef[] taskLinkAttrs = new AttributeDef[] { obj1.findAttributeDef("ProjectId") };
    ViewLink vl = createViewLinkBetweenViewObjects("TestPrjToTestTasksVL","TestPrjToTasksAcc",
    obj,prjLinkAttrs,obj1,taskLinkAttrs,null);
    //OAViewObject obj3 = (OAViewObject)this.findViewObject("TestTasks1VO1");
    OAViewObject obj2 = (OAViewObject)this.findViewObject("TestRecTasks1VO1");
    AttributeDef[] taskAttrs = new AttributeDef[] { obj1.findAttributeDef("TaskId") };
    AttributeDef[] parentTaskAttrs = new AttributeDef[] { obj2.findAttributeDef("ParentTaskId") };
    ViewLink vl1 = createViewLinkBetweenViewObjects("TaskToTestTasksVL","TaskToTasksAcc",
    obj1,taskAttrs,obj2,parentTaskAttrs,null);
    OAHGridBean hgrid=(OAHGridBean)webBean.findChildRecursive("HGridRN");
    OAHGridHierarchyBean hgridHierarchy = (OAHGridHierarchyBean)hgrid.findChildRecursive("TreeRN");
    OATreeLevelBean treeChild = (OATreeLevelBean)hgridHierarchy.findChildRecursive("TreeRN");
    OAWebBean nodeDef1 = (OAWebBean)treeChild.findChildRecursive("nodeDef1");
    nodeDef1.setViewUsageName("TestProjects1VO1");
    nodeDef1.setViewAttributeName("ProjectName");
    OATreeChildBean childNode1 = (OATreeChildBean)treeChild.findChildRecursive("childNode1");
    childNode1.setAttributeValue(VIEW_LINK_NAME,"TestPrjToTestTasksVL");
    childNode1.setAttributeValue(VL_ACCESSOR_NAME_ATTR,"TestPrjToTasksAcc");
    OAWebBean nodeDef2 = (OAWebBean)childNode1.findIndexedChild(childNode1,"nodeDef2");
    nodeDef2.setAttributeValue(VIEW_USAGE_NAME, "TestTasks1VO1");
    nodeDef2.setAttributeValue(VIEW_ATTRIBUTE_NAME,"TaskName");
    %%%%%%%%%%%%%%%Till Here grid is getting data%%%%%%%%%%%%
    This node is not getting data............i.e sub tasks are not getting data
    OATreeChildBean childNode2 = (OATreeChildBean)childNode1.findIndexedChildRecursive("childNode2");
    childNode2.setAttributeValue(VIEW_LINK_NAME,"TaskToTestTasksVL1");
    childNode2.setAttributeValue(VL_ACCESSOR_NAME_ATTR,"TaskToTasksAcc");
    OAWebBean nodeDef3 = (OAWebBean)childNode2.findIndexedChild(childNode2,"nodeDef3");
    nodeDef3.setAttributeValue(VIEW_USAGE_NAME, "TestRecTasks1VO1");
    nodeDef3.setAttributeValue(VIEW_ATTRIBUTE_NAME,"TaskName");
    Please help me .. ihave spent my whole daya on this issue.
    Thanks
    Soujanya

    Sure Sumit.
    OADBTransaction dbTransaction=getOADBTransaction();
    OAViewObject obj = (OAViewObject)this.findViewObject("TestProjects1VO1");
    OAViewObject obj1 = (OAViewObject)this.findViewObject("TestTasks1VO1");
    OAViewObject obj2 = (OAViewObject)this.findViewObject("TestRecTasks1VO1");
    // OAViewObject obj3 = (OAViewObject)this.findViewObject("RecTasks1VO1");
    AttributeDef[] prjLinkAttrs = new AttributeDef[] { obj.findAttributeDef("ProjectId") };
    AttributeDef[] taskLinkAttrs = new AttributeDef[] { obj1.findAttributeDef("ProjectId") };
    ViewLink vl = createViewLinkBetweenViewObjects("TestPrjToTestTasksVL","TestPrjToTasksAcc",
    obj,prjLinkAttrs,obj1,taskLinkAttrs,null);
    AttributeDef[] taskAttrs = new AttributeDef[] { obj1.findAttributeDef("TaskId") };
    AttributeDef[] parentTaskAttrs = new AttributeDef[] { obj2.findAttributeDef("ParentTaskId") };
    *************This cide was missing ...********************************
    /* Retrieve the first row of the master rowset */
    Row firstDept = obj.first();
    /* Get iterator over details collection via the view link accessor attribute */
    RowSetIterator empsInDeptRowSet = (RowSetIterator)firstDept.getAttribute("TestPrjToTasksAcc");
    /* Get view object created by the framework to handle view link traversal */
    ViewObject viewObjectForAccessorRowSet = empsInDeptRowSet.getRowSet().getViewObject();
    /* Now, create the 2nd-level detail between this view object, and reports */
    *************This cide was missing ...********************************
    ViewLink vl1 = createViewLinkBetweenViewObjects("TaskToTestTasksVL","TaskToTasksAcc",
    viewObjectForAccessorRowSet ,taskAttrs,obj2,parentTaskAttrs,null);
    I the above vl1 i gave obj1 before .. that was the difference...BAsically using the accessor ... if we give as source for next levevl .. it worked.
    Both ViewLinks were separate and now there is a link ............ :)
    Now iam facing problem for recursion ......... :)
    Soujanya

  • Just bought 2 Apple 6 plus phones. Cannot get my husbands email to connect. He works for the state and not sure if that is the problem or not. All his information is correct.

    Just bought two new iPhone 6 plus phones.  Cannot get the email to load on my husbands phone for his work.  He works for the state and I don't know if that is the issue or not.  Any suggestions?

    Your husband should contact his IT department at work to find out if he is allowed to set up his work email on his personal device and if so, how to do it.

  • MultiServer Monitor Works on one PC and not another??

    Super strange, but I have two PCs at my desk.  On one of them I can log into a CF 8 server and bring up the MultiServer Monitor and add all my CF 8 Servers and it works great.  On my other PC (the one I setup JUST to display the Monitor all day) it always says Permission Denied for all the servers.  The server I connect to and the credentials used are identical in both cases.  Also, both PCs are on the same subnet (not on the same subnet as the servers).  Anyone got any ideas??  Notice that in both screen shots (one from each PCs browser) the URL is the same and I've keyed the username/password used on the failing workstation more than a dozen times to make sure I'm keying it correctly.  I've even copied and pasted it so I know it is correct.  Thanks for any input.

    When you upgraded, did you remove the first install? I can't think of a reason off-hand, but have screwed up java before, and an update file may not overwrite the messed uyp part. just a thought, tah.
    --Jon Baumann                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Why does wireless work for one laptop and not the other?

    I have two laptops:
    1) MacBook: 10.4.8, Airport Exteme (Firmware 1.0.46)
    2) G4: 10.3.9, Airport Extreme (405.1 (3.90.0.p18)
    I have the two machines sitting right next to each other in my apartment. Machine #1 has full wireless signal strength. Machine #2 barely has any wireless signal. Neither is running Interference Robustness. Any ideas why one would work and the other would not, or suggestions as to how to debug this problem?
    I have tried stopping and restarting the Airport Extreme card on machine #2. I have also tried power cycling machine #2. This does not fix the problem.
    A little more history: for a long time I was having problems with machine #2 dropping the wireless connection. As part of trying to work around these problems I turned on Interference Robustness on machine #2. This fixed the dropping signal problem, but left me with weak signal strength. I shut off Interference Robustnes but ever since then the signal has still been weak on machine #2.
    Mac Mini Duo 1.66 GHz, 2 GB   Mac OS X (10.4.6)  

    The base station uses a single channel which all clients must use to connect.
    Have you checked the antenna connection into the card? Many people are surprised about how far the wire is actually supposed to be pushed into the card. Compare the connection with the photos in KB 108039, Properly attaching the antenna on an AirPort Extreme Card.

  • Send email works for one user and not another ?!

    Hi there
    Am Apex Newbie and am developing in-house helpdesk / ticket / call logging / issue tracker type system ..
    Am putting final bells and whistles on app like sending email on raising of a problem. This is being done via Apex_Mail using new Send Email page process attached to a button.
    I.e it's not being done via UTL_SMTP explicitly in a trigger or anything.
    Here's the problem for userA the sending of email works perfectly for userB it doesn't work .. does anyone have any suggestions as to what may be wrong ?
    I thought I read somewhere that UTL_SMTP wasn't granted publicly in Apex and had to be explicitly given to individual users but I may well be mistaken.
    Any help / suggestions gratefully received .. all I can think of doing is logging onto Apex Admin and looking at the mail queue and see if that will give me any clue but Apex Admin is not really my bag per se ?!
    Thanks in advance
    Wiggywig

    Hi,
    Can you see any error from Apex logs?
    Check mail queue and mail log
    http://download.oracle.com/docs/cd/E17556_01/doc/admin.40/e15521/adm_mg_service_set.htm#sthref348
    What email address you use in From field?
    Somehow I think this relates more to SMTP server policy about sender than Apex.
    Regards,
    Jari

  • GL security works for one report and not for other report.

    Hi everybody,
    We have setup GL security and for our discoverer reports we are calling
    APPS.GL_SECURITY_PKG.VALIDATE_ACCESS( sl.SET_OF_BOOKS_ID,gl.CODE_COMBINATION_ID ) = 'TRUE' in the query.
    Now among 3 reports, 2 are working fine but one report is not showing any data if i use the above condition.
    Hint: That particular report is based on a Materialized view.
    Any ideas??
    Thank you
    --Kumar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi Rod,
    Thanks for your reply but when i try to use the where
    condition in the folder in Admin, its not recognizing the Apps.GL_SECURITY_PKG.VALIDATE_ACCESS....
    Any Suggestion on this?
    Thank you
    --Kumar                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Iphone 6 (Verizon,64GB,space gray)  microphone works for text dictation and Siri but stopped working for calls and voice memos.

    My iphone 6 the micorphone has stoppped working unless I speak loudly right into it and its still not clear during calls and voice memos. But it works just fine for Siri and text dictation. I use the earbuds for work so not sure how long its been going on. Only change is I updated to iOS 8.1.3. Not sure if I should exchange my phone or if its a software glitch since the same mic seems to work for some things and not others. Any ideas would be apreciated.
    iPhone 6
    Space Gray
    64GB
    Verizon

    Try to reset the phone by holding the sleep and home button for about 10sec, until the Apple logo comes back again. You will not lose any data by resetting, but it can cure some glitches.
    If this does not help, setting it up as new device would be the next step:
    How to erase your iOS device and then set it up as a new device or restore it from backups

  • I work for the County and we purchased a copy of Adobe Photoshop CS2 long ago.  The person that did the order is no longer here.  All I have is the CD Disk that is new but i did not know the key code is.  Is there a way to get the keycode for this?

    I work for the County and we purchased a copy of Adobe Photoshop CS2 long ago.  The person that did the order is no longer here.  All I have is the CD Disk that is new but i did not know the key code is.  Is there a way to get the keycode for this?

    It would not work anyway. The activation servers have been retired and Adobe has provided a new CS2 download along with a new serial number for CS2 owners.
    Download Acrobat 7 and CS2 products
    Gene

  • My apple tv will not authenticate my nba league pass login--I am in the United States and the same login/pw works for my iPad, but not for apple tv.

    My NBA League Pass login cannot be authenticated -- I am in the United States and the same league pass name and password are working for my iPad, but not for my apple tv.

    I have this same issue and am becoming quite upset. NBA has absolutely no contact information to call and resolve this issue. I just spent $139.99 and cannot connect to Apple TV, while the same login works just fine on my iMac and iPad. When I signed up, the information provided indicated that I could view live games on Apple TV. What the ****?

  • HT1349 The nice man Joseph Shen helped me with my google problem on my iPhone and worked for 2 days and now not working again please help me solve this problem were I can retrieve my messages on the I phone when I am not at home  on my wi Fi is the only t

    The nice man Joseph Shen helped me with my google problem on my iPhone and worked for 2 days and now not working again please help me solve this problem were I can retrieve my messages on the I phone when I am not at home  on my wi Fi is the only time it works correct. Bill. [email protected]  708 752  3667 

    http://lifehacker.com/5852948/what-to-do-if-youve-forgotten-your-iphones-passcod e

  • My time capsule worked for several weeks and is now telling me backup disk not available? What to do?

    My time capsule worked for several weeks and now is not backing up. Tells me backup disk not available? Any suggestions?

    This is a lion bug..
    Generally just rebooting the TC will get it back. Otherwise you need to reset the TC and redo its setup.
    Tell us a bit more.. but there is as yet no work around or fix for lion.
    Certain things help.. but wireless is also a weak link. It will generally work better by ethernet.
    Try and get back if it is still bugging you.. I can suggest some other things.. but I do not know of or read a bullet yet.
    (Snow and TC firmware 7.5.2 which I run do not have this issue.. so the bug was introduced with Lion and 7.6 firmware)

  • After downloading the new lion os x 10.7.2 with cloud and lion recovery update my internet doesnt work. I have tried 2 different networks that work for other people but not me. help?

    After downloading the new lion os x 10.7.2 with cloud and lion recovery update my internet doesnt work. I have tried 2 different networks that work for other people but not me. help?

    Logic's preference files may have become corrupted:
    1. Quit Logic Pro
    2. In the Finder, press and hold down the "option" key then select "Library" from the "Go" menu
    3. Open the "Preferences" folder
    4. Drag the following files to the Trash:
        - com.apple.logic.pro.cs
        - com.apple.logic.pro.LSSharedFileList.plist
        - com.apple.logic.pro.LSSharedFileList.plist.lockfile
        - com.apple.logic.pro.plist
        - com.apple.logic.pro.plist.lockfile
    These files will be re-created when Logic is next opened.

  • My iphone 4s siri is not working, it just worked for a while and stopped. I've checked the data plan and it is intact, i even switched my sim to a friends phone and his siri worked but mine refused even with a wireless network. pls help.

    My iphone 4s siri is not working, it just worked for a while and stopped. I've checked the data plan and it is intact, i even switched my sim to a friends phone and his siri worked but mine refused even with a wireless network. pls help.

    Troubleshooting Siri
    http://support.apple.com/kb/TS4079

Maybe you are looking for

  • I can't view youtube videos on my ipod touch (just updated it to iOS6)

    I was having trouble viewing youtube vids on my ipod touch, thought it may be a problem since i hadn't updated, but i tried updating to iOS6, and installed the new youtube app, but it still won't work. i also tried going through safari, but it still

  • Upgrading 9i (9.2.0.6) to 9.2.0.8

    Hi hussein/helios, I want to upgrade my EBS 9i database to 11g. But the pre-requisite is to upgrade it first to 9.2.0.8 to support direct upgrade to 11g. Am I on the right track? I am upgrading our 9.2.0.6 database to 9.2.0.8 but I am at remote site.

  • Auditing select statemet of fnd_user

    Hi, in EBS , i would like to audit which fnd_user (ebs login user)has selected any table via form.Because at db level auditing shows me the user as APPS user . But i want to know who is this APPS user in EBS. Thanks.

  • Keyboard and mouse pad do not work; authorised service?

    the keyboard and mouse pad on my new macbook (3 weeks old)have stopped responding. I have tried everything to restore it except reinstalling the operating system. The disk utility and hardware test do not show any problems, and when I attach an exter

  • Remove DNS entries and reset from the Terminal

    I have a DNS service running on my Mac Server and it seems to be screwed up, because I can not remove any entries. Initially, it let's me remove them...but when I click save...they all appear again! What I want to do is to remove all entries manually