简体   繁体   中英

Update Umbraco to the latest version on Azure App Service

A client of mine would like to use Umbraco. Just because we always use Azure, we decided to use the following ARM template (and, for example, not move on Umbraco Cloud). My questions are:

  • how the updates are managed?
  • what appens if a major/minor is released? Is the CMSautomatically updated?
  • In the following image, taken from the Umbraco App Service on Azure Portal, you can see there is the Deployment Center . What is it?
  • When a new version of Umbraco is released, can I press the " Sync " button to update it to the last version?

thanks

在此处输入图片说明

Be careful with the sync button, it do a KuduSync.NET with the repo, the Web.config will be overwritten and some other files, Your Umbraco database connection string is lost and Umbraco comes in the install mode.

KuduSync.NET is a Tool for syncing files for deployment, will only copy changed files and delete files that doesn't exists in the destination but only if they were part of the previous deployment (manifest file).

So for example your upload media files will not be destroyed.

For upgrading see the Umbraco Upgrades in general first read if there are special instructions for your version. and make a backup!.

For the web.config file in the root of your site:

Important : make sure to copy back the version number, and the connection string as they were.

Than Umbraco knows how to upgrade. The installer will guide you through the upgrade. when your hit the site and the version number in the web.config is not equal. If your using SQL CE be really careful with the App_Data/Umbraco.sdf

So on a minor upgrade you can try it with the sync button. But it is not the official path. (first create a backup) and direct after sync, restore the version and connection string in the web.config.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM