国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

這篇具有很好參考價值的文章主要介紹了Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)。希望對大家有所幫助。如果存在錯誤或未考慮完全的地方,請大家不吝賜教,您也可以點擊"舉報違法"按鈕提交疑問。

本文演示Sitecore XP Single(XP0)在Azure上的一鍵部署,即“30分鐘生成Sitecore演示環(huán)境”的一環(huán)。

關于XP(即Sitecore Experience Platform) roles的相關介紹移步

XP Single配置主要用來開發(fā)和測試:

Four Sitecore roles: Content Delivery, Content Management, Processing, and Reporting as a single WebApp instance.(cd,cm,Processing,Reporting作為一個web應用實例)

All XP roles: Search, Collection, Reference Data, Sitecore Cortex Processing, Sitecore Cortex Reporting, Marketing Automation, and Marketing Automation Reporting as a single WebApp instance.(其它所有功能作為一個應用實例)

Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

?本文使用的Sitecore版本為:Sitecore Experience Platform 10.1 Update-2

為什么使用這個版本?主要考慮使用Azure PaaS的全部功能,無需額外配置。如果使用Sitecore 10.2+以上,則需要額外搭建Solr服務,參照 Azure Search compatibility table

即使用8.2-10.1版本,是可以使用Azure Search代替Solr服務的。這里方便利用Azure云資源直接一鍵配置,無需做額外的動作。故使用Sitecore 10.1-Update-2來演示。

本地操作系統(tǒng)為Windows11專業(yè)版。

準備工作

1,Azure Portal賬號一個,沒有的話可以使用國際信用卡注冊;

2,本地PowerShell ISE安裝Azure模塊;

3,Microsoft Azure Storage Explorer

4,Sitecore license文件

?文章來源地址http://www.zghlxwxcb.cn/news/detail-424670.html

下載

1,下載?Sitecore Experience Platform 10.1 Update-2

? ? ?打開下載頁定位到?Download options for Azure AppService

Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

? ? ? 下載 Packages for XP Single ,即XP0。解壓得到3個壓縮包:

? ? ??Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

?2,下載?Sitecore Identity

? ? ? ?選擇?Sitecore Identity 7.0.326? ,

? ? ?Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

? ? ??下載WDP installation package. 解壓得到1個壓縮包:

? ? ??Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

? ? ? 打開Microsoft Azure Storage Explorer,上傳上面4個壓縮包到Azure Blob

? ? ??Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

? ? ??Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

? ? ? 上傳完畢后,分別點擊每一個資源,鼠標右鍵,獲取共享訪問簽名 -- 讀?。嘞蓿?-- 創(chuàng)建 -- 復制資源的URL備用,上面4個資源都要復制。

?3,下載Sitecore Azure Toolkit ,選擇?Sitecore Azure Toolkit 2.8.0

? ? Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

? ? ? 下載后解壓得到:

? ? ? ?Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

?4,下載Sitecore Azure Resource Manager (ARM) template,解壓后得到:

? ? ? ?Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

?

生成authentication certificate

以管理員身份運行Windows PowerShell ISE,輸入以下代碼并運行:

#Create a self-signed certificate.

