The Azure Quickstart templates are currently available in English
Create MATLAB Distributed Computing Server™ cluster
Ezt az Azure Resource Manager-sablont (ARM-sablont) nem a Microsoft, hanem a közösség egyik tagja készítette. Az egyes ARM-sablonok nem a Microsofttól, hanem a sablon tulajdonosától licencelhetők licencszerződés keretében. A Microsoft semmilyen felelősséget nem vállalal a közösség tagjai által biztosított és licencbe adott ARM-sablonokért, és azokat a biztonság, kompatibilitás és teljesítmény szempontjából nem ellenőrzi. A közösségi ARM-sablonokat a Microsoft semmilyen terméktámogatási programja vagy szolgáltatása nem támogatja, és ezek „adott állapotukban” állnak rendelkezésre, mindennemű garancia nélkül.
Paraméterek
Paraméter neve | Leírás |
---|---|
dnsLabelPrefix | DNS Label where the client node will be exposed. Must be lowercase. It should match with the following regular expression: ^[a-z][a-z0-9-]{1,61}[a-z0-9]$ or it will raise an error. |
adminUsername | User name for all Virtual Machine in the cluster. Pick a valid username otherwise there will be a BadRequest error. |
adminPassword | Admin password. Pick a complex password with uppercase letters, lowercase letters, digits, and symbols. The password should not be longer than 16. Otherwise you'll get a BadRequest error. |
vmSizeClient | Size of the Matlab client nodes. |
vmSizeMJS | Size of the MJS node. |
vmSizeWorker | Size of the worker nodes. |
numWorkerVms | Number of VMs to create that run the workers. Client and MJS VM don't count into this number. |
numWorkerOnMJS | Number of workers running on the master MJS VM. Zero is the default and recommended. -1 means auto detecting based on cpu cores. |
numWorkersWorker | Number of workers running on each worker VM. -1 will create one worker per core. |
imageUri | The URL to the disk image in blob that will be used to create all VMs |
vhdContainer | This is the container URL that will hold all VHDs for the VMs |
location | Location for all resources. |
A sablon használata
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentAz Azure PowerShell telepítése és konfigurálása
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/matlab-cluster/azuredeploy.json
Parancssor
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentAz Azure többplatformos parancssori felületének telepítése és beállítása
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/matlab-cluster/azuredeploy.json