Does coherence auto-configure itself for multi-homing

I just realised that my configuration was not set properly for multi homing. I did not set tangosol.coherence.localhost, I left it unchanged.
However coherence seems to have configured the second server on that machine to listen for unicast on 8089.
So do ports get automatically configured for multi-homing. Or have I just forgotten that I actually set it before?
We are using version 2.2.
thx.

Regarding the multi-homing, it is not necessary for Coherence.
Peace,
Cameron Purdy
Tangosol, Inc.
Coherence: Easily share live data across a cluster!

Similar Messages

  • Use configuration management for multi site application

    Hi,
    My client develop an application multi site with designer 6i. We want to use the configuration management .
    The application will be deploy in 10 sites, but not necessary with the same version of the application.
    You want to control that with the configuration management of designer 6i.
    Someone has some experience with that ??
    Can i have some reference or detail experience ??
    Thanks a lot
    chris

    I asked this sort of question for creating a live and a test release of an application. The answer I got was to create a configuration of based on my application and then to create an applications based on the the versions of the configuration.
    Then, I could check the configuration against the main workarea to tell me what was out of date.
    I could also use the configuration wizard to create a new version (of the configuration) selecting the versions of the modules I wanted (ie: newer ones). Then I created a new version of the release application using the new configuration.
    Finally, in the command tool I can select the release work area which will extract correct module versions (I have the .fmbs) and I can compile a release.
    I guess your solution here is to have a main workarea with all the source, then a configuration of that and then one release application for every site. Each release application could use a different version of the configuration - depending on how up to date they are.
    HTH
    Steve

  • Default servlet for multi-homed web site

              Chaps,
              I would like to attach WebLogic to an Apache web server which is configured with
              several virtual hosts (identified by different ServerName's in the httpd.conf
              file).
              Is it possible (and if so, how) to map different default Servlets to each virtual
              host (i.e. map by host name)?
              Example:
              Apache config: one IP address, two virtual hosts for www.domain1.com and www.domain2.com
              WL configuration (desired): defaultServlet1 for www.domain1.com (if no better
              match found); defaultServlet2 for www.domain2.com (if no better match found)
              TIA
              Giorgio
              

    weblogic.httpd.defaultServlet=yourRegisteredServlet
              Gene Chuang
              Teach the world. Join Kiko!
              http://www.kiko.com/profile/join.jsp?refcode=TAF-gchuang
              "Daniel Wabyick" <[email protected]> wrote in message
              news:[email protected]..
              >
              > Hey,
              >
              > This is kind of a spin off a previous post - Does anyone know how to
              > change the default servlet for a Web Application? We want to
              > implement our own version of a servlet pipeline, and this seems like the
              > way to go.
              >
              

  • Snow Leopard does not auto adjust time for digital camera

    For some reason when I connected my digital camera this morning to auto adjust its time to reflect DST I ended up having to do it manually. Is this not a feature of SL? I did this a hundred times in Tiger without hassles. Maybe I am missing something. I am not using iPhoto for my imports.

    I'm curious what software you are referring to. I doubt this is the fault of SL but rather a change in the Canon software. I know Canon's "Camera Window" has changed over the last while if that is what you are referring to but I don't remember seeing a time setting in it ever. Can you look back at the name and version of the software you are referring to?

  • Configuration docs for Asset Management

    Hi.
    Does anyone have configuration docs for Asset Management
    thanks
    Tom

    Go to http://help.sap.com/ and click on SAP Best Practices. Look for Building Blocks Library under the Additional Information on the right side of the page. In the Building Block Library, look for J10- Asset Management. Click on that and thereafter, under Technical Documentation, click on configuration guide. There you should have all the information or at least some of the information you need on Asset Management.

  • ALV: how to handle event for multi (lead) row selection ?

    Hi,
    I use editable ALV and configure it for multi (lead) selection. Works fine.
    But I could not find any event handler for reading the selected lines.
    There is only the Event handler ON_LEAD_SELECT: this works only for 1 line
    (the lead line). But I could not read multi lines. Who can help?
    Thanks in advance, Christian

    Hi Christian,
    did you try a custom button?
    Try a call
    node->GET_SELECTED_ELEMENTS
    I cant remember if ALV sends event when multi-selection is on for each row selection.
    ie as each row is selected, do you get control ?
    If so, then you should still be able to call node->GET_SELECTED_ELEMENTS .
    regards
    Phil.

  • Does class-scheme in the coherence config file works for C++ classes?

    Hello,
    Does anyone knows if the class-scheme in the coherence config file works for C++ classes as well? In other words if I have a C++ implementation of com.DBCacheStore will it work?
    <class-scheme>
    <class-name>com.DBCacheStore</class-name>
    <init-params>
    <init-param>
    <param-type>java.lang.String</param-type>
    <param-value>AAA</param-value>
    </init-param>
    </init-params>
    </class-scheme>
    Thanks,
    Jay

    931907 wrote:
    Hello Robert,
    I am refering here to both C++ client and Coherence Server. Will it work in either of the cases?
    Thanks,
    JayHi Jay,
    Coherence server: it definitely won't do anything with C++.
    C++ client: for the cache store of a local cache residing within the C++ client you may be able to specify it, but it will have nothing to do with the cluster itself. I never worked with the C++ client, so I can't guarantee you can configure it that way. Look at the following page for further documentation:
    http://docs.oracle.com/cd/E24290_01/coh.371/e22839/cpp_config.htm
    Best regards,
    Robert

  • Looking for an elegant dual monitor auto-configure solution (SOLVED)

    I am currently using XFCE becuase Gnome and KDE are both too heavy for my weak little laptop with intel onboard graphics.  The number one thing I miss is auto-detect and configuration when I plug or unplug my monitor.
    I can't find anything that works automatically in an elegant way, the only thing I can do is poll the system every second.  There appears to be a way to make a udev rule but that is a little bit out of my depth.
    My current solution is below, does anybody have a suggestion for something more elegant?  It would be awesome if there was something in the AUR.
    #!/bin/bash
    #inspired of:
    # http://unix.stackexchange.com/questions/4489/a-tool-for-automatically-applying-randr-configuration-when-external-display-is-p
    # http://ozlabs.org/~jk/docs/mergefb/
    dmode="$(cat /sys/class/drm/card0-VGA-1/status)"
    export DISPLAY=:0
    export XAUTHORITY=~/.Xauthority
    # actual script
    while true
    do
    if [ "${dmode}" = disconnected ]; then
    /usr/bin/xrandr --auto
    elif [ "${dmode}" = connected ];then
    /usr/bin/xrandr --output VGA1 --auto --right-of LVDS1
    else /usr/bin/xrandr --auto
    fi
    sleep 1s
    done
    SOLVED using inotify see below and thanks for all the help
    #!/bin/bash
    #inspired of:
    # http://unix.stackexchange.com/questions/4489/a-tool-for-automatically-applying-randr-configuration-when-external-display-is-p
    # http://ozlabs.org/~jk/docs/mergefb/
    # http://superuser.com/questions/181517/how-to-execute-a-command-whenever-a-file-changes/181543#181543
    export MONITOR2=/sys/class/drm/card0-VGA-1/status
    while inotifywait -e modify,create,delete,open,close,close_write,access $MONITOR2;
    dmode="$(cat $MONITOR2)"
    do
    if [ "${dmode}" = disconnected ]; then
    /usr/bin/xrandr --auto
    echo "${dmode}"
    elif [ "${dmode}" = connected ];then
    /usr/bin/xrandr --output VGA1 --auto --right-of LVDS1
    echo "${dmode}"
    else /usr/bin/xrandr --auto
    echo "${dmode}"
    fi
    done
    Last edited by originalsurfmex (2013-10-28 20:51:45)

    Thanks very much for pointing me to inotify.  This is exactly the type of solution I was looking for!  I wasn't too excited about creating some udev tool.  Here is the script using inotify:
    #!/bin/bash
    #inspired of:
    # http://unix.stackexchange.com/questions/4489/a-tool-for-automatically-applying-randr-configuration-when-external-display-is-p
    # http://ozlabs.org/~jk/docs/mergefb/
    # http://superuser.com/questions/181517/how-to-execute-a-command-whenever-a-file-changes/181543#181543
    export MONITOR2=/sys/class/drm/card0-VGA-1/status
    while inotifywait -e modify,create,delete,open,close,close_write,access $MONITOR2;
    dmode="$(cat $MONITOR2)"
    do
    if [ "${dmode}" = disconnected ]; then
    /usr/bin/xrandr --auto
    echo "${dmode}"
    elif [ "${dmode}" = connected ];then
    /usr/bin/xrandr --output VGA1 --auto --right-of LVDS1
    echo "${dmode}"
    else /usr/bin/xrandr --auto
    echo "${dmode}"
    fi
    done
    I am marking this as solved.  If you have more critique or suggestions I'd be open to improve the script.

  • App auto updates are not saving configuration data for these Apps.

    I use Junos Pulse to connect to my work office on my iphone and my ipad air.    I am having problems when this App does an Auto Update from the App Store, that I loose all of my configuration settings.   I have co-workers that do not have this problem.  I'm at a loss to understand what settings on my devices are causing this to happen.

    now. SEEMS to be working o.k. again. but for how long ?
    do iDevices need a pre-update update in order to be able to install and apply an iOS update ???

  • Does Mac have any plans to create and/or update drivers for multi-media hardware that is useless to me after "upgrading" to Mavericks? This is a waste of money for free..

    I have found that since I "upgraded" to Mavericks, many pieces of audio hardware that was compatable with snow leopard is not compatable with mavericks. these machines are supposed to be the best for multi-media, now, without any warning, Mac has really messed this up. What are they thinking. I just converted from PC. Was it a $3000 mistake. MAC....Get BUsy, It can't be that hard to create some drivers that are compatable with common and popular pieces of hardware needed to do the projects I bought this thing for!!!!

    similar problem here. running the latest 13 inch mbpr and ableton live software, mavericks obvsly.
    experiencing crashes only with external soundcards attached. it happened with a usb interface (NI audio 2 dj) and with a echo audiofire 2 (firewire through thunderbold adapt.)
    keyboard and trackpad got unresponsive after the crash with the usb interface as they run on the usb buss I suppose.
    This is interesting: If i m running usb or firewire interfaces plugged in to my thunderbold display at home - i get 0 problems. it just works 100%
    so what does this tell us? is the hardware of the macbook defective?
    but why does the FW interface crash then when attached to the computer directly and not if attached to the display?
    this is extremely frustrating. basically my job is using this machine on stage and i cant use it. i m back to my 2007 macbook now running 10.6, thinking about getting a USED machine which was before mavericks and haswell - think these are the issues and what i would like to know:
    WILL THERE EVER BE A FIX FOR THIS ON THE LATE 2013 MBPr??

  • Cisco works LMS 3.0.1 does not archiever configuration for cisco 7201 router

    Hi All,
    We have Cisco works LMS 3.0.1 and it does not archiever configuration for cisco 7201 router.
    Any help would be appriciated.
    Thanks in advance
    Samir

    Hi,
    *** Device Details for d0151-100 ***
    Protocol ==> Unknown / Not Applicable
    Selected Protocols with order ==> TFTP,SSH,HTTPS
    Execution Result:
    Unable to get results of job execution for device. Retry the job after increasing the job result wait time using the option:Resource Manager Essentials -> Admin -> Config Mgmt -> Archive Mgmt ->Fetch Settings
    This is the error while doing syn archieve.
    I am not sure about Rtr7000 version but we have latest Rtr7000.
    Waiting for your kind reply.
    Samir

  • Preventing Item On Hand reservation in a configure to order environment for multi org same OU environment

    I have a scenario in a configure to order environment where I want to automatically creating flow schedules based on sales order demand. I have two orgs in same OU.
    1. How to setup sales order line to generate flow schedules in the manufacturing org and then ship the finished goods from the shipping org. I believe this can be done from sourcing rules to populate Warehouse field in sales order line with the shipping org and create Flow schedule in another manufacturing org. Please advise ?
    2. Once flow schedule is completed I want to prevent the reservation of Finished good on hand against Sales order so that the On hand could be transferred to shipping org and shipped. Please advise ?
    Thanks for your inputs.
    Best,
    Rajesh

    Pl do not post duplicates - Preventing Item On Hand reservation in a configure to order environment for multi org same OU environment

  • Auto Configure not prompting for credentials

    Hi Folks,
    I've a problem where users of Outlook on XenApp cannot configure an email profile. It just times out. I access the same XenApp server/user account from a Published Desktop or RDP the profile configures fine. 
    The Outlook Auto Configuration tool works identically in both scenarios except for the last step. On the Published Desktop I am prompted for domain credentials and then sent the Autodiscover XML file. However, over a XenApp session Auto Configuration never
    prompts for login details, although the log say differently, and the attempt fails.
    I turned on Outlook logging and captured Autodiscover logs for both scenarios (identifying information is changed to NWTraders)
    Log of Autodiscover failure over a XenApp session
    11676 0x0073AF1C
    02/05/15 13:13:07  Autodiscover to https://mail.nwtraders.com/autodiscover/autodiscover.xml starting 11676
    0x0073B22A 02/05/15 13:13:08
     GetLastError=0; httpStatus=401. 11676
    0x0073B22A 02/05/15 13:13:08
     AutoDiscover disabled auth schemes: 11676
    0x0073B22A 02/05/15 13:13:08
       <NONE> 11676
    0x0073B22A 02/05/15 13:13:08
     AutoDiscover supported auth schemes: 11676
    0x0073B22A 02/05/15 13:13:08
       Negotiate 11676 0x0073B22A
    02/05/15 13:13:08    NTLM 11676
    0x0073B22A 02/05/15 13:13:08
       Basic 11676 0x0073B22A
    02/05/15 13:13:08  AutoDiscover attempting Auto-Negotiate with Desktop Credentials. 11676
    0x0073B22A 02/05/15 13:13:08
     AutoDiscover USING pcreds->dwAuthScheme: 11676
    0x0073B22A 02/05/15 13:13:08
       Negotiate 11676 0x0073B258
    02/05/15 13:13:08  GetLastError=0; httpStatus=401. 11676
    0x0073B258 02/05/15 13:13:08
     AutoDiscover attempting NTLM with Desktop Credentials. 11676
    0x0073B258 02/05/15 13:13:08
     AutoDiscover USING pcreds->dwAuthScheme: 11676
    0x0073B258 02/05/15 13:13:08
       NTLM 11676 0x0073B287
    02/05/15 13:13:08  GetLastError=0; httpStatus=401. 11676
    0x0073B287 02/05/15 13:13:08
     AutoDiscover attempting supplied Credentials. 11676
    0x0073B287 02/05/15 13:13:08
     [email protected] 11676
    0x0073B287 02/05/15 13:13:08
     AutoDiscover USING pcreds->dwAuthScheme: 11676
    0x0073B287 02/05/15 13:13:08
       Negotiate 11676 0x0073C563
    02/05/15 13:13:13  GetLastError=0; httpStatus=401. 11676
    0x0073C563 02/05/15 13:13:13
     AutoDiscover attempting Basic auth with the Supplied Credentials. 11676
    0x0073C563 02/05/15 13:13:13
     [email protected] 11676
    0x0073C563 02/05/15 13:13:13
     AutoDiscover USING pcreds->dwAuthScheme: 11676
    0x0073C563 02/05/15 13:13:13
       Basic 11676 0x0073CE7C
    02/05/15 13:13:15  GetLastError=0; httpStatus=401. 11676
    0x0073CE9B 02/05/15 13:13:15
     AutoDiscover attempting AutoDiscover Credentials. 11676
    0x0073CE9B 02/05/15 13:13:15
     [email protected] 11676
    0x0073CE9B 02/05/15 13:13:15
     AutoDiscover USING pcreds->dwAuthScheme: 11676
    0x0073CE9B 02/05/15 13:13:15
       Negotiate 11676 0x0073D84F
    02/05/15 13:13:17  GetLastError=0; httpStatus=401. 11676
    0x0073D85F 02/05/15 13:13:17
     AutoDiscover attempting AutoDiscover Credentials. 11676
    0x0073D85F 02/05/15 13:13:17
     [email protected] 11676
    0x0073D86E 02/05/15 13:13:17
     AutoDiscover USING pcreds->dwAuthScheme: 11676
    0x0073D86E 02/05/15 13:13:17
       Negotiate 11676 0x0073E204
    02/05/15 13:13:20  GetLastError=0; httpStatus=401. 11676
    0x0073E204 02/05/15 13:13:20
    AutoDiscover prompting for Exchange credentials. 11676
    0x0073E213 02/05/15 13:13:20
    Autodiscover to https://mail.nwtraders.com/autodiscover/autodiscover.xml Failed (0x80040113) 11676
    0x0073E213 02/05/15 13:13:20
    AutoDiscover Warning: ExcludeHttpRedirect is ON. 11676
    0x0073E213 02/05/15 13:13:20
    AutoDiscover Warning: ExcludeSrvRecord is ON. 11676
    0x0073E213 02/05/15 13:13:20
    AUTODISCOVER GET SETTINGS END 11676
    0x0073E213 02/05/15 13:13:20
    Log of Autodiscover success over Published Desktop (works same over RDP)
    02/05/15 13:11:40  Autodiscover to https://mail.nwtraders.com/autodiscover/autodiscover.xml starting 12244
    0x00725EBF 02/05/15 13:11:41
     GetLastError=0; httpStatus=401. 12244
    0x00725EBF 02/05/15 13:11:41
     AutoDiscover disabled auth schemes: 12244
    0x00725EBF 02/05/15 13:11:41
       <NONE> 12244
    0x00725EBF 02/05/15 13:11:41
     AutoDiscover supported auth schemes: 12244
    0x00725EBF 02/05/15 13:11:41
       Negotiate 12244 0x00725EBF
    02/05/15 13:11:41    NTLM 12244
    0x00725EBF 02/05/15 13:11:41
       Basic 12244 0x00725EBF
    02/05/15 13:11:41  AutoDiscover attempting Auto-Negotiate with Desktop Credentials. 12244
    0x00725EBF 02/05/15 13:11:41
     AutoDiscover USING pcreds->dwAuthScheme: 12244
    0x00725EBF 02/05/15 13:11:41
       Negotiate 12244 0x00725EEE
    02/05/15 13:11:41  GetLastError=0; httpStatus=401. 12244
    0x00725EEE 02/05/15 13:11:41
     AutoDiscover attempting NTLM with Desktop Credentials. 12244
    0x00725EEE 02/05/15 13:11:41
     AutoDiscover USING pcreds->dwAuthScheme: 12244
    0x00725EEE 02/05/15 13:11:41
       NTLM 12244 0x00725F1D
    02/05/15 13:11:41  GetLastError=0; httpStatus=401. 12244
    0x00725F2C 02/05/15 13:11:41
     AutoDiscover attempting supplied Credentials. 12244
    0x00725F2C 02/05/15 13:11:41
     [email protected] 12244
    0x00725F2C 02/05/15 13:11:41
     AutoDiscover USING pcreds->dwAuthScheme: 12244
    0x00725F2C 02/05/15 13:11:41
       Negotiate 12244 0x0072719B
    02/05/15 13:11:46  GetLastError=0; httpStatus=401. 12244
    0x007271AB 02/05/15 13:11:46
     AutoDiscover attempting Basic auth with the Supplied Credentials. 12244
    0x007271AB 02/05/15 13:11:46
     [email protected] 12244
    0x007271AB 02/05/15 13:11:46
     AutoDiscover USING pcreds->dwAuthScheme: 12244
    0x007271AB 02/05/15 13:11:46
       Basic 12244 0x00727AC3
    02/05/15 13:11:48  GetLastError=0; httpStatus=401. 12244
    0x00727AF2 02/05/15 13:11:48
     AutoDiscover attempting AutoDiscover Credentials. 12244
    0x00727AF2 02/05/15 13:11:48
     [email protected] 12244
    0x00727AF2 02/05/15 13:11:48
     AutoDiscover USING pcreds->dwAuthScheme: 12244
    0x00727AF2 02/05/15 13:11:48
       Negotiate 12244 0x007285CF
    02/05/15 13:11:51  GetLastError=0; httpStatus=401. 12244
    0x007285EE 02/05/15 13:11:51
     AutoDiscover attempting AutoDiscover Credentials. 12244
    0x007285EE 02/05/15 13:11:51
     [email protected] 12244
    0x007285EE 02/05/15 13:11:51
     AutoDiscover USING pcreds->dwAuthScheme: 12244
    0x007285EE 02/05/15 13:11:51
       Negotiate 12244 0x00728F93
    02/05/15 13:11:53  GetLastError=0; httpStatus=401.12244
    0x00728F93 02/05/15 13:11:53
    AutoDiscover prompting for Exchange credentials. 12244
    0x0072B25D 02/05/15 13:12:02
    corpNWTraders\jsmith 12244
    0x0072B25D 02/05/15 13:12:02
     AutoDiscover USING pcreds->dwAuthScheme: 12244
    0x0072B25D 02/05/15 13:12:02
       Negotiate 12244 0x0072BB95
    02/05/15 13:12:05  GetLastError=0; httpStatus=200. 12244
    0x0072BB95 02/05/15 13:12:05
     Autodiscover XML Received 
    12244  ---BEGIN XML---
    I have the Autodiscover methods which use Active Directory turned off because the Exchange service is not on my domain or a Trusted domain. So we are relying on the HTTPS method only
    11588 0x00404E76
    02/05/15 12:17:01 AutoDiscover Warning: ExcludeScpLookup is ON.
    11588 0x00404E76
    02/05/15 12:17:01 AutoDiscover Warning: ExcludeHttpsRootDomain is ON.
    11588 0x00404E76
    02/05/15 12:17:01 AutoDiscover Warning: ExcludeHttpsAutoDiscoverDomain is ON.
    Regards - Mic

    Hi,
    Based on the information you provided, the issue was caused by an Autodiscover failure. To troubleshoot the issue, I suggest you post the question in Exchange forum:
    https://social.technet.microsoft.com/Forums/office/en-US/home?category=exchangeserver
    Regards,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Why does it say "The configuration data for this product is corrupt. Contact your support personnel." when trying to install itunes64installer on my b4 bit windows 7 acer pc? Any help would be much appreciated...

    Why does it say "The configuration data for this product is corrupt. Contact your support personnel." when trying to install itunes64installer on my b4 bit windows 7 acer pc? Any help would be much appreciated...

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • HT1816 How do I turn auto-renew off for my multi-pass using my iphone

    How do I turn auto-renew off for my multi-pass using my iphone

    Anserwed in your other post on this Topic...
    https://discussions.apple.com/message/22415340#22415340
    See the first Link I posted...
    iTunes Store: Purchasing and managing auto-renewing subscriptions

Maybe you are looking for

  • How to download but not install OSX Mountain Lion on Mavericks

    Hi all I would like to download but not install OSX Mountain Lion on my MBP which is currently running OSX Mavericks. This however seems impossible. I think OSX Mavericks were already installed on my MBP and therefore it seems "impossible" to downloa

  • Need help with creating a brush

    Hi guys, I wanted to ask for help with creating a brush (even a link to a tutorial will be goon enough ). I got this sample: I've created a brush from it, and i'm trying to get this kind of result: but it's only duplicates it and gives me this result

  • Multicast blocking in layer 2 switch

    Hello there, I need your help, this is the problem that I have. We have a 3750X with 7 ports assigned to a different multicast IP address (connected to the encoders), these are the ports with the multicast ip address and the rate that the encoder is

  • Export Function Group or Funtion Module

    Dear all,   I'm new in ABAP development.  I had a set of function module inside the same function group and i want to test it in another sandbox system.  Since, there is no transport routing between the development and sandbox server.  Is there any f

  • Using both power saving mode and offline mode caus...

    So I am having a very strange problem. I have been using the Situations App (formerly Nokia Situations) to automatically put my phone into offline mode, and power saving mode over night. 9pm to 6:30am. Recently the phone as started refusing to leave