November 20, 2017
How to install ColdFusion updates manually
Comments
(3)
November 20, 2017
How to install ColdFusion updates manually
Staff 11 posts
Followers: 3 people
(3)

Sometimes, CF administrator UI update installation could fail due to permissions, lockdown guide, network restrictions etc.

You can follow below instructions to apply updates manually.

  1. Navigate to https://www.adobe.com/go/coldfusion-updates (use Google chrome to view xml in the browser)
  1. Look for required update under <cfhf_downloadlink> tag. It would be listed as https://cfdownload.adobe.com/pub/adobe/coldfusion/20XX/updates/hotfix-00X-XXXXX.jar
  1. Download the hotfix-0XX-XXXXX.jar and place it under ColdFusion20XX/jre/bin
  1. Open the command prompt as administrator and navigate to ColdFusion20XX/jre/bin
  1. Run the below command:

          Java -jar hotfix-0XX-XXXXX.jar

  1. Follow the onscreen instructions to apply the update.
3 Comments
2017-12-02 18:42:27
2017-12-02 18:42:27

Something people should beware about this: I find that often when running the command-line update installer, it will start CF as a process based on the user who is logged in and running the updater, rather than running it as a service (under which that service may be defined to run as the system account on Windows, root on Linux, or perhaps some other user).

If you do run the update manually, you may want to check and see if there is a service running CF before you proceed, and if so, make sure that it’s running it after the update. If it is not, you should probably terminate the CF process that the updater has started, and then start it as a service as it had been running before.

I have a blog post where I discuss this and other things about some common challenges in applying update (including the importance of checking the update log, to confirm there are no errors, whether you have applied the udpate automatically or manually as above). See http://www.carehart.org/blog/client/index.cfm/2016/9/6/solve_common_problems_with_CF_updates_in_10_and_above

There are still other resources with information about applying CF updates. See another blog post I did recently, here in the portal:
https://coldfusion.adobe.com/2017/10/finding-more-about-applying-coldfusion-updates/

Like
2017-11-30 14:46:51
2017-11-30 14:46:51

Good to have this guide as i hunt it down after every update. I have one server that updates fine through the link in the administrator and another server that never works and I always have to do manually. I’ve traced it down to a permission issue that I just can’t get around on that one server for some reason so always do the manual install there.

I’d also recommend this page by Charlie Arehart page if someone is having issues with updates: http://www.carehart.org/blog/client/index.cfm/2016/9/6/solve_common_problems_with_CF_updates_in_10_and_above

Like
(1)
>
Grae Desmond
's comment
2019-03-05 20:18:52
2019-03-05 20:18:52
>
Grae Desmond
's comment

Thanks for recommending that, Grae. I see that somehow I wrote my previous comment after yours, but didn’t notice you had pointed out my post already. (I wonder if back then perhaps your comment was being moderated so I hadn’t seen it when I wrote mine.)

Anyway, I would add another point for folks finding this post: if you find that the java command (shown in the post) doesn’t work, I address how to resolve that also in my blog post (along with other challenges one may have in doing updates).

Like
Add Comment