ColdFusion Administrator

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

  1. #1

    Default ColdFusion Administrator

    I am unable to browse to any database file. I recently installed MX7. The thing is set up as its own server.
    why do I get the following error? "IO error on server communication"
    jjrme Guest

  2. Similar Questions and Discussions

    1. ColdFusion Administrator - Only way to go?
      Is the only way to set up a database connection through the Admin panel? I'd like to know if it's possible to manually code a connection. For...
    2. ColdFusion MX 7 Administrator page
      it just wont load :(
    3. ColdFusion Administrator URL ?!?!?!
      Hi, I'm doing the Dreamweaver "getting started", and for the ColdFusion setup guide, somewhere I have to enter the "ColdFusion Administrator...
    4. ColdFusion Administrator Can't Open
      Not sure what would cause this but when I go the the administrator link (http://ourserver/CFIDE/administrator/index.cfm) I am getting the following...
    5. Coldfusion Administrator won't run
      I am getting an error in my coldfusion administration pages. Here is the text of the error: Error Occurred While Processing Request The system...
  3. #2

    Default Re: ColdFusion Administrator

    Do you have a JRE installed? I could easily be mistaken, but I think those errors come because the administrator is using a Java call and Java was not found on the system.
    Mike Greider Guest

  4. #3

    Default Re: ColdFusion Administrator

    I'm having the same error as well. I installed CFMX7 with JRUN. I receive the
    Server Error: IO error on server communication error any time i try to browse
    the directory structure.

    I have the same setup on our development box and it's working fine. The only
    difference is that I did installed RDS on development, and not on this new
    setup. I followed the instructions to enable RDS via the links below (Article
    17276). but no luck. Has anyone come up with a resolution to this issue?


    [url]http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=tn_17276[/url]

    DanMcF321 Guest

  5. #4

    Default Re: ColdFusion Administrator

    Same problem on my RedHat Enterprise 3 box with CFMX7.

    Trying to update per instructions at
    [url]http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=fd71533[/url]

    I click system info and update file, and when I try to browse the filesystem
    to load the hot fix file (In /tmp/chf700002.jar) I get Server Error - IO error
    on server communication and an "OK" button. I click OK, the warning goes away,
    and it just sits there. Never gives me a file listing. It's not a firewall
    thing since I turned off iptables and it did the same thing.

    The application log says


    "Error","jrpp-45","06/22/05","14:34:34",,"File not found: /CFIDE/main/ide.cfm
    The specific sequence of files included or processed is:
    /data/web/CFIDE/main/ide.cfm "

    The directory /data/web/CFIDE/main does not exist, and he file ide.cfm is
    nowhere on the system. Did I miss a step during the install?

    Arrrrrr Guest

  6. #5

    Default Re: ColdFusion Administrator

    I have the same problem, followed the same steps in the articles, and was not successful.

    Has anyone found a solution to this issue?
    pilot carlos Guest

  7. #6

    Default Re: ColdFusion Administrator

    I had posted this information on another post and then I was able to find a
    solution for my situation. I backed up my WEB-INF/web.xml document and made
    changes to it, see below. Please note: The document references a RDSServlet
    path to a file that is non-existent but that did not matter. Once the code
    fired, the browse button worked. I hope this helps some of you.

    ***********Previos Post**********************************
    This question was answered by braswels, on Monday, June 6, 2005 7:19 AM

    Answer
    I found something that worked for me. I also tried this on another person's
    machine and it worked for them.

    I changed the "Begin RDS and End RDS" lines around the RDSServlet. (The code
    was currently "commented out" BETWEEN "Begin RDS" and "end RDS".)

    I added the closing "-->" after "begin RDS" line and add the beginning "<!--"
    before the "end RDS" line. This would allow the code in between the coments to
    fire. (see code below).

    1) backup the WEB-INF/web.xml document
    2) Change the web.xml document and save the document
    3) Close both dreamweaver and coldfusion if opened
    4) Restart the "Coldfusion MX 7 Application Server" service (control panel,
    administrator tools, services)
    5) re-opened "CF Admin" and it worked

    <!-- begin RDS -->
    <servlet-mapping>
    <servlet-name>RDSServlet</servlet-name>
    <url-pattern>/CFIDE/main/ide.cfm</url-pattern>
    </servlet-mapping>
    <!-- end RDS -->

    braswels Guest

  8. #7

    Default Re: ColdFusion Administrator

    I tried braswel's suggestion on 6/24. No joy. Other suggestions?
    Arrrrrr Guest

  9. #8

    Default Re: ColdFusion Administrator

    I found that there's TWO chunks of code involving the RDSServlet that need
    "un-commenting" in web.xml:
    the one mentioned in this thread as well as the following:


    <!-- begin RDS -->
    <servlet id="macromedia_servlet_8789">
    <servlet-name>RDSServlet</servlet-name>
    <display-name>RDS Servlet</display-name>
    <servlet-class>coldfusion.bootstrap.BootstrapServlet</servlet-class>
    <init-param id="InitParam_103401311065856789">
    <param-name>servlet.class</param-name>
    <param-value>coldfusion.rds.RdsFrontEndServlet</param-value>
    </init-param>
    </servlet>
    <!-- end RDS -->

    oumedical Guest

  10. #9

    Default Re: ColdFusion Administrator

    Uncommenting ALL references (there are two) to "RDSServlet" in web.xml worked for me.
    Jason D 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