首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >在Service Fabric VM上安装Microsoft Anti-Malware或Symmantec终结点保护

在Service Fabric VM上安装Microsoft Anti-Malware或Symmantec终结点保护
EN

Stack Overflow用户
提问于 2016-07-22 21:59:39
回答 1查看 316关注 0票数 0

任何人在Service Fabric VM上安装了Microsoft恶意软件防护或Symmantec End Point Protection。Azure安全中心表示这是可能的,但我一直无法使其正常工作。

当您创建集群时,没有添加恶意软件防护的扩展选项(我可以找到)。创建集群后,当您RDP到服务器时,PowerShell Get-AzureRmVm找不到使用PowerShell安装反恶意软件的ServiceName。(我可以让这两个选项都在独立的虚拟机上工作)

我在想,我错过了一些非常简单的东西,但我没有看到它。

EN

回答 1

Stack Overflow用户

发布于 2018-03-28 06:51:13

通常,这是VM级别的配置,因此通常通过已经设置好的自定义VM镜像或通过VM扩展来管理。有关于在集群here中设置反恶意软件的指导。

代码语言:javascript
运行
复制
# Script to add Microsoft Antimalware extension to VM Scale Set(VMSS) and Service Fabric Cluster(in turn it used VMSS)
# Login to your Azure Resource Manager Account and select the Subscription to use
Login-AzureRmAccount
# Specify your subscription ID
#$subscriptionId="SUBSCRIPTION ID HERE"
Select-AzureRmSubscription -SubscriptionId $subscriptionId
# Specify location, resource group, and VM Scaleset for the extension
#$location = "LOCATION HERE" # eg., “West US or Southeast Asia” or “Central US”
#$resourceGroupName = "RESOURCE GROUP NAME HERE"
#$vmScaleSetName = "YOUR VM SCALE SET NAME"
# Configuration.JSON configuration file can be customized as per MSDN documentation: https://msdn.microsoft.com/en-us/library/dn771716.aspx
#$settingString = ‘{"AntimalwareEnabled": true}’;
# retrieve the most recent version number of the extension
$allVersions= (Get-AzureRmVMExtensionImage -Location $location -PublisherName “Microsoft.Azure.Security” -Type “IaaSAntimalware”).Version
$versionString = $allVersions[($allVersions.count)-1].Split(“.”)[0] + “.” + $allVersions[($allVersions.count)-1].Split(“.”)[1]
$VMSS = Get-AzureRmVmss -ResourceGroupName $resourceGroupName -VMScaleSetName $vmScaleSetName
Add-AzureRmVmssExtension -VirtualMachineScaleSet $VMSS -Name “IaaSAntimalware” -Publisher “Microsoft.Azure.Security” -Type “IaaSAntimalware” -TypeHandlerVersion $versionString
Update-AzureRmVmss -ResourceGroupName $resourceGroupName -Name $vmScaleSetName -VirtualMachineScaleSet $VMSS

Service Fabric团队确实有关于how to configure your environment的指导,其中包括有关您想要添加的排除项的信息。其中包括:

代码语言:javascript
运行
复制
Antivirus Excluded directories
Program Files\Microsoft Service Fabric
FabricDataRoot (from cluster configuration)
FabricLogRoot (from cluster configuration)

Antivirus Excluded processes
Fabric.exe
FabricHost.exe
FabricInstallerService.exe
FabricSetup.exe
FabricDeployer.exe
ImageBuilder.exe
FabricGateway.exe
FabricDCA.exe
FabricFAS.exe
FabricUOS.exe
FabricRM.exe
FileStoreService.exe
票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/38528372

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档