Vip swing among nodes and able to it's node

Hi Experts,
We have a 4 nodes oracle 11.1 RAC server with 10g2 database. OS is redhat 5.1.
When I log into each node by vip, it alaway point to one fixed node (supporaced as D) after log in.
I could not log into A, B , C nodes.
I only can log into each node( A, B, C, D) by its pub IP. But I could log into each node by VIP before.
Also We have other 4 nodes the same initial RAC, both VIP and Pub IP can log into
each node too.
What kind of issue is about this issue?
How to fix it?
Thanks
Jim

You might want to check if all your cluster services are ok, because what you are saying indicates that something is wrong with 3 of your 4 nodes. Try 'crs_stat -t' to see if any resources are not available
Bjoern

Similar Messages

  • Assign VIP to specific nodes in cluster?

    I am running CRS 10.2.0.3 in a 4 node Solaris 10 cluster. Is anyone familiar with being able to assign a vip to certain nodes? For instance if Node 1 goes down can I specify that the VIP will always fail to node2 next?
    Thanks

    Ok thank you. I have it all setup but a couple of questions.
    1. Do we have to create the profile from both nodes or just one? In the documentation and whitepaper it seems like we only need to do all the tasks (creating Application VIP and application profile) from one node.
    2. For some reason my profile for the application in an UNKNOWN state. When I try to start it, I get an error.
    HA Resource Target State
    httpApp1 ONLINE UNKNOWN on humboldt
    ora.FPRCPROD.FPRCPROD1.inst ONLINE ONLINE on galapagos
    ora.FPRCPROD.FPRCPROD2.inst ONLINE ONLINE on humboldt
    ora.FPRCPROD.db ONLINE ONLINE on galapagos
    ora.galapagos.ASM1.asm ONLINE ONLINE on galapagos
    ora.galapagos.LISTENER_GALAPAGOS.lsnr ONLINE ONLINE on galapagos
    ora.galapagos.gsd ONLINE ONLINE on galapagos
    ora.galapagos.ons ONLINE ONLINE on galapagos
    ora.galapagos.vip ONLINE ONLINE on galapagos
    ora.humboldt.ASM2.asm ONLINE ONLINE on humboldt
    ora.humboldt.LISTENER_HUMBOLDT.lsnr ONLINE ONLINE on humboldt
    ora.humboldt.gsd ONLINE ONLINE on humboldt
    ora.humboldt.ons ONLINE ONLINE on humboldt
    ora.humboldt.vip ONLINE ONLINE on humboldt
    rachttpVIP1 ONLINE ONLINE on humboldt
    [oracle@humboldt tmp]$ crs_start httpApp1
    CRS-1028: Dependency analysis failed because of:
    'Resource in UNKNOWN state: httpApp1'
    CRS-0223: Resource 'httpApp1' has placement error.

  • What is difference among F5 and F6 and F7 in ABAP coding?

    what is difference among F5 and F6 and F7 in ABAP coding ?  Can u give me any example regarding this thread ?

    Some additional info which can be quite helpful.
    a watchpoint is an indicator in a program that tells the ABAP runtime processor to interrupt the program at a particular point. Unlike breakpoints, however, watchpoints are not activated until the contents of a specified field change. Watchpoints, like dynamic breakpoints, are user-specific, and so do not affect other users running the same program. You can only define watchpoints in the Debugger.
    Use
    You set watchpoints in the Debugger to monitor the contents of specific fields. They inform you when the value of a field changes. When the value changes, the Debugger interrupts the program.
    Features
    · You can set up to five watchpoints in a program.
    See also Setting Watchpoints.
    · You can also specify the conditions under which a watchpoint is to become active.
    · You can specify a logical link for up to five (conditional) watchpoints.
    See also Specifying Logical Links.
    · You can define watchpoints as either local or global. If you define a global watchpoint, it is active in all called programs. Local watchpoints are only active in
    the specified program.
    · You can change and delete watchpoints.
    See Changing Watchpoints
    · You can use watchpoints to display changes to the references of strings, data and object references, and internal tables.
    See Memory Monitoring with Watchpoints
    Breakpoints
    Apart from being able to execute an ABAP program in the Debugger, you can also start the Debugger call by the choosing a breakpoint. This is achieved by setting one or more of these breakpoints in the program. A breakpoint is a signal at a particular point in the program that tells the ABAP runtime processor to interrupt processing and start the Debugger. The Debugger is activated when the program reaches this point.
    There is also a special kind of breakpoint called a watchpoint. When you use watchpoints, the Debugger is not activated until the contents of a particular field change. For more information, refer to the chapter Watchpoints.
    Breakpoint Variants
    The Debugger contains different breakpoint variants:
    Static
    A user-specific breakpoint is inserted in the source code as an ABAP statement using the keyword BREAK-POINT. A non user-specific breakpoint is set in the ABAP Editor using the BREAK user name statement.
    Directly set
    dynamic breakpoints
    Can be set in the ABAP Editor or the Debugger by double-clicking a line, for example. Dynamic breakpoints are always user-specific, and are deleted when you log off from the R/3 System.
    Breakpoints
    at statements
    The Debugger stops the program immediately before the specified statement is executed.
    Breakpoints
    at subroutines
    The Debugger stops the program immediately before the specified subroutine is called.
    Breakpoints at function modules
    The Debugger stops the program immediately before the specified function module is called.
    Breakpoints at methods
    The Debugger stops the program immediately before the specified method is called.
    Breakpoints at exceptions and system exceptions
    The Debugger stops the program immediately after a system exception, that is, after a runtime error has been intercepted.
    Static Breakpoints
    Static breakpoints are always user-independent if there is no specification of a user name. Once a user has inserted the statement BREAK-POINT or BREAK name in an ABAP program, the system always interrupts the program at that point for that user or only for the user name. This procedure is only useful in the development phase of an application when program execution is always to be interrupted at the same place. For more information, refer to the chapter Static Breakpoints.
    In HTTP sessions, a static breakpoint is skipped if you did not set additional dynamic HTTP breakpoints in the editor of a BSP page. Instead, a corresponding system log entry is written, which can be checked using transaction SM21.
    Dynamic Breakpoints
    Dynamic breakpoints are user-specific. Therefore, you should use them if you only want the program to be interrupted when you run it yourself, not when it is being executed by other users. All dynamic breakpoints are deleted when you log off from the R/3 System.
    Dynamic breakpoints are more flexible than static breakpoints because you can deactivate or delete them at runtime. They have the following advantages:
    · You do not have to change the program code.
    · You can set them even when the program is locked by another programmer.
    · You can define a counter that only activates the breakpoint after it has been reached.
    Special dynamic breakpoints are useful when you want to interrupt a program directly before a particular ABAP statement, a subroutine, or an event, but do not know exactly where to find it in the source code. Event here is used to refer to the occurrence of a particular statement, for example, or calling up a method. Special dynamic breakpoints are user-specific. You can only set them in the Debugger. For more information, refer to the chapter Dynamic Breakpoints.
    In HTTP sessions, the system stops both at static and dynamic breakpoints if a dynamic breakpoint was set in the editor of a BSP page before program execution.
    Lifetime and Transfer of Breakpoints
    A static breakpoint remains intact as long as the BREAK-POINT or BREAK-POINT name statement is not removed from the source code. Without saving, dynamic breakpoints only remain intact in the relevant internal session. However, they remain in effect during the entire user session if they are saved by choosing the menu path Breakpoints ® Save in the ABAP Debugger. For more details on the subject of user sessions and modes, refer to Modularization Techniques in the ABAP keyword documentation.
    If you call an HTTP session during a user session, only the HTTP breakpoints are loaded when the HTTP session is started. You activate HTTP debugging in the ABAP Editor by choosing Utilities ® Settings ® HTTP Debugging. Depending on the setting, the system then displays either the HTTP or standard breakpoints in the Editor.
    If you call an update session during a user session, breakpoints that were defined beforehand in the calling processing unit are copied to the new update session, where they can be displayed under Breakpoints. If, in the ABAP Debugger, you check Update Debugging under Settings and then, for example, call the update module func using CALL FUNCTION func IN UPDATE TASK, a new window is opened in which you can debug this function module in the update session. All the breakpoints that were set in the calling processing unit can also be processed here.
    we can keep them at :
    Statements
    Subroutines
    Function Module Calls
    at Methods
    System Exceptions
    break point :
    we can start debugging from that point or if we keep break point at some place we can directly got ot htat point using f6.
    watch point: for example if we have to check the output for 4000 records based on a field value i.e.for vendor number 'in'we have to check then we will create watchpoint on field LIFNR value '2000'. then we can directly go to vendor whose numbe ris 2000

  • Getting Error in starting VIP in 3 NODE RAC Cluster in VMWARE

    hi
    please can some one help me to have solution for why VIPCA is failing to start VIP on RAC Node 3 it gives the ERROR: CRS-1006; CRS-0215 no more members. Network Configuration is like:
    /etc/hosts
    127.0.0.1 localhost.localdomain localhost
    #Public IP
    192.168.2.131 rac1.sun.com rac1
    192.168.2.132 rac2.sun.com rac2
    192.168.2.133 rac3.sun.com rac3
    #Private IP
    10.10.10.31 rac1-priv rac1-priv
    10.10.10.32 rac2-priv rac2-priv
    10.10.10.33 rac3-priv rac3-priv
    #Virtual IP
    192.168.2.131 rac1-vip.sun.com rac1-vip
    192.168.2.132 rac2-vip.sun.com rac2-vip
    192.168.2.133 rac3-vip.sun.com rac3-vip
    /etc/sysconfig/network
    NETWORKING=yes
    HOSTNAME=rac1.sun.com
    GATEWAY=192.168.2.1
    Thanks in Advance

    you should have to user some other new ips for VIP.
    PLEASE CHANGE THE VIP IP's and try again.
    192.168.2.131 rac1-vip.sun.com rac1-vip
    192.168.2.132 rac2-vip.sun.com rac2-vip
    192.168.2.133 rac3-vip.sun.com rac3-vipchange the ips to some other ip not used by any machines.
    sample /etc/hosts file
    127.0.0.1 localhost.localdomain localhost
    # Public
    10.1.10.201 rac1.localdomain rac1
    10.1.10.202 rac2.localdomain rac2
    #Private
    10.1.9.201 rac1-priv.localdomain rac1-priv
    10.1.9.202 rac2-priv.localdomain rac2-priv
    #Virtual
    *10.1.10.203 rac1-vip.localdomain rac1-vip*
    *10.1.10.204 rac2-vip.localdomain rac2-vip*

  • Hi. I am just about to move from the UK to Kuwait. Will I have any problems using my iPhone 4 and able to join a local carrier using this device please?

    Hi. I am just about to move from the UK to Kuwait. Will I have any problems using my iPhone 4 and able to join a local carrier using this device please?

    If your phone is locked to a particular carrier, you must contact them to request they unlock it. Once they've taken care of that and you've followed the instructions to complete the unlock process, you will be able to use the phone elsewhere.
    ~Lyssa

  • I have an iPhone 4s iOs 5.1.1, I want to update it to iOs 7, if I've backed up to iCloud will my contacts, pictures and text messages be saved and able to be restored if lost?

    I have an iPhone 4s iOs 5.1.1,( I know I need an update!) I want to update it to iOs 7, if I've backed up to iCloud will my contacts, pictures and text messages be saved and able to be restored if lost? I recently backed up to the iCloud as recently as this morning at 2AM.

    OCD with good reason
    With a second backup, as you now have, you are well protected.  The update makes a backup to use for restoring after the install but with another you should be in great shape.
    Just take you time and be patient, these can take a while to complete depending on server load, connection speed, etc.

  • HT4061 i left my ipad 3 as i will go to work when i came back from work and able to used my ipad power is not working and the ipad is warm i didnt left the ipad charging.... so i tried to again and outting it on its not working now. pls do the needful

    I bought new ipad3 last week yesterday I left it on bed as I will go to work. When I came back and able to used it power is not working and feel the ipad get warm and feel let it cool down and try it again its not working at all. Kindly pls do the needful.  thanks a lot

    I bought new ipad3 last week yesterday I left it on bed as I will go to work. When I came back and able to used it power is not working and feel the ipad get warm and feel let it cool down and try it again its not working at all. Kindly pls do the needful.  thanks a lot

  • Which system is better making the TDC among DEV and PRD

    HI,
    which system is better making the TDC among DEV and PRD what are the advantages and disadvantages
    thanks in advance
    subbu

    hi arif
    TDC means Transport Domain Controller
    it is the system which contains common transport directory and which administer the all the systems taking part in TMS.
    if any other informaion regarding this welcome.
    SUBBU
    Message was edited by:
            subbu chennuru

  • Please someone could help in explain how calenders are related among icloud and my imac ?

    please someone could help in explaining how calenders are related among icloud and my imac in terms of backuping and recovery ?
    Thanks
    JBS

    Open GarageBand's preferences, and under Audio/MIDI set the Input popUp menu to the iMic. You can also set the Output popUp to the iMic if you have headphones plugged into it, otherwise set it to Built-In.
    Create a New Basic Track, and you're ready to record.
    --HangTime [Will Compute for Food] B-|>

  • APEX 4.0 -Show and able to change Primary key values for Detail

    In a Master-Detail form, is there anyway I can show and able to change/select my primary keys from a select list field? One of my primary keys on the Detail is also primary key from another table which restricts my values for this field. I was able to show the fields but I can not make changes to this field and save the changes. Is there anyway I can have both show the field and able to change field's value and save it? Please advice. Thank you very much for your help in advance.
    -Grace

    Yes AFAIK Apex (for better or worse) was designed such that the PKs are generated automatically with PL/SQL, by a trigger, or whatever other algorithm that isn't in the control of the end user. It also only seems to allow a composite PK of no more than two columns.
    My usual strategy is to:
    1. Define the PK as a number (some sort of RECORD_ID, RECORD_SEQ, whatever) and populate it via a trigger on-insert.
    2. Define the "business" PK as a separate unique index. This way the user can set and modify it to their heart's content and it also isn't limited to just two columns (if the composite key's business requirement is such that more than two columns are needed).

  • 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

  • XML Comparison without DTD & XSD and able to return XPath of the Diff Node

    Dear All,
    I am new xml concept in java.
    First xml can have n of nodes and second xml can have n of the node.
    The node is new to second xml when compare to first xml.It has to go change list.
    1. My job is to compare 2 xml document and return the XPath of the Nodes.
    2. Both xml do not have any association like XSD,DTD and XSLT.
    3. I am looking for java api to find/return xpath of the node.
    Please help me.
    Saravanan.P

    Don't know if there's a method for this in the default XML parsing interface of Java (JAXP). I never came across a method which would return an XPath expression based on a Node and a Document. Only the other way around: return the Node(s) based on a Document and an XPath expression. Maybe some Java XML framework like XStream or an Apache XML framework have this functionality. It would be possible (not really nice though) to create such a method yourself. Based on a Document and a Node as input you could iterate through the parent elements until you reach the root Node and return the path. You would need to take into account that a Node can be part of a NodeList, so you have to retrieve the index of the Node in the list too.
    Ronald

  • Deploy to VIP or each node separate

    Hi
    I'm running a SOA suite 10.1.3.4 clustered env
    The cluster is setup partly, however there's no VIP adress available
    So can I deploy against the nodes, and add later the VIP url in the config, or should I then have to redeploy in order to get the VIPurl inplace?
    kind regards
    Michel

    Thanks but the things you offered are not the issue but thanks.
    I unplugged the apple TV box that plays the iphone 5 to the TV and that corrected the problem.
    There seems to be some software issue wrong with the Apple Tv.
    It will work then after playing something just stop cold and disappear from the phone The icon.
    I once and it worked turned  on the PC to make work but don't understand why the computer  would have to be on or maybe itunes running to get that feature to work.
    Thanks

  • Swing seems inefficient and slow

    hi
    i am having a real problem with my swing. every time i minimise it everything diasappears of the screen and i have to wait for ages before it reappears. I have a jfilechooser built in to my application as well and when i go to open a second file everything from the filechooser disappears. can anyone explain how i can make this go away? or has anyone had a similar problem and how did they overcome it (were they able to overcome it)? my application is completely useless if this is how it is going to run. ANY suggestions on what the problem is or how to fix it would be great
    thanks
    f

    ...in that case you shouldn't experience any of the issues you mentioned. Swing is actually quite fast nowadays, and even though it does not match a native gui it's perfomance is absolutely sufficient for normal applications. Here's som ideas...
    Java uses native calls to open glide to perform drawing operations. Possibly there is something dead wrong with your video card drivers (although so far i only experienced this under linux)
    If you are running windows, there might be an issue with your direct draw drivers. Try invoking your application with the -noddraw=True parameter and see if it makes any difference.
    Memory could be a possible cause, too, as the garbage collector might eventually freeze your app for a few seconds (not all the time, mind you). I have no idea how complex your apllication is, just in case it's a really huge one try giving the virtual machine additional memory with the -Xmx parameter (e.g. -Xmx 512M)

  • Memory sharing among nodes in a cluster

    Hi,
    Let's say I have two nodes A and B in the cluster. Node A has defined in config file and is using just cacheA, while node B has defined in config file and is using just cacheB.
    From the fact that those two nodes are in the same cluster, does it mean that memory on nodeA is used for both cacheA and cacheB? Is memory on a node used only for caches, that are locally defined in config files and used by that node?
    The reason I am asking is the following: I have many nodes, each of them has some caches defined and is using some caches, but I am expecting that some of them will be fairly small, while other big. It would be great, if from the fact, that they are in the same cluster it meant, that each node participates with it's resources to all caches in the cluster.
    Best regards
    Jarek

    Marie,
    it is not possible to dedicate an "own node" to specific caches in a cache service which has other caches.
    To dedicate certain nodes to certain caches, you have to separate those caches to their own distributed cache service which would only be storage-enabled on the dedicated nodes. For this, you also have to explicitly configure whether that cache service is storage-enabled or storage-disabled independently of the cluster-wide tangosol.coherence.distributed.localstorage override.
    Also, high-units does not tell you when you ran out of space. It tells you when you exceeded an configuration value, but that configuration value may not always correctly correspond to the actual free capacity in the JVM.
    Also, high-units does not define cache capacity, which is service-wide (all storage-enabled nodes in the service contribute to it). It defines backing map capacity, which is per-node, and unfortunately the behaviour is not deterministic (unless you measured the backing map usage and defined the capacity per partition, which I believe is possible with partition-split backing maps only). Due to this the high-units does not correspond to the capacity and exceeding that capacity across the entire cache service.
    Also, high-units paired with an eviction-policy is a dangerous beast on a backing map, as it will possibly lead to data loss.
    Best regards,
    Robert

Maybe you are looking for

  • Image not being opened in Photoshop cc 2014 from Lightroom

    I am using the latest lightroom and photoshop.  When I go to an image in lightroom and right click, select edit in Photoshop cc 2014, it opens Photoshop straight away but it does not pass the image along... Any suggestions?

  • Movie from laptop to ipad?

    hi, how do i make a movie that i bought from itunes on laptop play on my ipad?

  • Problem with time stamp

    Hello, I got mistake in ODS manage like this: The time stamp in the source system is 24.09.2007 The time stamp in the BW is 23.05.2009. I have problem to load data in ODS. What should I do ?? Replicate the data source ? But then it's possible to get

  • Sending a non editable pdf after completion.

    Hi. I have one pdf (with editable fields) that i distribute using distribute form. I want to know if after filling the pdf and pressing send button, the pdf can arrive back as a non-edible pdf filled with the sent information. In other words, the pdf

  • The Dreaded Classpath & Packages

    Hi, I'm semi new to Java (I just finished my first intro class), and to my surprise the prof. did not go into detail regarding classpaths and how to use them, blasphemy, I know. He had everyone rely on an IDE for this� I have three problems compiling