$thumbprint = (New-SelfSignedCertificate `
-Subject "CN=$env:COMPUTERNAME @ Sitecore, Inc." `
-Type SSLServerAuthentication `
-FriendlyName "$env:USERNAME Certificate").Thumbprint
 
$certificateFilePath = "D:\Workspace\$thumbprint.pfx"
Export-PfxCertificate `
-cert cert:\LocalMachine\MY\$thumbprint `
-FilePath "$certificateFilePath" `
-Password (Read-Host -Prompt "Enter password that would protect the certificate" -AsSecureString)

?

編輯azuredeploy.parameters.json

編輯ARM template中的azuredeploy.parameters.json文件

Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

如上圖所示,黃色框部分先留空即可。 其它key說明如下:

Key Description
location 云資源所在的地理位置,比如填:East Asia,代表東亞
sitecoreAdminPassword Sitecore Admin賬戶的密碼
sqlServerLogin
云生成SQL數(shù)據(jù)庫后的SQL賬號
sqlServerPassword
云生成SQL數(shù)據(jù)庫后的SQL密碼
siMsDeployPackageUrl
下載章節(jié)中的IdentityServer的完整URL
singleMsDeployPackageUrl
下載章節(jié)中的single.scwdp完整URL
xcSingleMsDeployPackageUrl
下載章節(jié)中的xp0xconnect.scwdp.zip完整URL
authCertificatePassword
生成authentication certificate章節(jié)中輸入的密碼
注意在最后加上:
    "allowInvalidClientCertificates": {
      "value": true
    }

?

執(zhí)行腳本

以管理員身份打開Windows PowerShell ISE,

沒有安裝Azure模塊的先安裝Azure模塊,移步Install Azure PowerShell on Windows

腳本代碼:

#Azure一鍵部署Sitecore xp0(xp single)開發(fā)/測試/演示環(huán)境
$SCSDK="D:\Workspace\Sitecore Azure Toolkit 2.8.0-r02542.1366\tools"
$SCTemplates="https://raw.githubusercontent.com/Sitecore/Sitecore-Azure-Quickstart-Templates/master/Sitecore%2010.1.1/XPSingle"
$DeploymentId = "demo-sitecore1011"
$ResourceGroup = "demo-sitecore1011"
$LicenseFile = "你的本地license文件路徑"
$CertificateFile = "D:\Workspace\93F2CA3845DB2577A005BCA0CEE48B8951694F1F.pfx(生成authentication certificate章節(jié)生成的文件)"
$SubscriptionId = "Azure訂閱ID(SubscriptionID)"
$Location="East Asia"
$ParamFile="D:\Workspace\Sitecore-Azure-Quickstart-Templates-2.13.0\Sitecore 10.1.1\XPSingle\azuredeploy.parameters.json"
$Parameters = @{
"deploymentId"=$DeploymentId;
"authCertificateBlob" = [System.Convert]::ToBase64String([System.IO.File]::ReadAllBytes($CertificateFile))
}
Import-Module $SCSDK\Sitecore.Cloud.Cmdlets.psm1
Connect-AzAccount
Set-AzContext -SubscriptionId $SubscriptionId
Start-SitecoreAzureDeployment -Name $ResourceGroup -Location $Location -ArmTemplateUrl "$SCTemplates/azuredeploy.json" -ArmParametersPath $ParamFile -LicenseXmlPath $LicenseFile -SetKeyValue $Parameters -Verbose

直接執(zhí)行,執(zhí)行后的輸出信息如下:

Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

執(zhí)行完畢大概需要35分鐘左右:

Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

?執(zhí)行完畢后打開Azure資源頁面:

Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

找到demo-sitecore1011-single APP Service(Azure APP Service)?

Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

?單擊 默認域 的鏈接

Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

?打開了Sitecore歡迎頁,即表明成功!

Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

?在此鏈接后輸入 /sitecore 進入管理后臺:

用戶名輸入admin

密碼輸入azuredeploy.parameters.json文件中

sitecoreAdminPassword設置的密碼,比如這里是:Password12345

Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

進入管理后臺,驗證Sitecore版本為:?

Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)

?

到了這里,關于Sitecore10 Demo演示環(huán)境Azure一鍵部署(Step By Step Guide to installing Sitecore10 in Azure Paas)的文章就介紹完了。如果您還想了解更多內容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。如若轉載,請注明出處: 如若內容造成侵權/違法違規(guī)/事實不符,請點擊違法舉報進行投訴反饋,一經(jīng)查實,立即刪除!

領支付寶紅包贊助服務器費用

