Coldfusion to listen only 127.0.0.1

Ask a Question related to Coldfusion Server Administration, Design and Development.

  1. #1

    Default Coldfusion to listen only 127.0.0.1

    Hi,

    I made out-of-the-box installation of Coldfusion MX7. I would like
    it to listening only localhost and not all the IP's/interfaces. I tried
    to edit ${PREFIX}/runtime/servers/coldfusion/SERVER-INF/jrun.xml
    and restart coldfusion but that did not help.

    How to achieve this?

    --
    tlamp


    tlamp Guest

  2. Similar Questions and Discussions

    1. How do I listen on several addresses?
      I have a server with several multi-homed adapters. I want to listen on BOTH 80.23.54.211 and localhost. In fms.ini I have set ADAPTOR.HOSTPORT =...
    2. MySQL won't listen
      I set up a small LAN with 2 machines (acer.loc IP:192.168.1.33 and hppav.loc IP: 192.168.1.34) for test purposes. Each client can access its own...
    3. Why MS Doesn't Listen To Themselves?
      Go download the Windows User Experience Guidelines at www.microsoft.com/downloads and have a read. I am quite amazed at how much babbling is...
    4. Millionaire at 31 ... on the Internet! Listen to how he is doing it.
      I have to get this off my chest before I explode. I just went from 1000 hits to 1 MILLION! ... and I haven't spent one dime in advertising!!!...
    5. Using Web Service to listen on certain TCP port?
      Hi guys, I need to listen for incoming requests from a Java web service application (or actually JAXB) on a certain port on the server. The .NET...
  3. #2

    Default Re: Coldfusion to listen only 127.0.0.1

    What did you change? If you're using the built in web server edit the
    WebService. If you're using an external web server edit the ProxyService. The
    following will restrict the IP to 127.0.0.1:

    <attribute name="interface">127.0.0.1</attribute>
    <attribute name="bindAddress">127.0.0.1</attribute>

    Ted Zimmerman


    tzimmerman Guest

  4. #3

    Default Re: Coldfusion to listen only 127.0.0.1

    > The following will restrict the IP to 127.0.0.1:
    >
    > <attribute name="interface">127.0.0.1</attribute>
    > <attribute name="bindAddress">127.0.0.1</attribute>
    Thanks, that helped. Earlier I tried changing the interface but I
    was missing the bindAddress attribute. There still seems
    to be some coldfusion related upper ports listening
    on * (e.g. port 2522 and 2920).

    --
    tlamp



    tlamp Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139