This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已经过机器动态翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
이 콘텐츠는 동적으로 기계 번역되었습니다. 책임 부인
Este texto foi traduzido automaticamente. (Aviso legal)
Questo contenuto è stato tradotto dinamicamente con traduzione automatica.(Esclusione di responsabilità))
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.책임 부인
Este artigo foi traduzido automaticamente.(Aviso legal)
这篇文章已经过机器翻译.放弃
Questo articolo è stato tradotto automaticamente.(Esclusione di responsabilità))
Translation failed!
XenServer® カタログを作成する
「マシンカタログの作成」(/ja-jp/citrix-virtual-apps-desktops/2402-ltsr/install-configure/machine-catalogs-create.html)では、マシンカタログを作成するウィザードについて説明します。以下の情報は、XenServer仮想化環境に固有の詳細を扱っています。
注:
XenServerカタログを作成する前に、XenServerへの接続の作成を完了する必要があります。「XenServerへの接続」(/ja-jp/citrix-virtual-apps-desktops/2402-ltsr/install-configure/connections/connection-citrix-hypervisor.html)を参照してください。
XenServer接続を使用してマシンカタログを作成する
GPU対応マシンには、専用のマスターイメージが必要です。これらのVMには、GPUをサポートするビデオカードドライバーが必要です。GPU対応マシンを構成して、VMがGPUを操作に使用するソフトウェアで動作できるようにします。
- XenCenter®で、標準VGA、ネットワーク、およびvCPUを備えたVMを作成します。
- VM構成を更新してGPUの使用を有効にします(パススルーまたはvGPUのいずれか)。
- サポートされているオペレーティングシステムをインストールし、RDPを有効にします。
- Citrix VM ToolsとNVIDIAドライバーをインストールします。
- Virtual Network Computing (VNC) 管理コンソールをクリアしてパフォーマンスを最適化し、VMを再起動します。
- RDPを使用するように求められます。RDPを使用してVDAをインストールし、VMを再起動します。
- オプションで、他のGPUマスターイメージのベースラインテンプレートとしてVMのスナップショットを作成します。
- RDPを使用して、XenCenterで構成され、GPU機能を使用する顧客固有のアプリケーションをインストールします。
制限事項
- Citrix Hypervisor 8.2でホストされているVMを持つCitrix Virtual Apps and Desktops展開が、単一のMCSカタログで複数のGFS2 SRを使用している場合、カタログ内のVMは展開中にVDIにアクセスできません。「VDI is currently in use」というエラーが報告されます。
- XenServerは、GFS2 SRを使用したMCSフルクローンVMをサポートしていません。
詳細については、「Constraints」を参照してください。
マシンプロファイルを使用してマシンカタログを作成する
MCSを使用してマシンをプロビジョニングするためのカタログを作成するときに、マシンプロファイルを使用して仮想マシンからハードウェアプロパティをキャプチャし、それらをカタログ内の新しくプロビジョニングされたVMに適用できます。MachineProfileパラメーターが使用されていない場合、ハードウェアプロパティはマスターイメージVMまたはスナップショットからキャプチャされます。
注:
現在、マシンプロファイルの入力としてVMのみを使用できます。
マシンプロファイル入力のパラメーターの値を上書きするために、次のパラメーターを明示的に構成できます。
VMCpuCountVMMemoryNetworkMapping
マシンプロファイルを使用してカタログを作成するには:
- PowerShellウィンドウを開きます。
-
asnp citrix*を実行します。 -
IDプールを作成します。IDプールは、作成されるVMのActive Directory(AD)アカウントのコンテナです。例:
New-AcctIdentityPool -Domain "citrix-xxxxxx.local" -IdentityPoolName "ExampleIdentityPool" -NamingScheme "abc1-##" -NamingSchemeType "Numeric" -Scope @() -ZoneUid "xxxxxxxx" <!--NeedCopy--> -
Active Directory で必要な AD コンピューターアカウントを作成します。
$password = "password123" | ConvertTo-SecureString -AsPlainText -Force New-AcctADAccount -IdentityPoolName "ExampleIdentityPool" -Count 10 -ADUserName "citrix-xxxxxx\admin1" -ADPassword $password Set-AcctAdAccountUserCert -IdentityPoolName "ExampleIdentityPool" -ADUserName "citrix-xxxxxx\admin1" -ADPassword $password <!--NeedCopy--> -
カタログを作成するには、
New-ProvSchemeコマンドを実行します。例:New-ProvScheme -CleanOnBoot -HostingUnitName "ExampleHostingUnit" -IdentityPoolName "ExampleIdentityPool" -InitialBatchSizeHint 2 -CustomProperties '<CustomProperties xmlns="http://schemas.citrix.com/2014/xd/machinecreation" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Property xsi:type="StringProperty" Name="UseManagedDisks" Value="true" /> </CustomProperties>' -MasterImageVM "XDHyp:\HostingUnits\ExampleHostingUnit\ExampleVDA.vm\ExampleVDA.snapshot" -ProvisioningSchemeName "ExampleCatalog" -Scope @() -SecurityGroup @() -MachineProfile "XDHyp:\HostingUnits\ExampleHostingUnit\ExampleMachineProfile.vm" <!--NeedCopy--> -
プロビジョニングスキームをブローカーカタログとして登録します。例:
$ConfigZone = Get-ConfigZone | Where-Object { $_.Name -eq "xxxxxx" } New-BrokerCatalog -Name "MPLT1" -AllocationType Random -Description "Machine profile catalog" -ProvisioningSchemeId fe7df345-244e-4xxxx-xxxxxxxxx -ProvisioningType Mcs -SessionSupport MultiSession -PersistUserChanges Discard -ZoneUid ($ConfigZone.Uid) <!--NeedCopy--> - カタログに VM を追加します。
新しいマシンプロファイルでカタログを更新するには:
-
Set-ProvSchemeコマンドを実行します。例:Set-ProvScheme -ProvisioningSchemeName "ExampleCatalog" -MachineProfile "XDHyp:\HostingUnits\ExampleHostingUnit\ExampleMachineProfileVm.vm\ExampleMachineProfileSnapshot.snapshot" <!--NeedCopy-->Set-ProvScheme コマンドの詳細については、「Set-ProvScheme」を参照してください。
注:
- この場合、
Set-ProvSchemeコマンドはカタログ内の既存の VM のマシンプロファイルを変更しません。カタログに追加された新しく作成された VM のみが新しいマシンプロファイルを持ちます。- マシンプロファイルベースのマシンカタログを、非マシンプロファイルベースのマシンカタログに変換することはできません。
次のステップ
- これが最初に作成されたカタログである場合、Web Studio はデリバリーグループの作成をガイドします。
- 構成プロセス全体を確認するには、「インストールと構成」を参照してください。
- カタログを管理するには、「マシンカタログの管理」および「XenServer カタログの管理」を参照してください。
詳細情報
- 接続とリソースの作成および管理(/ja-jp/citrix-virtual-apps-desktops/2402-ltsr/install-configure/connections.html)
- ゼノサーバーへの接続
- マシンカタログの作成(/ja-jp/citrix-virtual-apps-desktops/2402-ltsr/install-configure/machine-catalogs-create.html)
共有
共有
This Preview product documentation is Citrix Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Citrix Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Citrix product purchase decisions.
If you do not agree, select I DO NOT AGREE to exit.