篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 脚本启动SDL Web 8.5微服务相关的知识,希望对你有一定的参考价值。
# This script can be used to manually start Tridion Sites micro-services
#
# On some all-in-one Tridion machines I use this script as a scheduled task to have a
# delayed start of the CD micro-services. The transcript creates a log file.
Start-Transcript -Path (Join-Path $PSScriptRoot "start-CD-services.log") -Append
Start-Service SDLWeb*DiscoveryService -Verbose
Start-Service SDLWeb*DeployerService -Verbose
Start-Service SDLWeb*ContentService -Verbose
Start-Service SDLWeb*ContextService -Verbose
Start-Service SDLWeb*PreviewService -Verbose
Start-Service SDLWeb* -Verbose
Start-Service SDLDXA* -Verbose
Stop-Transcript
以上是关于powershell 脚本启动SDL Web 8.5微服务的主要内容,如果未能解决你的问题,请参考以下文章