ColdFusion 8 - 64-bit in distributed mode?

We have been running 32-bit in distributed mode since 2004
using the J2EE WAR deployment on JRun 4. With CF8 Updater 1 we
would like to migrate to the 64-bit version. Is it possible to run
a cluster of two physical servers with ColdFusion clusters on Jrun
server instances where one host OS and member server instance is
32-bit and the other host OS and member server instance is 64-bit?
We are trying to figure out a migration strategy that will permit
us to extend the current infrastructure cluster horizontally, viz.
add the new servers to the current cluster with minimal impact on
performance and code changes.
Any advice with such a migration issue would be welcome.
Thanks,
Scott

devlosh wrote:
> Install CF 80 ent 64 bit in windows server 2003. (server
1)
> MY webserver is is anoter system which is running
windows xp 32 bit. ie my iis
> is 32 bit. (server 2)
>
> All my web files and websites(IIS stuffs ) wil be in
server 2. and Jrun will
> in in server 1.
This will not work. All your .cfm files must be on the server
that has
JRun (server1).
In order to set this up:
1. Install JRun / CF on server1. It is highly recommended to
choose the
buildin webserver so you can verify your installation is
correct.
2. Copy wsconfig.jar to the webserver on server2. Make sure
you have a
JDK installed (same version as CF/JRun uses).
3. Run wsconfig.jar and specify connection parameters to
connect to
server1:
http://livedocs.adobe.com/coldfusion/6.1/htmldocs/websera7.htm
4. Plcae your .cfm files in the CF wwwroot
(...\???.ear\cfusion.war\
folder) on server 1.
5. Test.
This should work, but IIRC Adobe will only support a
configuration where
you also have your CF code on the webserver and the path to
your IIS
wwwroot on server2 is identical to the path to the JRun
wwwroot on server1.
Jochem
Jochem van Dieten
Adobe Community Expert for ColdFusion

