Accessing Enteprise Manager via Cluster Scan VIP

Hello all...
We have a few clusters set up, and we've been accessing Enterprise Manager for these via the cluster scan IP address. For some unknown reason we now cannot access two of the three OEM installations via the scan IP, only by the IP address of the first node. Unfortunately I wasn't involved in this stage of the setup and I'm not having a lot of luck finding docs relevant to this.
The clusters are running 11.2.0.2 Standard with the January 2012 patch set, and the nodes in the clusters with the issue don't have any problem pinging each other or the scan URL for the custer, if that's helpful.
Can someone point me in the right direction?
Thanks,
Dan
Edited by: ddenton on Apr 20, 2012 11:11 AM
Edited by: ddenton on Apr 20, 2012 11:18 AM

Ravi,
DB Control was set up independently of the database using "emca".
The scan name in the emoms.properties file does match up with what's listed when running the "srvctl config scan" command.
When I attempt to connect to the scan address from Node2 using the following command, I get this response:
[oracle@devdb2 ~]$ sqlplus username/[email protected]:1521/DEVDB
SQL Plus: Release 11.2.0.2.0 Production on Mon Apr 23 10:41:00 2012
Copyright (c) 1982, 2010, Oracle. All rights reserved.
ERROR:
ORA-12514: TNS:listener does not currently know of service requested in connect
descriptor
I have no problem tns pinging the scan name or the database name:
[oracle@devdb2 ~]$ tnsping devdb-scan.rp.db
TNS Ping Utility for Linux: Version 11.2.0.2.0 - Production on 23-APR-2012 10:42:10
Copyright (c) 1997, 2010, Oracle. All rights reserved.
Used parameter files:
Used HOSTNAME adapter to resolve the alias
Attempting to contact (DESCRIPTION=(CONNECT_DATA=(SERVICE_NAME=))(ADDRESS=(PROTOCOL=TCP)(HOST=10.10.10.130)(PORT=1521)))
OK (0 msec)
[oracle@devdb2 ~]$ tnsping DEVDB
TNS Ping Utility for Linux: Version 11.2.0.2.0 - Production on 23-APR-2012 10:42:34
Copyright (c) 1997, 2010, Oracle. All rights reserved.
Used parameter files:
Used TNSNAMES adapter to resolve the alias
Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = devdb1-vip.company.com)(PORT = 1521)) (ADDRESS = (PROTOCOL = TCP)(HOST = devdb2-vip.company.com)(PORT = 1521)) (LOAD_BALANCE = yes) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = DEVDB.company.com)))
OK (0 msec)
Connecting using the following command directly to the TNS name for the database works too, so I'm a bit confused as to why specifying the scan name with port doesn't...
[oracle@devdb2 ~]$ sqlplus username/password@DEVDB
SQL*Plus: Release 11.2.0.2.0 Production on Mon Apr 23 16:16:40 2012
Copyright (c) 1982, 2010, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Release 11.2.0.2.0 - 64bit Production
With the Real Application Clusters and Automatic Storage Management options
SQL>
##################################