相關文章

  • 「Unity入門」Step by Step的太空清理垃圾游戲Part 3:飛船移動與UI

    「Unity入門」Step by Step的太空清理垃圾游戲Part 3:飛船移動與UI

    完成基礎的太空場景后,我們就可以來實現(xiàn)一些可交互的操作了。在這個游戲中主要可交互的操作有控制飛船飛行方向和點按垃圾收集。在游戲開始后,飛船會以恒定的速度向前方移動,用戶則可以搖桿來控制飛船左右、上下轉動。通過除此之外,還有切換前后鏡頭、加速等

    2024年02月01日
    瀏覽(22)
  • 「Unity入門」Step by step的太空清理垃圾游戲Part 5: 碰撞探測與模擬測試

    「Unity入門」Step by step的太空清理垃圾游戲Part 5: 碰撞探測與模擬測試

    書接上回,完成了后視鏡頭中點擊收集垃圾的操作。但是,在Unity編輯器中無法測試真正的效果。因為用鼠標點擊和觸碰屏幕Touch是兩個不同的input類型。同樣的,VR/AR環(huán)境中的某些input也無法直接在編輯器中測試,或者說會有不同的測試效果。因此,需要通過相應的外置工具來

    2024年01月16日
    瀏覽(28)
  • 「Unity入門」Step by step的太空清理垃圾游戲Part 6-2:初始化菜單界面

    「Unity入門」Step by step的太空清理垃圾游戲Part 6-2:初始化菜單界面

    對用戶界面來說,一般我們進入游戲并不是直接開始的,一般會有“登錄”、”設置“,甚至”關卡選擇“等操作。本次我們也將建造一個游戲的初始化和結束界面。 不論是簡單 or 復雜的游戲,打開它的第一個界面大多數(shù)都是開始菜單。作為對一個游戲的“第一印象”,吸

    2024年02月20日
    瀏覽(20)
  • 微信小程序通知,微信小程序長期訂閱消息添加硬件設備能力的設備訂閱消息step-by-step

    微信小程序通知,微信小程序長期訂閱消息添加硬件設備能力的設備訂閱消息step-by-step

    本文目的,分享一個實際案例: 開發(fā)微信小程序的報警器的微信訂閱消息, 設備報警后觸發(fā)微信報警 前提: 有一個微信小程序并且微信認證過。 1: 添加設備申請權限 2:按照實際情況填寫設備信息, 一般等兩天到三天能審核過 ?3: 申請設備消息能力 , 這個一部不做的

    2024年04月16日
    瀏覽(27)
  • 數(shù)字邏輯Fundamentals of Digital Logic with Verilog Design | 3rd Edition Solutins Chapter 4(step by step)

    數(shù)字邏輯Fundamentals of Digital Logic with Verilog Design | 3rd Edition Solutins Chapter 4(step by step)

    第四章 重要內容:1、多路選擇器? 2、采用香農(nóng)展開的多路選擇器綜合?3、譯碼器? 4、多路分配器? 5、優(yōu)先級編碼器? 6、代碼轉換器? 7、算數(shù)比較電路? 8、Verilog語法 糾錯:4-11香農(nóng)展開式最后結果應該是同或門。 Chapter 4 Chapter 4, Problem 1P Chapter 4, Problem 2P Chapter 4, Problem 3P

    2024年02月05日
    瀏覽(22)
  • docker compose一鍵部署lnmt環(huán)境

    docker compose一鍵部署lnmt環(huán)境

    創(chuàng)建docker compose 目錄 [root@localhost ~]# ?mkdir -p /compose_lnmt 編寫nginx的dockerfile文件 創(chuàng)建目錄 [root@localhost compose_lnmt]# mkdir -p nginx [root@localhost nginx]# vim nginx.conf ? [root@localhost nginx]# vim Dockerfile 創(chuàng)建數(shù)據(jù)存放目錄 [root@localhost compose_lnmt]# mkdir -p /var/www/html/ [root@localhost compose_lnmt]# mkdir

    2024年02月14日
    瀏覽(23)
  • Docker環(huán)境一鍵部署若依微服務版

    Docker環(huán)境一鍵部署若依微服務版

    若依管理系統(tǒng)是基于SpringBoot的權限管理系統(tǒng),可以用它作為基礎構建自己的后臺管理系統(tǒng)。這個項目在 Gitee 上有1.8 萬個 star。 它有3 個版本,分別是單體版、前后端分離版、微服務版。這次是使用 docker部署他的微服務版本。 微服務版項目源代碼包括 docker 部署的相關代碼,

    2024年02月06日
    瀏覽(20)
  • onlyoffice基礎環(huán)境搭建+部署+demo可直接運行 最簡單的入門

    onlyoffice基礎環(huán)境搭建+部署+demo可直接運行 最簡單的入門

    office這個體系分為四個大教程 ????????1、【document server文檔服務器基礎搭建】 ????????2、【連接器(connector)或者jsApi調用操作office】-進階 ????????3、【document builder文檔構造器使用】-進階 ????????4、【Conversion API(文檔轉化服務)】-進階 ????????? 如果需要

    2024年02月22日
    瀏覽(18)
  • 華為Atlas200DK的環(huán)境部署與運行demo(人臉識別)

    華為Atlas200DK的環(huán)境部署與運行demo(人臉識別)

    Atlas 200 DK 開發(fā)者套件(型號 3000)是以Atlas 200 AI加速模塊(型號 3000)為核心的開發(fā)者板形態(tài)的終端類產(chǎn)品。主要功能是將Atlas 200 AI加速模塊(型號 3000)的接口對外開放,方便用戶快速簡捷的使用Atlas 200 AI加速模塊(型號 3000),可以運用于平安城市、無人機、機器人、視頻

    2024年02月05日
    瀏覽(33)
  • 如何將應用一鍵部署至多個環(huán)境?丨Walrus教程

    如何將應用一鍵部署至多個環(huán)境?丨Walrus教程

    在 Walrus 平臺上,運維團隊在資源定義(Resource Definition)中聲明提供的資源類型,通過設置匹配規(guī)則,將不同的資源部署模板應用到不同類型的環(huán)境、項目等。與此同時,研發(fā)人員無需關注底層具體實現(xiàn)方式,通過創(chuàng)建 Resource 對象聲明需要使用的資源類型及基本信息,就可以

    2024年03月09日
    瀏覽(17)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領取紅包,優(yōu)惠每天領

二維碼1

領取紅包

二維碼2

領紅包