Does Ops Center 12c Release 1 PSU2 (update 2) work with T4 and solaris 11.1

From the release notes of Ops Center 12c Release 1 PSU2 (update 2)
Issues With Upgrading to Oracle Solaris 11.1
Oracle Solaris 11.1 is supported in Oracle Enterprise Manager Ops Center 12.1.2.0.0 but is not supported in prior versions of Oracle Enterprise Manager Ops Center. In addition, an issue with Oracle Solaris 11.1 prevents Oracle VM Server for SPARC management on Oracle SPARC T4 servers using the Oracle Solaris 11.1 OS. See the Oracle Enterprise Manager Ops Center Release Notes for more information.
Does any one know if there has been a fix for this yes

We were told this was actually a problem in OC not S11.1, and this was fixed in U2.
I know this contradicts with the other answer, but thats the info we received from Oracle.

Similar Messages

  • Was Enterprise Manager Ops Center 12c released?

    Was Enterprise Manager Ops Center 12c released? how can I get access to it?

    Sorry, my morning coffe didnt kick in yet. Nevertheless if it will be available its gonna by on eDelivery most likely.
    Edited by: Tommy.B on 2012-02-20 03:24

  • Site list update not working with TED and Zenworks for Servers

    Product: Zenworks for Desktops 7Sp1 and Zenworks For Server/TED 7Sp1HP5
    Subject: Site list update not working with TED and Zenworks for Servers ,
    all on Linux
    Description: We have an exiting environment with 6 ZfS Servers and now we
    brought up a new Server for another location. I configured all same as on
    the other Server and the new one created all NAL-Apps at the new location.
    But in the Application Site list on the golden App is this Application
    missing. So I clicked on the Link up site list on the Distribution Screen
    in C1. On ApplicationSite list the App from the new location is missing.
    So I removed all and added the new from the new location and now i see all
    in the application site list.When I install an app on the client on the
    new location NAL is connecting alway th the same (wrong location-server
    and i get an msi error 1612 or id=53272 with path=\Wrong serverpath to
    file.
    I looked on the other tab on C1 at the golden app an I see the backlinks
    are going to all other servers without the new one. Software installation
    on other locations are ok
    Regards

    Andreas,
    I forgot to mention that you can also set the loging level on the Distributor and the Subscriber to 6. to do this at the Zenworks Server Management prompt type "setconsolelevel 6" if you want to capture this to the log file ted.log then use "setfilelevel 6"
    Next delete the Distribution from the Subscriber and then re-push the channel.
    What we are looking for here in the log is the creation of the object and the linking information about the gold object. it should look like this (not the failure part ;-))) )
    In this excerpt you will see the entry
    Golden App =
    This should be were the link is to
    You can check this both ways in the Golden App and in the Distributed Application.
    Here is a log from me that shows this info as an example of what you should be looking for.
    2008.05.29 03:35:41 [TED:Work Order In(yourserver.yes.com)] Receiving distribution: Creating new application failed,
    Subscriber Tree Name= YOUR-TREE,
    Subscriber DN = SUBSCRIBER_YOURSERVER.BRN.FL.SUBS.SUBSCRIBERS.ZSM. GRS.CBH,
    Golden App = SCRIPT-MS-HOTFIX.APP.BRN.ZENGOLD.GRS.CBH,
    Attempted AppName = SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH,
    error message: Failed creating SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH. With error message: Setting the trustee for BRN.HAVERHI.PALM.FL.CBH on the file "VOL1:\ZEN\UTILS" failed. Look in subscriber log file for more details..
    2008.05.29 03:35:41 [TED:Event Processing] Handle Event: Work order IN completed... Creating new application failed,
    Subscriber Tree Name= YOUR-TREE,
    Subscriber DN = SUBSCRIBER_HAVERHI-FLBRN1.BRN.FL.SUBS.SUBSCRIBERS.ZSM.GRS.CBH,
    Golden App = SCRIPT-MS-HOTFIX.APP.BRN.ZENGOLD.GRS.CBH,
    Attempted AppName = SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH,
    error message: Failed creating SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH. With error message: Setting the trustee for BRN.HAVERHI.PALM.FL.CBH on the file "VOL1:\ZEN\UTILS" failed. Look in subscriber log file for more details..
    2008.05.29 03:35:41 [TED:Event Processing] Received (from haverhi-flbrn1.yesbank.com) Creating new application failed,
    Subscriber Tree Name= YOUR-TREE,
    Subscriber DN = SUBSCRIBER_HAVERHI-FLBRN1.BRN.FL.SUBS.SUBSCRIBERS.ZSM.GRS.CBH,
    Golden App = SCRIPT-MS-HOTFIX.APP.BRN.ZENGOLD.GRS.CBH,
    Attempted AppName = SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH,
    error message: Failed creating SCRIPT-MS-HOTFIX.APP.BRN.HAVERHI.PALM.FL.CBH. With error message: Setting the trustee for BRN.HAVERHI.PALM.FL.CBH on the file "VOL1:\ZEN\UTILS" failed. Look in subscriber log file for more details..

  • UI not getting change update when working with LIST and INotifyPropertyChanged

    i was trying to know two way data binding. i have simple car class which extend INotifyPropertyChanged for notify the change to update UI. bind List object to few textboxes and notice when one textbox value change then other textbox value not updated. all
    textboxes bind to same property. so one's value change should propagate to other textboxes.
    this is my code
    public class Car : INotifyPropertyChanged
    private string _make;
    private string _model;
    private int _year;
    public event PropertyChangedEventHandler PropertyChanged;
    public Car(string make, string model, int year)
    _make = make;
    _model = model;
    _year = year;
    public string Make
    get { return _make; }
    set
    _make = value;
    this.NotifyPropertyChanged("Make");
    public string Model
    get { return _model; }
    set
    _model = value;
    this.NotifyPropertyChanged("Model");
    public int Year
    get { return _year; }
    set
    _year = value;
    this.NotifyPropertyChanged("Year");
    private void NotifyPropertyChanged(string name)
    if (PropertyChanged != null)
    PropertyChanged(this, new PropertyChangedEventArgs(name));
    This way i bind
    Car carTest;
    private void Form1_Load(object sender, EventArgs e)
    carTest = new Car("Ford", "Mustang", 1967);
    List<Car> ol = new List<Car>();
    ol.Add(carTest);
    this.textBox1.DataBindings.Add("Text", ol, "Make", true, DataSourceUpdateMode.OnPropertyChanged);
    this.textBox2.DataBindings.Add("Text", ol, "Make", true, DataSourceUpdateMode.OnPropertyChanged);
    this.textBox3.DataBindings.Add("Text", ol, "Make");
    when run the code then Ford was showing as make name but when change value in any textbox then that change is not shown in other textboxes.
    the moment i change this line List<Car> ol = new List<Car>(); to
    BindingList<Car> ol = new BindingList<Car>(); then code started to work fine.
    My Question
    1) what is the difference between List and BindingList class ?
    2) can't we use List<> for my situation instead of BindingList
    3)
    this.textBox2.DataBindings.Add("Text", ol, "Make", true, DataSourceUpdateMode.OnPropertyChanged);
    this.textBox3.DataBindings.Add("Text", ol, "Make");
    see the above code and tell me what is the advantage of using DataSourceUpdateMode.OnPropertyChanged because i have seen if we do not use this code
    DataSourceUpdateMode.OnPropertyChanged then also data change is propagated to other textbox when cursor focus change.

    I would have thought that'd work with List<t>, in fact I think there must be something wrong in your code there.  I can't spot it though.
    I recommend use of ObservableCollection rather than BindingList.
    The default on bindings is that changes are propagated from the target ( view ) to source ( vm ) when the control loses focus.
    If you want to do the equivalent to a keydown event handler in a viewmodel then onpropertychanged is the way to go.
    You want to avoid creating bindings in code unless you really really have to, it's way easier to put them in xaml.
    Even if your ui is dynamic, you can build xaml and use that to create the ui objects:
    http://social.technet.microsoft.com/wiki/contents/articles/28797.aspx
    The difference between BindingList and List is, literally, iBindingList.
    See
    https://msdn.microsoft.com/en-us/library/system.componentmodel.ibindinglist%28v=vs.110%29.aspx?f=255&MSPPError=-2147217396
    What probably isn't very obvious is that BindingList fires an event - iirc  itemchanged when properties on objects in it change.
    Maybe you did something wrong in your implementation of inotifypropertychanged.  I must admit, I can't see anything there though.
    You don't really need those magic strings since .net4.5 and you also don't need to explicitly implement inotifypropertychanged you could use:
    public event PropertyChangedEventHandler PropertyChanged;
    public void RaisePropertyChanged([CallerMemberName] String propertyName = "")
    if (PropertyChanged != null)
    PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    As used in this:
    https://gallery.technet.microsoft.com/WPF-Dynamic-Fonts-ad3741ca
    If you try that sample you can have:
    public class FontDetails : INotifyPropertyChanged
    or
    public class FontDetails
    And you can see it still notifies change successfully to both windows.
    Most wpf devs will use observablecollection rather than List or bindinglist.
    Observablecollection notifies addition or removal of entries.  It can be used to notify an entry has changed, but does not detect change of property.  You would have to raise the event in code if you want to tell it an item changed.
    Hope that helps.
    Technet articles: Uneventful MVVM;
    All my Technet Articles

  • Does my iPod Classic 30GB, software version 1.3 work with Lion and iCloud?

    I have a iPod Classic, 30GB, software version 1.3 does it work with Lion?

    only iOS devices like ipod touch(in wifi), ipad(in wifi), or iphone(in wifi) can sync automatically without the dock connector
    so yes you do have to sync them onto your classic

  • Oracle Enterprise Manager Ops Center 12c does not support RHEL 5.9 but did oracle have any plan to release patchs to support RHEL 5.9?

    To Forum Users,
    Below is my issue description:
    OPS Center 12C is successfully installed & configured on RHEL 5.9 but post installation while trying to configure controller (enterprise & proxy) using http url it redirect to secure port https but doent promts login screen page. Later i found RHEL 5.9 O.S doen't support Ops center 12c.
    Did oracle have any bug / patches for this issue ? or any planned release for / against this vulnerabilities ?

       Hello AkankshaSheoranKaler
    We have done the following, but we aren't able to resolve this issue. Thank you for your help!
    lf
    “This  happen if the software library is not accessible, readable or unmounted (if it is in shared file system).”
    On Enterprise Manager server [nsn175-105], we did the following:
    1. we modified /etc/exports to include this line: /export *(rw,no_root_squash,sync)
    we start nfs service by executing command “service nfs start”.  
    On Management Agent server (nsn175-89), we verified that we are able to mount /export directory of EM server.
    On Management Agent server, we started firefox browser and were able to run successfully https://nsn175-105.us.oracle.com:4904/empbs/genwallet
    After making this change, we ran agent deployment again. We encountered the same error as shown above.
    “You can fix the software library or you can download the agent bits in offline mode.”
    For fixing the software library, select Setup->Provision and Patching->Offline Patching, then select Offline Patching radio button, download: https://updates.oracle.com/download/em_catalog.zip. Next upload this zip file.
    “Try downloading the bits again”
    We are not sure what agent bits are. Would you please explain this and provide procedure how we can download this?
    (Here I have attempted to fix the software library, but I am new to Enterprise Manager and not sure how to interpret this).

  • Is there a way to schedule a report in Ops Center 12c on SMF services chang

    We are looking for a way to report on Solaris SMF changes (needed for PCI DSS). for example: If telnet service is enabled or disabled.
    We are using Enterprise Manager Ops Center 12c which alerts on SMF changes. but we would like to baseline the SMF enabled services and or run/schedule a report on which SMF service's are enable/disabled, compare host-A to host-B.
    Enterprise Manager Ops Center 12c has the knowledge of all that. the question is, if we can generate a report with the SMF changes?
    Thnaks,
    -Eli

    Hi David,
    BI Service do not allow consumers to select the document instance they want their data from. You can only get the data from document latest instance (in case it is scheduled) or from the user instance in their inbox (in case document is published) from the two corresponding call input parameter (getFromLatestInstance and getFromUserInstance).
    We are considering an improvement to allow consumers to select the document instance to use, but we are still in the process of gathering user feedback in order to implement this in the most convenient way (as we find challenging for consumers to know which instance are actually available when web service is called, and have them identify the one they request as well).
    Any idea or feedback is welcome.
    Regards,
    David.

  • How to receive notifications from Enterprise Manager Ops Center 12c

    Hi:
    - I have a question.
    Previous versions of Ops Center could forward notifications via JMX to users using:
    OBJECT_NAME = "com.sun.xvm.services:type=NotificationService"
    OPERATION_NAME = "getGeneratedNotificationsForUser”
    assuming that at least one user is configured to receive the notification.
    - I pointed jconsole against Ops Center 12c, but when I invoked the getGeneratedNotificationsForUser method,
    Ops Center 12c did not forward any notifications.
    - Has anyone else encountered this?
    - Is this an Ops Center configuration issue?
    - Is there another operation and object that can retrieve notifications ?
    Edited by: 915352 on Feb 17, 2012 1:20 PM
    Edited by: 915352 on Feb 17, 2012 3:55 PM
    Edited by: 915352 on Feb 17, 2012 3:55 PM

    Sorry, my morning coffe didnt kick in yet. Nevertheless if it will be available its gonna by on eDelivery most likely.
    Edited by: Tommy.B on 2012-02-20 03:24

  • Ops Center 12c - discovery of OVM Manager fails

    Ops Center 12c - discovery of OVM Manager fails
    I am trying to discover OVM Manager and the OC job fails, I noticed that its trying to connected using port 54321 which only listens to localhost.
    is there any way to change Ops Center discovery to use port 54322? I followed this process to enable port 54322 (port 54321 will only listen to localhost) http://docs.oracle.com/cd/E27300_01/E27308/html/vmiug-manager-tcps.html.
    Thanks,
    -Eli

    Did you get an answer to this? I am in the similar situation

  • Ops Center 12c w/ OVM 3.1.1?

    Is anybody successfully using Ops Center 12c with OVM 3.1.1?
    The discovery of the OVM Manager is failing for me. Without the manager, it's difficult to manage the OVSs....
    Rob

    You will have to configure Secure TCP (TCPS) for Oracle VM Manager (Doc ID 1456338.1)
    Your OVMM is listening on port localhost.localdomain:54321 it should be listening on *.54321.
    The only way to get it working is to configure a secure TCPS. This will allow your OVMM to listen on *.54322
    Remember when you add the OVMM asset select port 54322 and TCPS.
    Good luck.

  • I updated my macbook with lion and airdrop does not show up in the finder, how could this be?

    I updated my macbook with lion and airdrop does not show up in the finder, how could this be?

    shldr2thewheel wrote:
    If this is the case: How to enable AirDrop over ethernet and AirDrop on unsupported macs running Lion  .
    http://osxdaily.com/2011/09/16/enable-airdrop-ethernet-and-unsupported-macs/
    Interesting.  Googling, I see that someone posted that on these discussions as well:
    https://discussions.apple.com/thread/3331216?start=0&tstart=0
    which mentions what I recall: that Airdrop (as implemented by Apple) would create an on-demand ad-hoc Wi-Fi connection, even if you were already connected to an access point.  Normally, you can't connect to multiple Wi-Fi networks, thus the reason for Airdrop only supported on newer Wi-Fi chips.
    And Apple's KB:
    http://support.apple.com/kb/HT4783

  • I recently updated my iTunes with the lates version but now it does not detect my iPhone 5 which it was working with the old version!!!

    I recently updated my iTunes with the lates version but now it does not detect my iPhone 5 which it was working with the old version!!!

    Hi, M_ghaderi.  
    Thank you for visiting Apple Support Communities.
    If your device is not recognized by iTunes, I would recommend the steps in the article below.  Start with the section labeled Verify that the Apple Mobile Device USB Driver is installed > For Windows Vista, Windows 7, and Windows 8 > Update the Apple Mobile Device Driver.
    iPhone, iPad, or iPod touch not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Cheers,
    Jason H.

  • Internal Microphone not working with Quicktime and some other apps, yet it does for Skype.

    Internal Microphone not working with Quicktime and some other apps, yet it does for Skype. 
    Microphone works fine with Quictime on another mac, so I do know how to use it. The one where it is not working (A) had an external microphone and camera attached earlier, and indeed it does work with that external microphone, but not with the internal microphone selected; and (B) had RealPlayer installed previously.
    Any suggestions, please?

    Hi,
    Download Audio driver from here.
    Intructions how to install it in Vista/Win7.
    Extract this driver with Winrar.
    Open Device manager and expand the Sound, video and game controllers section.
    Right click on Either the High Definition Audio Device if you have the generic Microsoft drivers, or the Conexant High Definition SmartAudio 221 if you have older Conexant drivers and choose "Update Driver Software..."
    Click Browse my computer for driver software, then click "Let me pick from a list of device drivers on my computer"
    Click "Have Disk..." then Browse to the folder where the drivers were extracted  .......\V64 for 64-bit Vista/Win7. Click OK.
    Select one of the "Conexant High Definition SmartAudio 221" models in the list, there will be multiple identical entries.
    Click Next, and you're done.
    I'm not sure which one from the list will work for You.
    This drivers weren't test. So if You will try them and it will work for You let us now about.
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

  • Hello, my itunes app is getting shut down every time I want to open it. Ever since I downloaded the last two updates. I tryed repearing the file and uninstalling and installing several times. Still, is not working. I work with music and need my itunes

    Hello, my itunes app is getting shut down every time I want to open it.
    I don't know if it's related but ever since I downloaded the last two updates. I tryed reparing the file and uninstalling and installing several times. Still, is not working. I work with music and need my itunes up and running. Does anybody know how to fix this?

    Hi Vero Torres,
    If you are having issues with iTunes unexpectedly quitting on launch after on your Windows machine, you may find the troubleshooting steps outlined in the following article helpful:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    Regards,
    - Brenden

  • My iPhoto will not work with Yosemite, and it says that it was purchased under a different account, but that's not the case.  Any ideas why I cannot update iPhoto?

    my iPhoto will not work with Yosemite, and it says that it was purchased under a different account, but that's not the case.  Any ideas why I cannot update iPhoto?

    How did you buy iPhoto? Did it come preinstalled on your computer with Lion or later, or did it come with Snowleopard on system installer disks?
    Which version of iPhoto?
    If you have a version of iPhoto '11 and it is showing on the Purchased tab of the App Store, with your Apple ID, then delete iPhoto from the Applications folder  (don't empty the Trash) and download iPhoto again from the Purchased tab.
    If that does not work, contact The App Store Support  from the Quick Links on the AppStore main page.
    Only apple Support can fix problems with apple ID.

Maybe you are looking for