Similar Messages

  • Accessing Tomcat Manager Via URLConnection

    Hi,
    Does anyone know how to access Tomcat Manager using URLConnection? or Can it be done at all?
    I'm using URLConnection, javax.mail.authenticator, and javax.mail.PasswordAuthentication. It seems that I can get to the correct URL, but the servlet can't get pass thru the login dialog box(username ,password)
    for example if you're using Tomcat 5 and type http://localhost/manager/reload?path=/, this will prompt you a login dialog box and if you enter correct username and password with manager role, tomcat will reload the ROOT web application
    I want to get pass that login box, but my servlet doesn't seem to work.
    Here's my code so far:
    package reload;
    import javax.mail.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.net.*;
    public class Reload extends HttpServlet
         public void doGet(HttpServletRequest request, HttpServletResponse response)
                                  throws ServletException, IOException
              URL url = new URL("http://localhost/manager/reload?path=/");
              URLConnection connection = url.openConnection();
               //----------------------------------Output Stream to supply username and password---
            javax.mail.Authenticator auth = new Auth();
              connection.setDoOutput(true);
              PrintWriter out = new PrintWriter(connection.getOutputStream());
              out.println(auth);   //this is supposed to supply the username and password to Tomcat
              out.close();
                //--------------------------------Input Stream to get content result-------------------
              BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
              String inputLine;
              while ((inputLine = in.readLine()) != null)
                   response.setContentType("text/html");
                   PrintWriter out1 = response.getWriter();
                   out1.println(inputLine);
              in.close();
           //-------------------sub class to store username and password-------------------------------
         private class Auth extends javax.mail.Authenticator
             public javax.mail.PasswordAuthentication getPasswordAuthentication()
                 return (new javax.mail.PasswordAuthentication("test","123"));
    }

    The manager application uses basic authentication. Therefore, you need to add a header to the request you make to the manager URL. Below is an example:
    HttpURLConnection httpconn = (HttpURLConnection)connection;
    String auth = strUsername + ":" + strPassword;
    httpconn.setRequestProperty("Authorization", "Basic " + Base64.encode(auth.getBytes()));
    The Base64 class is in the package org.apache.catalina.util, which is located in the file catalina-ant.jar. Here, I used it as a convenience.
    I also recommend re-writing your input/output loop to:
    BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
    String inputLine;          
    PrintWriter out1 = response.getWriter();
    response.setContentType("text/html");               
    while ((inputLine = in.readLine()) != null)     {
         out1.println(inputLine);
    in.close();
    I hope this helps.

  • Accessing process manager via JNDI

    We are developing with Appserver 6.5, and also the the
    process manager running inside the appserver. Unfortunately our
    experience is that 6.5 is not stable enough to develop and deploy
    our app. However we do need to use the process manager.
    I'm now trying to run our application in Catalina (7.0) and use
    a JNDI reference to talk to the process manager beans in
    6.5. however the jndi lookup fails.
    javax.naming.NamingException: com.netscape.pm.model.IPMClusterManager
    I'm pretty sure I need to provide additional parameters in server.xml
    for this lookup... but cannot find -any- documentation as to what
    parameters are used.
    ideas?
    thanks
    Roy

    We are developing with Appserver 6.5, and also the the
    process manager running inside the appserver. Unfortunately our
    experience is that 6.5 is not stable enough to develop and deploy
    our app. However we do need to use the process manager.
    I'm now trying to run our application in Catalina (7.0) and use
    a JNDI reference to talk to the process manager beans in
    6.5. however the jndi lookup fails.
    javax.naming.NamingException: com.netscape.pm.model.IPMClusterManager
    I'm pretty sure I need to provide additional parameters in server.xml
    for this lookup... but cannot find -any- documentation as to what
    parameters are used.
    ideas?
    thanks
    Roy

  • Cannot Access Busniess Rules via EAS Admin or HBRLauncher for EPM 11.1

    An error occurred: Login Failed. Please login again.
    Error Message:Error logging in to Business Rules. The repository has not been configured or you are not authorized to use Business Rules.
    Complete Detail: Detail:Error authenticating user in UserServerManager. Detail:Error authenticating user in UserServerManager. Detail:Error authenticating user in UserServerManager. Detail:Exception occurred. Please check your log file for details.
    I can log into Essbase and create applications and etc. It's in Shared Security Mode with Shared Services.
    Dimension Library and Applications Library.
    I cannot access Calc Manager Via EPMA interface either, so this is a 2 question thread but Business rules being more critical.
    Any ideas?

    hi ,
    In shared services you have a separate node for business rule wherein you can assign user or group the access to the business rules for ex one of the role is "Interactive User"(If you assign this access it will let user to validate and launch the rule but they cant change the business rule).
    Once you have assigned the role to user in shared service you would like to update the user list via EAS for business rules.
    Thanks!

  • Multiple Top-Level Realms in Access Manager via AMconfig?

    Is it possible to configure multiple top-level realms in Access Manager via AMconfig? It is not possible through the UI.

    Hi!
    How about this:
    String adminDN = (String)AccessController.doPrivileged(new AdminDNAction());
    String adminPwd = (String)AccessController.doPrivileged(new AdminPasswordAction());
    adminToken = adminManager.createSSOToken(new AuthPrincipal(adminDN), adminPwd);
    hth Chris

  • Accessing Solution Manager CHARM Via SAP CRM

    Hi
    Is it possible to accces charm of soultion manager via SAP CRM
    If so how does it work and documentation are welcomed
    Thanks in advance
    R-K

    option 1
      > customise sap crm to cater for the external product in terms of what solution manager charm / service is currently doing for sap componet
        . Create all the status for this products eg: transport is in Dev for product A, Transprot is in QA for product A or product is in Prod then test and close the call
    > access solution manager from crm (NB: work center / service desk can be accessed through crm) the problem is WE NOT SURE OF CHARM
    > also customise crm to cater for IT related issues like broken laptop or netowrk cable not working or  IT related query,
    Option 2
    > intergrate the external product to solution manager o
    > Customise CHARM / service desk to cater for this external product in solution manager the way it does for sap components / ibase

  • Scan-vip running only on one RAC node

    Hi ,
    While setting up RAC11.2 on Centos 5.7 , I was getting this error during the grid installation:
    PRCR-1079 : Failed to start resource ora.scan1.vip
    CRS-5005: IP Address: 192.168.100.208 is already in use in the network
    CRS-2674: Start of 'ora.scan1.vip' on 'falcen6b' failed
    CRS-2632: There are no more servers to try to place resource 'ora.scan1.vip' on that would satisfy its placement policy
    PRCR-1079 : Failed to start resource ora.scan2.vip
    CRS-5005: IP Address: 192.168.100.209 is already in use in the network
    CRS-2674: Start of 'ora.scan2.vip' on 'falcen6b' failed
    CRS-2632: There are no more servers to try to place resource 'ora.scan2.vip' on that would satisfy its placement policy
    PRCR-1079 : Failed to start resource ora.scan3.vip
    CRS-5005: IP Address: 192.168.100.210 is already in use in the network
    CRS-2674: Start of 'ora.scan3.vip' on 'falcen6b' failed
    CRS-2632: There are no more servers to try to place resource 'ora.scan3.vip' on that would satisfy its placement policy
    I figured that the scan service is able to run only on one node at a time. When I stopped the service on rac1 and started it on rac2 the service is starting.
    But I think for the grid installation the scan service has to simultaneously run on both the nodes.
    How do I resolve it?
    Any suggestions please.
    PS - I am planning to try with the patch 11.0.2.3 but it will be a while till i get access to it.
    Till then can someone suggest a workaround?

    Hi Balazs Papp and onedbguru,
    I was able to resolve that error by running the following command on rac2, now that part of the installer passed.
    crsctl start res ora.scan1.vip
    However the cluster verification utility is failing at the end of installer.
    When I executed the below command, this is my output:
    [oracle@falcen6a grid]$ ./runcluvfy.sh stage -post crsinst -n falcen6a,falcen6b -verbose
    Performing post-checks for cluster services setup
    Checking node reachability...
    Check: Node reachability from node "falcen6a"
    Destination Node Reachable?
    falcen6a yes
    falcen6b yes
    Result: Node reachability check passed from node "falcen6a"
    Checking user equivalence...
    Check: User equivalence for user "oracle"
    Node Name Comment
    falcen6b passed
    falcen6a passed
    Result: User equivalence check passed for user "oracle"
    Checking time zone consistency...
    Time zone consistency check passed.
    Checking Cluster manager integrity...
    Checking CSS daemon...
    Node Name Status
    falcen6b running
    falcen6a running
    Oracle Cluster Synchronization Services appear to be online.
    Cluster manager integrity check passed
    UDev attributes check for OCR locations started...
    Result: UDev attributes check passed for OCR locations
    UDev attributes check for Voting Disk locations started...
    Result: UDev attributes check passed for Voting Disk locations
    Check default user file creation mask
    Node Name Available Required Comment
    falcen6b 0022 0022 passed
    falcen6a 0022 0022 passed
    Result: Default user file creation mask check passed
    Checking cluster integrity...
    Cluster is divided into 2 partitions
    Partition 1 consists of the following members:
    Node Name
    falcen6b
    Partition 2 consists of the following members:
    Node Name
    falcen6a
    Cluster integrity check failed. Cluster is divided into 2 partition(s).
    Checking OCR integrity...
    Checking the absence of a non-clustered configuration...
    All nodes free of non-clustered, local-only configurations
    ERROR:
    PRVF-4193 : Asm is not running on the following nodes. Proceeding with the remaining nodes.
    Checking OCR config file "/etc/oracle/ocr.loc"...
    OCR config file "/etc/oracle/ocr.loc" check successful
    ERROR:
    PRVF-4195 : Disk group for ocr location "+DATA" not available on the following nodes:
    Checking size of the OCR location "+DATA" ...
    Size check for OCR location "+DATA" successful...
    OCR integrity check failed
    Checking CRS integrity...
    ERROR:
    PRVF-5316 : Failed to retrieve version of CRS installed on node "falcen6b"
    The Oracle clusterware is healthy on node "falcen6b"
    The Oracle clusterware is healthy on node "falcen6a"
    CRS integrity check failed
    Checking node application existence...
    Checking existence of VIP node application
    Node Name Required Status Comment
    falcen6b yes unknown failed
    falcen6a yes unknown failed
    Result: Check failed.
    Checking existence of ONS node application
    Node Name Required Status Comment
    falcen6b no unknown ignored
    falcen6a no online passed
    Result: Check ignored.
    Checking existence of GSD node application
    Node Name Required Status Comment
    falcen6b no unknown ignored
    falcen6a no does not exist ignored
    Result: Check ignored.
    Checking existence of EONS node application
    Node Name Required Status Comment
    falcen6b no unknown ignored
    falcen6a no online passed
    Result: Check ignored.
    Checking existence of NETWORK node application
    Node Name Required Status Comment
    falcen6b no unknown ignored
    falcen6a no online passed
    Result: Check ignored.
    Checking Single Client Access Name (SCAN)...
    SCAN VIP name Node Running? ListenerName Port Running?
    falcen6-scan unknown false LISTENER 1521 false
    WARNING:
    PRVF-5056 : Scan Listener "LISTENER" not running
    Checking name resolution setup for "falcen6-scan"...
    SCAN Name IP Address Status Comment
    falcen6-scan 192.168.100.210 passed
    falcen6-scan 192.168.100.208 passed
    falcen6-scan 192.168.100.209 passed
    Verification of SCAN VIP and Listener setup failed
    OCR detected on ASM. Running ACFS Integrity checks...
    Starting check to see if ASM is running on all cluster nodes...
    PRVF-5137 : Failure while checking ASM status on node "falcen6b"
    Starting Disk Groups check to see if at least one Disk Group configured...
    Disk Group Check passed. At least one Disk Group configured
    Task ACFS Integrity check failed
    Checking Oracle Cluster Voting Disk configuration...
    Oracle Cluster Voting Disk configuration check passed
    Checking to make sure user "oracle" is not in "root" group
    Node Name Status Comment
    falcen6b does not exist passed
    falcen6a does not exist passed
    Result: User "oracle" is not part of "root" group. Check passed
    Checking if Clusterware is installed on all nodes...
    Check of Clusterware install passed
    Checking if CTSS Resource is running on all nodes...
    Check: CTSS Resource running on all nodes
    Node Name Status
    falcen6b passed
    falcen6a passed
    Result: CTSS resource check passed
    Querying CTSS for time offset on all nodes...
    Result: Query of CTSS for time offset passed
    Check CTSS state started...
    Check: CTSS state
    Node Name State
    falcen6b Observer
    falcen6a Observer
    CTSS is in Observer state. Switching over to clock synchronization checks using NTP
    Starting Clock synchronization checks using Network Time Protocol(NTP)...
    NTP Configuration file check started...
    The NTP configuration file "/etc/ntp.conf" is available on all nodes
    NTP Configuration file check passed
    Checking daemon liveness...
    Check: Liveness for "ntpd"
    Node Name Running?
    falcen6b yes
    falcen6a yes
    Result: Liveness check passed for "ntpd"
    Checking NTP daemon command line for slewing option "-x"
    Check: NTP daemon command line
    Node Name Slewing Option Set?
    falcen6b yes
    falcen6a yes
    Result:
    NTP daemon slewing option check passed
    Checking NTP daemon's boot time configuration, in file "/etc/sysconfig/ntpd", for slewing option "-x"
    Check: NTP daemon's boot time configuration
    Node Name Slewing Option Set?
    falcen6b yes
    falcen6a yes
    Result:
    NTP daemon's boot time configuration check for slewing option passed
    NTP common Time Server Check started...
    NTP Time Server "133.243.236.19" is common to all nodes on which the NTP daemon is running
    NTP Time Server "133.243.236.18" is common to all nodes on which the NTP daemon is running
    NTP Time Server "210.173.160.86" is common to all nodes on which the NTP daemon is running
    NTP Time Server ".LOCL." is common to all nodes on which the NTP daemon is running
    Check of common NTP Time Server passed
    Clock time offset check from NTP Time Server started...
    Checking on nodes "[falcen6b, falcen6a]"...
    Check: Clock time offset from NTP Time Server
    Time Server: 133.243.236.19
    Time Offset Limit: 1000.0 msecs
    Node Name Time Offset Status
    falcen6b 15.332 passed
    falcen6a -1.503 passed
    Time Server "133.243.236.19" has time offsets that are within permissible limits for nodes "[falcen6b, falcen6a]".
    Time Server: 133.243.236.18
    Time Offset Limit: 1000.0 msecs
    Node Name Time Offset Status
    falcen6b 15.115 passed
    falcen6a -1.614 passed
    Time Server "133.243.236.18" has time offsets that are within permissible limits for nodes "[falcen6b, falcen6a]".
    Time Server: 210.173.160.86
    Time Offset Limit: 1000.0 msecs
    Node Name Time Offset Status
    falcen6b 15.219 passed
    falcen6a -1.527 passed
    Time Server "210.173.160.86" has time offsets that are within permissible limits for nodes "[falcen6b, falcen6a]".
    Time Server: .LOCL.
    Time Offset Limit: 1000.0 msecs
    Node Name Time Offset Status
    falcen6b 0.0 passed
    falcen6a 0.0 passed
    Time Server ".LOCL." has time offsets that are within permissible limits for nodes "[falcen6b, falcen6a]".
    Clock time offset check passed
    Result: Clock synchronization check using Network Time Protocol(NTP) passed
    Oracle Cluster Time Synchronization Services check passed
    Post-check for cluster services setup was unsuccessful on all the nodes.
    [oracle@falcen6a grid]$
    Any suggestions?

  • How to failover SCAN VIP and SCAN Listener from one node to another?

    Environment:
    O.S :          HP-UX  B.11.31 U ia64
    RDBMS:   Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    It is a 2 Node RAC.
    Question:
    How to failover the SCAN VIP and SCAN LISTENER running on node 1 to node 2?
    What is the relation between standard LISTENER and SCAN LISTENER ?
    Why do we need LISTENER, when we have SCAN LISTENER ?
    When I tried with SRCVTL STOP LISTENER , I thought the SCAN LISTENER adn SCAN IP will failover, but it did not?
    Also please clarify if I use SRVCTL RELOCATE SCAN -i 1 -n Node1
    Actalluy I am trying that by moving the SCAN listeners so that when I do PSU 7 patching on 1 node, no incoming attempt to connect will spawn
    a process and thereby opening files in $ORACLE_HOME (which would prevent the patch from occurring)
    Please clarify my queries.
    Thanks,  Sivaprasad.S

    Hi Sivaprasad,
    1. The following link will help you for SCAN VIP and SCAN LISTENER failover from 1 node to another.
    http://heliosguneserol.wordpress.com/2012/10/19/how-to-relocate-scan_listener-from-one-node-to-another-node-on-rac-system/
    http://oracledbabay.blogspot.co.uk/2013/05/steps-to-change-scan-ip-address-in.html
    2. The Standard LISTENER is specific for particular node for which it is running. It cannot be relocated as its specific for the node its running. SCAN listeners are not replacements for the node listeners.A new set of cluster processes called scan listeners will run on three nodes in a cluster (or all nodes if there are less than 3).  If you have more than three nodes, regardless of the number of nodes you have, there will be at most three scan listeners. So no relation for standard LISTENER and SCAN LISTENER.
    3. Hmmm. let me put it in easy way for this question. All the RAC services like, asm, db , services, nodeapps registers with this SCAN_LISTENER. So if any of these services (asm, db , services, nodeapps) got down/not running, the SCAN_LISTENER will know the down status, and if any client requests to access the node/service which is down, the SCAN_LISTENER will redirect the client request to the least loaded node. So here all these process will happen without the knowledge of client. And As usual the standard LISTENER looks only for incoming request to connect with the database. So we need both LISTENER and SCAN LISTENER.
    4. If you provide SRCVTL STOP LISTENER,  it stops the default listener on the specified node_name, or the listeners represented in a given list of listener names, that are registered with Oracle Clusterware on the given node. No failover will happen under this case.
    5. Yes you can relocate if you want to relocate the scan.
    Hope this helps!!
    Regards,
    Pradeep. V

  • Can't access Color Management options for HP 6700 under Mac OS 10.8.5 (Mountain Lion)

    Hello.
    I've got the HP Officejet 6700 Premium e-All-in-One and I can't find any way to access Color Management options.
    The printer is attached (Wi-Fi) to my iMac running Mac OS 10.8.5 (Mountain Lion).
    I want to correct a magenta cast to photographs that I've printed.  I've had the magenta-cast problem under Lightroom and using Preview to print the photographs, so now I want to work with color profiles in Photoshop Elements.
    Photoshop Elements recommends that I "disable color management in the printer preferences dialog".
    However, I'm not able to find color management preferences for the 6700 in any of the settings under Mountain Lion:
    Not under (Apple) > System Preferences > Print & Scan.
    Not under (HP Utility) > Open Embedded Web Server.
    Not under (HP Utility) > Printer Settings.
    Not under Preview's print dialog.
    Nor can I find any clear direction in the online help (at HP or elsewhere) that I've read so far.
    Any suggestions would be most appreciated.
    Thank you!
    Michael
    This question was solved.
    View Solution.

    Please note that in the Print dialog I get "Color Matching" not "Color Management."
    Still, I am (at this point) able to control color from Photoshop Elements, so that's good enough to proceed.
    Thanks again.

  • Firefox is freezing. When I close Firefox, and try to re-start it, it will not open. I need to access Task Manager, where I find Firefox still running. I close Firefox in Task Manager & can re-start Firefox.

    Firefox is freezing in the middle of a browsing session. When I close Firefox, and try to re-start it, it will not open. I need to access Task Manager, where I find Firefox to still be running. Once I close Firefox in Task Manager, I can re-start Firefox. This can happen several times in the space of a few hours? I'm running Vista Home premium with Firefox 3.6.16, and this problem has only started in the last 4 weeks. Can Anyone Help? Core 2 Duo E7300 with 4GB RAM.

    Sounds like it is hanging when you exit and later try to restart Firefox.
    * How to stop the running Firefox process
    ** In Task Manager, does firefox.exe show in the '''<u>Processes</u>''' tab?
    ** See: http://kb.mozillazine.org/Kill_application
    **Windows 7 users: http://www.techrepublic.com/blog/window-on-windows/reap-the-benefits-of-windows-7s-task-manager/2576
    * What may cause Firefox to hang at exit
    **Windows 7 Task Manager: http://www.techrepublic.com/blog/window-on-windows/reap-the-benefits-of-windows-7s-task-manager/2576
    ** http://support.mozilla.com/en-US/kb/Firefox+hangs
    ** http://kb.mozillazine.org/Firefox_hangs
    ** https://support.mozilla.com/en-US/kb/Firefox+is+already+running+but+is+not+responding
    * You may need to try Firefox Safe Mode
    ** You may need to use '''Safe Mode''' to locate the problem: ***See: http://kb.mozillazine.org/Safe_Mode
    ***Firefox 4 users, hold the Shift key while clicking the Firefox 4 desktop icon to enter Safe Mode.
    ***Firefox Safe Mode is a diagnostic mode that disables Extensions and some other features of Firefox.
    ****In Firefox 4, Safe Mode also disables Plugins and Hardware Acceleration.
    ****If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes '''<u>before</u>''' starting Safe Mode (In Firefox 4, Tools > Add-ons > Appearance). See: http://support.mozilla.com/en-US/kb/Using%20themes%20with%20Firefox#w_managing-themes-and-personas
    ****When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode".
    ****Test to see if the problem you are experiencing is corrected.
    *** If the problem does not occur in Safe-mode then disable all of your Extensions and Plug-ins and then try to find which is causing it
    ***#by enabling '''<u>one at a time</u>''' until the problem reappears.
    ***#You can also enable a few at a time (3-5), keeping track of what you just re-enabled to see if the problem re-occurs; this will help narrow down the possibilities if you have a large number of add-ons.
    ***#'''<u>You MUST close and restart Firefox after EACH change</u>''' via File > Restart Firefox (on Mac: Firefox > Quit).
    ***#You can use "Disable all add-ons" on the Safe Mode start window.
    **See the following for more information
    *** http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes
    *** http://support.mozilla.com/en-US/kb/Troubleshooting+plugins
    *** http://support.mozilla.com/en-US/kb/Basic+Troubleshooting
    <br />
    <br />
    '''You need to update the following:'''
    *Adobe Shockwave for Director Netscape plug-in, version 11.0
    *Shockwave Flash 10.2 r152
    #'''''Check your plugin versions''''' on either of the following links':
    #*http://www.mozilla.com/en-US/plugincheck/
    #*https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #*There are plugin specific testing links available from this page:
    #**http://kb.mozillazine.org/Testing_plugins
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update the [[Managing the Flash plugin|Flash]] plugin''' to the latest version.
    #*Download and SAVE to your Desktop so you can find the installer later
    #*If you do not have the current version, click on the "Player Download Center" link on the "'''Download and information'''" or "'''Download Manual installers'''" below
    #*After download is complete, exit Firefox
    #*Click on the installer you just downloaded and install
    #**Windows 7 and Vista: may need to right-click the installer and choose "Run as Administrator"
    #*Start Firefox and check your version again or test the installation by going back to the download link below
    #*'''Download and information''': http://www.adobe.com/software/flash/about/
    #**Use Firefox to go to the above site to update the Firefox plugin (will also install plugin for most other browsers; except IE)
    #**Use IE to go to the above site to update the IE ActiveX
    #*'''Download Manual installers'''.
    #**http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller
    #**Note separate links for:
    #***Plugin for Firefox and most other browsers
    #***ActiveX for IE

  • Wrt160nl Management via HTTPS

    Hi ,
    I have an issue with new Win8 & IE10.
    When I try to access web management interface of my wrt160nl (Firmware Version: 1.00.01 B15) via HTTPS I'm receiving the foolowing message:
    "Continue to this website (not recommended)."
    If I click on it another error page appears:
    "Certification error: Navigation blocked.
    There is a problem with this website's security certificate"
    At the same time I'm able to acccess the management interface via HTTPS, but from my laptop with Win7 & IE9. There if I click on the red Certificate Error > View certificate and the certificate information is:
    Issued by: Linksys
    Issued to: Linksys
    Valid from : 1.1.2009 to 1.1.2010
     So I'd like to know if I could update the router certificate or what settings should I use in IE10 in order to access the web management interface via HTTPS?
    BR,
    Krass

    You can try these steps. I found a workaround that might help you with the issue you are having since users who tried it reported that it worked for them.
    Try viewing https://192.168.1.1 in Compatibility View.
    Note: Not all website display problems are caused by browser incompatibility. Interrupted Internet connections, heavy traffic, or problems with the website can also affect how a webpage is displayed.
    Open IE.
    Press ALT+T keys, to launch “Tools” drop down menu.
    In the “Tools” menu, select “Compatibility View Settings” option.
    In the “Compatibility View” window, add the name of the site (with which you are facing the issue) and then check.
    Do check this link as well: Certificate errors: FAQ http://windows.microsoft.com/en-US/internet-explorer/certificate-errors-faq#ie=ie-10

  • No access to management interface on WLC4002

    my dilemma is the follwing:
    I've have a remotly connected WLC4002.
    The service port is in 10.10.4.0/23 and the management IF in 10.10.1.0/24. Both are connected to a L3 catalyst which is also providing the default gateway for both networks. (i.e. ~.254). To get access to the service port I had to add a route: "route add 10.0.0.0 255.0.0.0 10.29.5.254". The management IF is configured like this:
    "interface address management 10.10.1.240 255.255.255.0 10.10.1.254"
    But I can pignthe man.IF only from it's own network not from remote networks 10.x.y.0. For me it looks like as if this IF doesn't use it's configured def. gateway - but the static route from the service port. (btw: I can reach other nodes in the network of the manag.IF)
    Now I fear that I'll loose connection completly if I'm playing with the routing entries.
    Any idea how to configure that I can reach both interfaces?
    Or - in case change config won't work - is there something similiar like the IOS command "reload in"?
    Thanks for you help

    When the service port is connected to the network, you have to make sure the management port can't get to the service port subnet and vice versa, since it is used for out-of-band management. If there is a route then you might have issues.... I normally don't even connect the service port to the network at all, but that is just me.
    If you are trying to reach the wlc management port from a a subnet that one of the dynamic interfaces on the wlc is configured for, then you have to enable management via dynamic interface on the cli of the wlc.
    config network mgmt-via-dynamic-interface enable
    config network mgmt-via-wireless enable

  • EP and Solution Manager Via Webdispatcher

    Solution Manager Via Webdispatcher
    Dear All,
    We have installed the Webdispatcher 7.4 and did the SSL setup and maintained necessary parameters to  access our Portal and ECC systems from internet and its working fine for indepedent Java and ABAP stack.
    Now when we are trying to access the solution manager via webdispatcher using webgui, it opens but when its calling the webdynpros like solman_setup, the page is not openning. The same case is in our portal system also, when its calling the webdynpro of backend system its not openning.
    During our analysis we found the urls are called from the local machine to the backend host (ABAP)  directly and there is no where its communicating the webdispatcher.
    Can you please guide me what kind up setup can be done to access the Portal and solution manager complete functionality via webdispatcher.
    I have checked many posts on the forum and was totally confused on the solution approches. So trying to filter it down to do a proper setup which is feasible to our landscape and infra team.
    FYI Our Solman is on 7.1 SPS10 and portal is on 7.4, OS windows
    Looking forward for your valuable inputs
    Thanks & Regards,
    Satyabrat

    Thanks Samuli,
    I tried it..its working for solman but in my ECC (NW 7.31) its not working for web dynpros. Its going to hostname:8001 port and not redirecting to webdispatcher.
    Pleae let me know if I am missing something.
    Thanks & Regards,
    Satyabrat

  • Should SCAN VIP and Listener jump among Nodes?

    Oracle (GI and DB): 11.2.0.3 SE
    OS: RHEL 5.6
    I remember when I first tried scan several years ago (most likely with 11.2.0.1 EE), the SCAN VIP and Listeners jumps from node to node whenever a DB connection was established.
    Recently, in a newly installed 2 node cluster running 11.2.0.3 SE, it seems the SCAN VIP and Listener stick to a single node unless during failover or requested with a command. As a result, a SCAN VIP and Listeners end up running on a single node after some failover testing.
    Which is the designed behaviour? I understand they can direct connection requests to DB instance on other node. Just want to know whether they are supposed to jump?

    Hi,
    I have not tried it myself, but if you look at the crs profile on how SCANs are defined, they are set to DISPERSION.
    # crsctl stat res ora.scan1.vip -p
    NAME=ora.scan1.vip
    TYPE=ora.scan_vip.type
    START_DEPENDENCIES=hard(ora.net1.network) dispersion:active(type:ora.scan_vip.type) pullup(ora.net1.network)
    ...So they should not/never run on the same node, since the dispersion policy tells them differently.
    However this dependency is checked at startup time, and not always during runtime. So if you do a lot of test, your szenario is possible.
    Have you tried waiting a while, if this resolves the issue?
    If they stay on the same node, I would open an SR, because then it does not follow the dispersion policy.
    Regards
    Sebastian

  • Unable to create a test  via Content Management via Content Administration

    I am unable to create a test or survey via Content Management via Content Administration because insufficient privileges message. I create the folder and enter the test information for creating a test and then I after I click apply. I get message “You have insufficient privileges for the current operation. Please contact your System Administrator”.
    The System Administrator viewed the profile being tied to the responsibility and thinks there is no problem. Somebody please!!!!!!!!!!!!!!
    Help……

    Hi, James.
    If you add the main "Learning Administrator" role (UMX|OTA_LRNG_ADMIN), it will include all child roles for the Administrator, including the Learning Content Administrator, Learning Catalog Administrator, Learning Enrollment Administrator, Learning Finance Administrator, Learning Resource Administrator, and Learning Setup Administrator. If you don't have all of these roles, there are functions you will not have access to under the Learning Administrator responsibilities.
    The "Learning Instructor - Update" role only allows users that have the Learning Instructor Self-Service responsibility to update enrollment statuses for Learners that have attended classes that they are set as a resource for and won't impact the Administrator functionality.
    Anne
    Edited by: anne2 on Jun 5, 2013 2:09 AM (Fixed code for Learning Administrator role - Just noticed it was listed as the Enrollment Administrator role instead of the main Learning Administrator role)

Maybe you are looking for

  • How do I delete apps from the cloud as well as my device (iPhone 4 and iPad 2)

    I am using an iPhone 4 and an iPad 2.  I want to remove apps from the devices as well as the cloud list. (Not on this i***). Help!

  • Demo scenarios in SAP PI 7.1?

    Hi All, is there any step by step explanation of demo interfaces provided by SAP. I need the link of the explanation of the interfaces as in detail. else please provide the how to guide link for specific interfaces in PI 7.1

  • ITunes does not start after Lion installation

    hi, after upgrading to the latest iTunes version and to Lion, I get "The file "iTunes Library.itl" cannot be read because it was created by a newer version of iTunes. Would you like to download iTunes now?". Precise: I upgraded iTunes to the latest v

  • Printing graphics in smartforms

    Hello all. I am creating a smartform wich includes a graphic with a checkbox. The print preview seems ok. When i send it to the printer SAPLPD send all the conten to the printer without any errors but the printer shows the message "Processing Data" a

  • How to customise the URL on endsession button and point it to a third-party Application?

    Hello , I have a scenario where i want to redirect to a third-party application instead of OPA summary screen on hitting the close-->end session button. How to customize the URL behind the end session button to point to the third-party URL? Thanks, C