-
-
Create and manage connections and resources
-
Connection to Microsoft System Center Virtual Machine Manager
-
Connection to Oracle C3
-
Cloud Connector Standalone Citrix Secure Ticketing Authority (STA) service
-
-
-
-
-
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!
Connection to Oracle C3 (Preview)
The Create and manage connections and resources article describes the generic connection workflow. The following information covers Oracle C3-specific details.
Note:
Before creating a connection to Oracle C3, finish setting up your Oracle C3 environment. See Oracle C3 virtualization environments.
Create a connection
You can create a connection to Oracle C3 using:
- Web Studio
- PowerShell commands
Create a connection using Web Studio
- In Add Connection and Resources, select Oracle C3 as the connection type.
- Under Oracle Compute Cloud@Customer configuration, select Import configuration, and paste the Oracle C3 configuration file (
.ini) content. - Under Private key, select Add key, and paste the private key content from the credential file (
.pem). - Enter a friendly Connection name.
- Continue with the wizard and validate connectivity.
Note:
Service account ID is extracted from the imported configuration and cannot be edited directly in Web Studio. The Oracle C3 endpoint is also derived from the
regionvalue in the imported configuration and can’t be entered manually in this flow. Enterregionin Oracle C3 format as<service_name>.<domain_name>(FQDN-style value).
When you import configuration in Web Studio, the following keys are only imported. All other keys are ignored:
userfingerprinttenancyregion
Connection setup can stop in the following certificate scenarios:
- Certificate validation or thumbprint verification fails: connection creation is blocked until the issue is resolved.
Create a connection using PowerShell commands
When creating a connection using PowerShell, provide:
- Oracle C3 endpoint address, typically
https://iaas.<service_name>.<domain_name>. - Oracle C3 user OCID from the configuration file (
user). - Private key content from the credential file (
.pem), passed as a secure string. -
CustomPropertiesXML containingTenancyOcid,Fingerprint, andRegion. - SSL thumbprint for certificate trust validation, when required.
Example pattern:
$CustomProperties = '<CustomProperties xmlns="http://schemas.citrix.com/2014/xd/machinecreation" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">' +
'<Property xsi:type="StringProperty" Name="TenancyOcid" Value="' + $TenancyOcid + '" />' +
'<Property xsi:type="StringProperty" Name="Fingerprint" Value="' + $Fingerprint + '" />' +
'<Property xsi:type="StringProperty" Name="Region" Value="' + $Region + '" />' +
'</CustomProperties>'
$PrivateKey = ConvertTo-SecureString $PrivateKeyContent -AsPlainText -Force
New-Item -ConnectionType "Custom" `
-HypervisorAddress $Endpoint `
-Path @("XDHyp:\Connections\$ConnectionName") `
-Persist `
-PluginId "OracleC3PluginFactory" `
-CustomProperties $CustomProperties `
-SecurePassword $PrivateKey `
-UserName $UserOcid `
-SslThumbprint $SslThumbprint
<!--NeedCopy-->
Note:
Set
$Regionto the Oracle C3 region value in<service_name>.<domain_name>format. Use-SslThumbprintwhen required by your certificate trust policy.
Certificate and thumbprint validation
For a successful Oracle C3 connection, certificate validation must succeed and thumbprint values must be correct where required.
Manage connections
This section covers:
- Fix certificate issues using Web Studio
- Update thumbprint values using PowerShell
Fix certificate issues
When certificate issues occur, Citrix blocks the Oracle C3 connection to protect workload operations. An error icon appears next to the connection in the Host connections list.
To fix:
- Open the connection from Host connections.
- View Troubleshoot details and identify the certificate problem.
- Select Edit Connection > Edit settings.
- For Oracle C3, re-import the configuration and private key if prompted. When both are available, save changes to trigger a new round of certificate validation, as during connection creation, and validate/trust the updated certificate thumbprint when presented.
Update thumbprint values
You can update thumbprint values after creation by using Set-Item.
-
Get connection details.
Get-Item -LiteralPath xdhyp:\connections\<OracleC3ConnectionName> <!--NeedCopy--> -
Update thumbprint value.
Set-Item -LiteralPath xdhyp:\connections\<OracleC3ConnectionName> ` -Username <UserName> ` -SslThumbprint <ThumbprintValue> <!--NeedCopy--> -
Verify updated value:
Get-Item -LiteralPath xdhyp:\connections\<OracleC3ConnectionName> <!--NeedCopy-->
Note:
Update fails if the supplied thumbprint is incorrect or does not match server certificate trust.
Where to go next
- If you’re in the initial deployment process, see Create machine catalogs
- For Oracle C3 specific information, see Create an Oracle C3 machine catalog
More information
Share
Share
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.