Similar Messages

  • CF8 64-bit in Distributed Mode; also, Windows or Linux?

    We're currently running CF7 in distributed mode; two
    mirrored, load-balanced Win2K3x32 web servers hosting our sites,
    each with the CF7 connector installed, pointing to two mirrored,
    load-balanced Win2K3x32 application servers running clustered CF7
    Enterprise.
    This setup works fine, but we're now looking at
    replacing/rebuilding our web servers, and thinking about upgrading
    to CF8, and possibly to Win2K8 or RHEL5.1, as well. Our hardware
    all features x64 support, but so far, everything we've done has
    been 32-bit. Since CF8 finally includes x64 support, this makes it
    something to consider.
    So i have two questions, in case anyone has tried either of
    these before:
    [1] If we install Win2K8x64 and the CF8x64 connector, could
    it point to a CF7x32 application server and still work properly?
    This would allow us to make the migration in steps; web servers,
    then app servers. We were able to make this intermediate step
    during our last upgrade; pointing the CF7x32 connectors at our old
    CFMX app server, until we had the new one available. But both of
    those platforms were 32-bit architectures.
    [2] Are there any practical gains to be had from moving to a
    Linux x64 web server with the CF8x64 connector, pointing to a Linux
    CF8x64 app server? We've not had the knowledge base necessary to
    support Linux servers in the past, but over the past 2 years we've
    had quite a bit of success moving straight HTML sites onto RHEL
    with Apache2; and are starting to wonder if it's worth the time and
    trouble it would take for us to make this next leap away from
    Windows... :)
    Thanks for helping me think this through!

    We're currently running CF7 in distributed mode; two
    mirrored, load-balanced Win2K3x32 web servers hosting our sites,
    each with the CF7 connector installed, pointing to two mirrored,
    load-balanced Win2K3x32 application servers running clustered CF7
    Enterprise.
    This setup works fine, but we're now looking at
    replacing/rebuilding our web servers, and thinking about upgrading
    to CF8, and possibly to Win2K8 or RHEL5.1, as well. Our hardware
    all features x64 support, but so far, everything we've done has
    been 32-bit. Since CF8 finally includes x64 support, this makes it
    something to consider.
    So i have two questions, in case anyone has tried either of
    these before:
    [1] If we install Win2K8x64 and the CF8x64 connector, could
    it point to a CF7x32 application server and still work properly?
    This would allow us to make the migration in steps; web servers,
    then app servers. We were able to make this intermediate step
    during our last upgrade; pointing the CF7x32 connectors at our old
    CFMX app server, until we had the new one available. But both of
    those platforms were 32-bit architectures.
    [2] Are there any practical gains to be had from moving to a
    Linux x64 web server with the CF8x64 connector, pointing to a Linux
    CF8x64 app server? We've not had the knowledge base necessary to
    support Linux servers in the past, but over the past 2 years we've
    had quite a bit of success moving straight HTML sites onto RHEL
    with Apache2; and are starting to wonder if it's worth the time and
    trouble it would take for us to make this next leap away from
    Windows... :)
    Thanks for helping me think this through!

  • Securing Non-Coldfusion Content in Distributed Mode

    We are in the process of setting up our sites with CFMX7
    Enterprise in distributed mode. IIS on one server and our CF
    instances on another. We have this working fine.
    In our current setup, IIS is set to allow anonymous access to
    allow access to the public side of our sites. For the
    password-protected portions we've development our own
    authentication system and it is working fine.
    However, we have found that in distributed mode, all
    non-coldfusion material (images, HTML pages, PDFs, etc...) are
    processed and sent from the IIS server directories and never
    touches the CF server. CF requests are sent to their respective
    instance on its separate machine, the results returned to IIS where
    it then grabs the images and any other non-CF content from itself
    and serves the page to the user. This appears to be by design and
    forces us to maintain our directory structure on two machines.
    We're willing to live with that but is there any way to protect the
    non-CF content residing on the IIS server? We have some images and
    PDFs we'd like to keep available only for authorized users but it
    seems using the built-in ColdFusion tools we can only protect CF
    material on the CF machine.
    Thoughts or insights?

    Is there any reason you have CF on a separate server?
    The reason I ask it that I am currently implementing
    something similar on
    our extranet. Basically we our extranet server and our
    intranet server.
    Because the extranet has to be more "open" we don't want our
    "protected"
    pdfs, word docs, etc stored on that server, but some of those
    items need to
    be accessible to our extranet users. What was decided here
    was to put all
    our "protected" files on the intranet server and use cfcs
    (one on the
    extranet, one on the intranet), along with a new page (on the
    extranet) to
    "pull" the requested file. Basically all links on the
    extranet that would
    normally point to a document now point to a page that calls
    the extranet cfc
    and passes the UUID for the document. This cfc does an http
    request to the
    cfc on the intranet which determines which document is being
    requested,
    grabs that file and passes it back to the extranet for
    display. This serves
    a couple of purposes. 1) The user never actually knows where
    the file is
    stored. 2) We can pass a username and password via the http
    call for
    authentication.
    We don't have to have multiple copies of directory structure
    as all our
    non-restricted content can be stored on the extranet. But we
    do have CF
    installed on both servers.
    Bryan Ashcraft (remove brain to reply)
    Web Application Developer
    Wright Medical Technologies, Inc.
    =============================
    Macromedia Certified Dreamweaver Developer
    Adobe Community Expert (DW) ::
    http://www.adobe.com/communities/experts/
    "sdsinc_pmascari" <[email protected]> wrote
    in message
    news:[email protected]...
    > We are in the process of setting up our sites with CFMX7
    Enterprise in
    > distributed mode. IIS on one server and our CF instances
    on another. We
    > have
    > this working fine.
    >
    > In our current setup, IIS is set to allow anonymous
    access to allow access
    > to
    > the public side of our sites. For the password-protected
    portions we've
    > development our own authentication system and it is
    working fine.
    >
    > However, we have found that in distributed mode, all
    non-coldfusion
    > material
    > (images, HTML pages, PDFs, etc...) are processed and
    sent from the IIS
    > server
    > directories and never touches the CF server. CF requests
    are sent to
    > their
    > respective instance on its separate machine, the results
    returned to IIS
    > where
    > it then grabs the images and any other non-CF content
    from itself and
    > serves
    > the page to the user. This appears to be by design and
    forces us to
    > maintain
    > our directory structure on two machines. We're willing
    to live with that
    > but
    > is there any way to protect the non-CF content residing
    on the IIS server?
    > We
    > have some images and PDFs we'd like to keep available
    only for authorized
    > users
    > but it seems using the built-in ColdFusion tools we can
    only protect CF
    > material on the CF machine.
    >
    > Thoughts or insights?
    >

  • How to Install Coldfusion 8 64-bit on Small Business Server 2008 64-bit

    How to Install Coldfusion 8 64-bit on Small Business Server 2008 64-bit
    I ran Coldfusion 8 on SBS 2003 Premium for 6 months with no problems.  When we finally decided to cut over to SBS 2008, that’s when everything went to hell.  I tried for weeks to get Coldfusion 8 to install properly on the new SBS 2008 64-bit box.  During the course which, I found bits and pieces of information for Vista 64-bit and Windows Server 2008 64-bit installations.  There are some distinct differences, however, with SBS 2008 since it runs core Web applications like OWA, RWW and Companyweb.  After countless unsuccessful attempts, one of which completed corrupted the box, I found the solution.
    I have attempted in this white paper to detail the steps to assist others who may be in a similar situation.  I don’t make any warranty for the information, but so long as you follow the steps carefully you should be fine.  BTW, for those of you who say Adobe offers free technical support for licensed users, that’s not entirely true.  Like I said, I purchased CF8 and originally installed it on an SBS 2003 Premium box.  After we cut over to SBS 2008 and encountered problems, Adobe wouldn’t provide any technical support without charging.  Moreover, based on my initial conversations with Adobe’s technical team, no one seemed to know much about running 64-bit on SBS.
    From my understanding, only two versions of Coldfusion 8 can be installed in 64-bit: Enterprise and Developer.  The “normal” install (which I paid a grand for) can only be deployed in 32-bit mode – gee, THANKS Adobe!  By the way, in Developer mode only two distinct IPs can access the site in addition to the localhost.  Any additional IPs will result in a CFML error message stating that the maximum number of IPs have been exceeded.  At any rate, take your time and follow the steps to achieve a successful installation. 
    PRE-INSTALLATION TASKS
    Back Up SBS
    It’s always a good practice to backup your server before deploying any kind of major system changes.  Although this step is optional, I recommend it in case you need to restore your server for any reason.  Bear in mind, if your system ever gets totally corrupted, you cannot restore back from the twice daily incremental backup images alone.  You will need a full backup with system recovery information to restore.  Here are the basic steps:
    Click: Start > Programs > Administrative Tools.  Right-click “Windows Server Backup” and choose “Run as administrator”.
    Click “Backup Once” under Actions in the right-hand pane.
    Choose the “Different Options” radio button under Backup Options.
    Choose the “Custom” radio button.  What we’re primarily interested in here is backing up the OS – not your data partitions or attached drives.
    Select the “SYSTEM (C)” checkbox, uncheck any others.  Also, ensure that the “Enable system recovery” checkbox is selected before continuing on.
    Under ‘Specify Destination Type’, I usually select the “Local drives” radio button and point it to a Terrabyte USB drive I use for backups.  You can point this to a tape drive, or select the “Remote shared folder” radio button if you map to a UNC path to store your backup images.  Just remember, make sure that whatever path you select can readily be accessed in the event of an emergency.  Also, make sure the “Verify after writing (recommended)” checkbox is selected.
    Under ‘Specified Advanced Option’, I usually select the “VSS full backup” radio button instead of the default since I don’t use a 3rd party backup product.  If like me you rely solely on SBS for your backups, choose the full backup option.
    Confirm everything and click “Backup”.  This process may take several hours depending on the size of your system.
    Verify ISAPI Filters:
    In IIS Manager, double-click the server instance in the left-hand pane.
    In the center pane under IIS, double click the “Modules” icon to verify that the ISAPI native modules are already installed for IIS.  If it’s set up correctly you should see two entries:
    IsapiFilterModule              %windir%\System32\inetsrv\filter.dll
    IsapiModule                        %windir%\System32\inetsrv\isapi.dll
    If either of these modules are missing, you will need to re-install these (google for a solution).
    Set Up Development Environment
    Create a directory for your CFML files outside of the default Windows location (e.g., default is usually C:\inetpub\wwwroot\).  For the purpose of our install, I created a directory on a separate disk called: D:\DEV.
    Copy and paste your CFML files and directories into the new DEV root Web directory.  This will eventually be the directory where the Coldfusion installer places the CFIDE and CFDOCS folders. 
    Open IIS Manager and double-click the server instance in the left hand pane.  Expand the “Sites” folder.  Right-click the Sites folder and select “Add Web Site”.
    Enter a name in the “Site Name” box (e.g., “test-site”).  You will notice that the system will automatically create a corresponding Application Pool with the same name.  NOTE: this is important to prevent conflicts between the DefaultAppPool (needed for SBS Web apps like OWA, RWW, etc.) and the application pool needed for Coldfusion to function properly in SBS 2008.
    Point the “Physical Path” to the directory you created in step #1 above (e.g., “D:\DEV”).
    Don’t worry about testing the connection.  If you click “Test Settings” you may receive a warning that IIS cannot verify access to path (D:\DEV).  Don’t worry about this for the time being.
    Under “Host name”, enter a DNS path to your site (e.g., “dev.test-site.com”).  Click “OK”.
    Configure Application Pools for Installation
    In IIS Manager, double-click the server instance in the left-hand pane.  Click on “Application Pools” to display the list of server application pools in the center pane.
    In the “Actions” pane on the right-hand side, click “Set Application Pool Defaults”.
    Change “Enable 32-Bit Applications” - the second item from the top – from “False” to “True”, and then click “OK”.  NOTE: if you skip this step, Coldfusion will not properly create the required mappings during the install. We will change this setting back after the installation completes – more on this later.
    Modify the application.host.config File for 64-Bitness
    Click: Start > Programs > Accessories.  Right-click “Notepad” and choose “Run as administrator”.
    Open the config file from within Notepad – default location: C:\Windows\System32\inetsrv\config\applicationHost.config
    Do a search and change this one line from:
    <add name="PasswordExpiryModule" image="C:\Windows\system32\RpcProxy\RpcProxy.dll" />
    To this:
    <add name="PasswordExpiryModule" image="C:\Windows\system32\RpcProxy\RpcProxy.dll" preCondition="bitness64" />
    Restart the IIS Admin service.
    Set HTTP Compression
    According to some threads I read, the http compression module can cause errors if you don’t disable it globally. To remedy this, perform the following:
    Click: Start > Programs > Accessories.  Right-click “Command Prompt” and choose “Run as administrator”.
    At the command prompt, change directory to intetsrv by typing: cd inetsrv
    Run the following command:
    C:\Windows\system32\inetsrv>appcmd.exe set config -section:system.webServer/httpCompression /-[name='xpress']
    This will turn off HTTP compression for all sites in IIS.
    In IIS Manager, double-click the server instance in the left-hand pane.  Double-click the “Compression” icon in the IIS section of the center pane.
    Uncheck all of the boxes, then click the “Apply” button under Actions in the right-hand pane.
    Recheck all of the boxes, then click the “Apply” button under Actions in the right-hand pane.
    Restart the IIS Admin service.  This should enable compression and coldfusion to work at the same time.
    NOTE: if for some reason you need to reverse this, run the following command from the command prompt:
    C:\Windows\system32\inetsrv\appcmd.exe set config -section:system.webServer/httpCompression /+[name='xpress',doStaticCompression='false',dll='%windir%\system32\inetsrv\suscomp.dll']
    INSTALLATION TASKS
    Download the 64-bit installation package from Adobe – filename: coldfusion-801-wind64.exe.
    Right-click the file and select “Run as administrator”.
    Accept the terms of the License Agreement.
    If you have an Enterprise license, enter it.  For our purposes, just click the “Developer Edition” checkbox.
    Select “Server configuration” – the default radio button.
    I deselected all subcomponents and can’t guarantee that you’ll arrive at the same results if you select additional items like “.NET Integrated Services”.  It should be fine, particularly if you install documentation.  My preference was to keep the install as plain vanilla as possible.
    Select the directory path for Coldfusion to install into – default is :C\Coldfusion
    THE NEXT TWO STEPS ARE CRITICAL TO YOUR SUCCESS.  Unselect “All IIS Websites” and select the “Configure specific IIS Website or another web server” radio button.  Click “Add”, and then select your test Web site (e.g., “test-site”) under “IIS Web Site”.  Hit “OK”.
    Do NOT use the default directory path for the CF Administrator location (e.g., default path: “C:\inetpub\wwwroot”).  Instead, point the installer to your new DEV root Web directory (e.g., “D:\DEV”).  The bottom line, you want the installer to place the CFIDE directory and files within this folder, alongside your other CFML files and folders.
    Enter an Administrator password.
    Choose to Enable RDS, or not.  I enable this by preference but it is not required.  This allows you to make updates to files using a CFML editor directly vs. having to move/FTP the files over if you’re working remotely.  Opponents to this argue that it’s potentially less secure, but for a lower environment I don’t see this as a major concern.
    Confirm everything to kick off the install.
    If all goes well you should see a message at the end stating that the install was successful.  I recommend you uncheck the box that asks you to open the CF Administrator in the default Web browser after the install.  NOTE: we will open it a different way during the post-installation tasks.  The worst thing that will happen if you forget to uncheck the box is that you might receive an error that the command prompt hung – not a big deal – just close it and move on to the next (final) steps.
    POST-INSTALLATION TASKS
    Verify CF Installation:
    The installation will create a new folder in your program group: Start > Programs > Adobe > Coldfusion 8.  The default “Administrator” link will not work because it points to the wrong path: http://127.0.0.1/CFIDE/administrator/index.cfm. The “127.0.0.1” or “localhost” path as you may recall in IIS, points by default to the “C:\inetpub\wwwroot” directory.  Our CFIDE files, however, are located within: D:\DEV.
    To bring up the CF Administrator logon page, open up a Web browser and replace the “http://127.0.0.1” part of the path with the DNS path name to your CF environment (e.g., http://dev.test-site.com/CFIDE/administrator/index.cfm).
    This should bring up the Coldfusion Administrator Login screen.  Enter in the Administrator password you created during the install to log in and configure your application server.
    Verify that your test-site renders correctly by typing in your test URL into a Web browser (e.g., http://dev.test-site.com).
    Fix Application Pool Defaults to Re-enable SBS Web Applications:
    At this point, Coldfusion Administrator and your test CMFL Web site should be working properly.  The problem is, default SBS Web applications like OWA, RWW and Companyweb will throw errors and fail to start.  Fortunately, this is easily remedied by performing the following steps:
    In IIS Manager, double-click the server instance in the left-hand pane.  Click on “Application Pools” to display the list of server application pools in the center pane.
    In the “Actions” pane on the right-hand side, click “Set Application Pool Defaults”.
    Change “Enable 32-Bit Applications” - the second item from the top – from “True” to “False” this time.  This should re-enable the SBS applications, which would otherwise result in 500 errors (e.g., OWA, RWW, Companyweb, etc.).  There is no need to restart IIS.
    Open a Web browser and test that you can once again connect to OWA, RWW and Companyweb successfully.
    In IIS click to highlight the application pool for your new site (e.g., “test-site”).  In the right-hand pane, click “Advanced Settings”.  Ensure that “Enable 32-Bit Applications” – second item from the top – is set to “True” for this application pool specifically.
    Lastly, jump up and down for joy!  Hopefully now, everything is working.  Best of luck!! ..Paul D (MCP).

    First, it would be a good idea for you to specify what distro of Linux you're using, as not all are supported by Adobe.
    Second, this is probably your problem right here:
    http://askubuntu.com/questions/40416/why-is-lib-libc-so-6-missing
    In a nutshell, CF expects the 32-bit version of libc.so.6 to be in /lib, but it's probably not. You might be able to modify the installer to point to the correct location for that file, or you might be able to create a symlink to the file - but as the above link describes, creating a symlink might have negative consequences.
    As for installing CF 8 64-bit, that's only available with Enterprise, not Standard. If you want CF Standard 64-bit, you need to upgrade to CF 9.
    Dave Watts, CTO, Fig Leaf Software

  • Packaged ColdFusion 9 Datasources not importing to ColdFusion 10 64-bit on another computer

    I installed ColdFusion 10 64-bit on my I new 64-bit work computer. To save time and effort; l decide to use Packaging & Deployment option on ColdFusion 9 32-bit on my old computer to archive all my data sources and deploy on the new server. I selected all the Datasources I wanted to archive (26 of them) without selecting any other settings. The archive file was successfully created and I built the backup file 'C:/Projects/ColdFusion/ColdFusionBak24May2013.car' to copy to my machine. Created achieve file is visible in ColdFusion Archives on my old computer, I can modify it and I deploy it on my old computer but nothing happens when I copy ColdFusionBak24May2013.car file to my new computer and try to deploy it there using ColdFusion 10 64-bit.
    Everything seems to work fine with selecting the file but when I click Deploy Achieve; the process goes through the motion but none of the data sources are added to ColdFusion 10 on the new computer.
    Am I doing something wrong or doesn't ColdFusion 9 (32-bit) Achieve file work on ColdFusion 10 (64-bit)?
    PS: XML file called neo-datasource.xml is located in ColdFusion10\cfusion\lib directory listing all datasources. Would it work if I merge neo-datasource.xml file on my new computer with the one on my old computer instead or not? 
    Any assistance will be greatly appreciated.
    Thank you.

    Have you considered using JDBC rather than ODBC?  I suspect that both Adobe and Microsoft view ODBC as a legacy technology.

  • Problems Installing ColdFusion 9 (64 bit) on Windows 7 and IIS 7.5

    Problem:  Empty response for static Files including images, CSS and js files. The response code is 200 OK, but there is no actual response (it's empty).
    The ColdFusion Administration web site works correctly except it's not displaying any images, css and js. Why it is serving up dynamic content and not static is a mystery.
    Installed ColdFusion 9 (64 bit) Multiserver Option on Windows 7 running IIS 7.5.
    I have verified that IIS 7.5 is correctly configured for Static Content for both the handler mappings and the modules.
    The Configuration for IIS 7.5 install looks like this:
    The ColdFusion web configuration tools shows that it is connected to all instances of IIS.
    I have uninstalled ColdFusion9 and IIS 7.5, and reinstalled many times but get the same problem: Empty responses for Static Files.
    Help is appreciated.

    To Clarify the blurry picture, this is what the IIS 7.5 install options look like:
    Web Mgmt Tools > II6 Mgmt Compatility > IIS Metabase  & II6 Compatability
    WWW Services > Application Dev Features > .Net Extensibility and ASP.Net and CGI and ISAPI Extensions & ISAPI Filters
    Common HTTP Features > Default Document and Directory Browsing and HTTP Errors and Static Content
    Security > Request Filtering

  • SAP CE Installation in Distributed Mode without SAPMNT Folder Share

    Hello
    We are installing NW CE 7.1 in Production Environment in Distributed Mode - App Server on one host and DB Server on another host.
    The App and DB server OS are Windows Server 2008 R2 and DB is Oracle 11g. We have successfully installed SCS on the app server and now installing DB Server Instance on the DB Host. While installing the same, the SAP Installtion asks for path of SAPMNT.
    Our Network Team has informed that due to security reasons, in production data center they will not be able to allow sharing of folder from App Server. They have asked us to check if there is any other way of completing our installation without actually creating folder share on App Server.
    We would like to know whether the sharing can be taken out of the server component and the same can be enabled on the different machine and this can be given the UNC path for accessing the same.
    Kindly confirm if this is possible and supported by SAP. Also let us know if there are some other supported options regarding the same.
    Regards,
    Shubham

    Hi Sunny,
    Thanks a lot for your response. So does it mean I can copy the usr/sap folder to the DB Server and give the path from the same DB server to complete the install? Does this path need to be provided in UNC format or can be using local drive path
    Also can I do the same for Additional App Server that we can install. Kindly confirm.
    Regards,
    Shubham

  • Change Ports for BranchCache Distributed Mode

    Hi!
    I know you can change the ports being used for BranchCache Hosted mode. Is it possible to change the ports for BranchCache distributed mode as well? Since some of my clients who need to use BranchCache are providing a webserver on port 80.
    Thanks for your support!

    Oi, of course you can change the port of BranchCache Senior!
    Set ConnectPort and ListenPort in reg as part of these instructions:
    https://technet.microsoft.com/en-us/library/dd837646(v=ws.10).aspx
     Then BranchCache service fails to start, but if you look in the event log you see:
    The BranchCache service cannot start because the HTTP namespace used for serving content to requesting clients is not reserved.
    Run the enable cmdlet appropriate to your service mode from an elevated PowerShell command prompt.
    So to reserve this space, run the following command:
    netsh branchcache>set service mode=distributed
    Which then outputs the following, underlined, bolded and Italic so that Phil can see it:
    Configuring URL Reservation url=http://+:1365/116B50EB-ECE2-41ac-8429-9F9E963361B7/, sddl=D:A;;GX;;;NS) ... Succeeded
    Enabling firewall rule group BranchCache - Content Retrieval (Uses HTTP)... Succ
    eeded
    Setting Service Start Type to Manual... Succeeded
    Setting Service Mode... Succeeded
    Starting Service... Succeeded

  • Install coldfusion ent 64 bit in a distributed environment

    Hi,
    What I am trying to achieve :
    Install CF 80 ent 64 bit in windows server 2003. (server 1)
    MY webserver is is anoter system which is running windows xp
    32 bit. ie my iis is 32 bit. (server 2)
    All my web files and websites(IIS stuffs ) wil be in server
    2. and Jrun will in in server 1.
    What i did:
    1. Installed Cf 80 in server 1. with multiple instance
    support.
    2. copied the connector files from jrun folder of server 1 to
    server 2. and changed few config files
    (This was done by following some docs form net)
    But this method is not working. Please let me know if someone
    have a clear way of doing it or any docs are there.
    I will be so thankfull as I am struck up with this.
    Thanks,
    Dev

    devlosh wrote:
    > Install CF 80 ent 64 bit in windows server 2003. (server
    1)
    > MY webserver is is anoter system which is running
    windows xp 32 bit. ie my iis
    > is 32 bit. (server 2)
    >
    > All my web files and websites(IIS stuffs ) wil be in
    server 2. and Jrun will
    > in in server 1.
    This will not work. All your .cfm files must be on the server
    that has
    JRun (server1).
    In order to set this up:
    1. Install JRun / CF on server1. It is highly recommended to
    choose the
    buildin webserver so you can verify your installation is
    correct.
    2. Copy wsconfig.jar to the webserver on server2. Make sure
    you have a
    JDK installed (same version as CF/JRun uses).
    3. Run wsconfig.jar and specify connection parameters to
    connect to
    server1:
    http://livedocs.adobe.com/coldfusion/6.1/htmldocs/websera7.htm
    4. Plcae your .cfm files in the CF wwwroot
    (...\???.ear\cfusion.war\
    folder) on server 1.
    5. Test.
    This should work, but IIRC Adobe will only support a
    configuration where
    you also have your CF code on the webserver and the path to
    your IIS
    wwwroot on server2 is identical to the path to the JRun
    wwwroot on server1.
    Jochem
    Jochem van Dieten
    Adobe Community Expert for ColdFusion

  • Install coldfusion 8 32 bit on 64bit system

    in agreement with docs
    http://kb2.adobe.com/cps/403/kb403277.html#main__Toc193176416
    ("As of ColdFusion 8 Update 1, the Standard Edition can run as a 32-bit application on all supported 64-bit platforms in addition to 32-bit platforms")
    i'm trying to install coldfusion-801-lin.bin on
    a linux 64bit system
    but i receive this error
    [root@lnx1 store]# ./coldfusion-801-lin.bin
    Preparing to install...
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    strings: '/lib/libc.so.6': No such file
    Launching installer...
    ./coldfusion-801-lin.bin: /tmp/install.dir.9137/Linux/resource/jre/bin/java: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory
    ./coldfusion-801-lin.bin: line 2479: /tmp/install.dir.9137/Linux/resource/jre/bin/java: Success
    =========
    if i tryng to install coldfusion-801 64bit version,
    the serial number is not valid
    (my serial number is CF standard, upg license)
    you can help me?
    many thanks!

    First, it would be a good idea for you to specify what distro of Linux you're using, as not all are supported by Adobe.
    Second, this is probably your problem right here:
    http://askubuntu.com/questions/40416/why-is-lib-libc-so-6-missing
    In a nutshell, CF expects the 32-bit version of libc.so.6 to be in /lib, but it's probably not. You might be able to modify the installer to point to the correct location for that file, or you might be able to create a symlink to the file - but as the above link describes, creating a symlink might have negative consequences.
    As for installing CF 8 64-bit, that's only available with Enterprise, not Standard. If you want CF Standard 64-bit, you need to upgrade to CF 9.
    Dave Watts, CTO, Fig Leaf Software

  • I Tunes 8 crashes Vista 64 bit in sleep mode

    I just bought a brand new Dell desktop with Vista 64 bit and installed the 64 bit version of I Tunes 8. The program opened, but I was not yet ready to migrate my files to the new PC so I closed the program and left for a while. When I returned and attempted to wake the computer from sleep mode, the monitor started displaying nothing but a pinstripe pattern and the system was frozen, requiring a hard reboot. A second occurrence convinced me to uninstall and do a system restore. Sleep mode then operated properly again. A new install of IT8 produced the same freeze. The program doesn't have to be open when the system goes into sleep mode to cause the crash. I have not even connected my dock to the PC yet. I have over 22,000 songs on my old PC and am very concerned about bringing them over. Is it possible to obtain a workable version of I Tunes 7 for 64 bit? Any help will be appreciated.

    The problem turned out to be related to the ATI video card. Downloading the latest diver fixed it.

  • Coldfusion 10 64 bit developers edition

    I have a new 64bit laptop that I plan to use for developing. I am working on a project that uses CF 10. I'd really like to get a copy of the 64 bit CF 10 so I can install the developer version on my laptop. Is there any way to get one? I have a copy of the 32 bit installer on my current laptop, but I don't really want to install that version.

    Not from the Adobe downloads site.  For some undisclosed reason (probably related to a 3rd party license), they installers had to be removed from the downloads site around the time CF 11 was released. If you had a Standard or Enterprise license, you might be able to get it from the Adobe volume licensing, but I'm not sure if that's true anymore.
    There is a community-supported repository of ColdFusion installers that Gavin Picken maintains here: http://tinyurl.com/cfdownloads.  Unfortunately, it is offline at the moment but hopefully will be back soon.
    -Carl V.

  • Installing 64-bit ColdFusion with 32-bit Apache web server on Windows Server 2008 64-bit

    This is related to another discussion that had a solution of using an unofficial 64-bit Apache, which is not permitted in my situation.  The discussion is here: http://forums.adobe.com/message/3580001. 
    I’m having trouble running the Apache and ColdFusion services after connecting the two with wsconfig.  I’ve tried replacing the 64-bit mod_jrun22.so with the 32-bit equivalent and the Apache service will then start, but the ColdFusion services error when loading the jvm.dll.
    Anyone familiar with this?
    Apache Web Server 2.2.22
    ColdFusion 9
    Thanks.

    Looking into the same issue myself. Can you elaborate on this? Which version of the JVM did you upgrade to and did you configure it in the CF Admin to use that jvm?
    Using the web connector, I get an error message that the mod_jrun22.so is not a valid win32 application.
    Thanks

  • Flash player shows "Movie not loaded" on Firefox 7; would 32 bit version or mode solve?

    Flash Player 11.0.1.152 is loaded on my machine. Firefox 7.0.1 is my browser. Running Windows 7 Home Premium. Flash content which worked before now does not. When I visit Flash enabled sites, the display area for the Flash content remains blank. When I right click in the display are, I get the "Movie not loaded" message. I have seen suggestions that the current Flash version does not work in 64 bit browsers. Is a 32 bit version of Firefox 7 available or is there a way to run it in 32 bit mode? Does it sound likely that this would resolve the issue?

    This computer has two different versions of Flash Player for Internet Explorer and two different versions of Flash Player for other browsers.
    A clean install is recommended: 
    Windows
    Download the current 32 bit uninstaller    Uninstaller for 32 bit Operating Systems
    Close all browser windows and run the uninstaller 
    Restart Windows 
    Delete all remaining files and folders located in the following directories. (tip: copy and paste these paths into the path bar in an Explorer window) 
    C:\Windows\System32\Macromed\Flas 
    %appdata%\Adobe\Flash Player 
    %appdata%\Macromedia\Flash Player
    Verify that the file “FlashPlayerCPLApp.cpl” in C:\Window\system32\ for 32 bit systems has been deleted.
    Download the following installer files:
    32 bit Flash Player for ActiveX (Internet Explorer)
    32 bit Flash Player Plug-in (All other browsers)
    Physically disconnect from the Internet and run the installers.

  • OVD adapter in distributed mode fails to connect to secondary AD

    We have 2 AD domain controllers configured on the OVD adapter in distributed (load-balancing mode). The secondary LDAP server fails on a user bind request but the primary is fine. If we remove the primary we get very few, if any, connections. Any known issues with 10g and AD in fail over mode?
    Thanks

    Hi everyone, I got it finally after some more headbashing! It turns out I can't run networkmanager along with wpa_supplicant at the same time. I don't understand why though.
    Before I happened to install networkmanager along with network-manager-applet via pacman.
    # pacman -S network-manager-applet
    # pacman -S networkmanager
    # systemctl enable NetworkManager
    # systemctl start NetworkManager
    So I just stopped it
    # systemctl disable NetworkManager
    # systemctl stop NetworkManager
    and then uninstalled it
    # pacman -R networkmanager
    # pacman -R network-manager-applet
    Then wpa_supplicant works! Thanks.

Maybe you are looking for