자동 모드에서 Workspace ONE Access Connector 설치 관리자와 함께 사용할 XML 파일에 설치 옵션을 정의할 수 있습니다. XML 파일에는 속성 및 값 목록이 포함되어 있습니다.

XML 파일에서 반드시 설치 옵션을 정의해야 하는 것은 아닙니다. 명령줄에서 직접 옵션을 입력할 수 있습니다. 그러나 XML 파일을 사용하면 설치 구성을 생성하고 동일한 설정을 사용하여 여러 설치를 빠르게 수행할 수 있습니다.

프로시저

  1. 커넥터 서버에 로그인합니다.
  2. filename.xml이라는 XML 파일을 생성합니다.
  3. 아래의 샘플 XML 파일 컨텐츠를 복사하여 XML 파일에 붙여 넣습니다.
  4. XML 파일을 편집하고 설치 요구 사항에 따라 속성 값을 수정합니다.
    속성에 대한 자세한 내용은 자동 모드 설치 속성을 참조하십시오.
  5. 파일을 저장합니다.

예: 샘플 설치 속성 XML 파일

<?xml version="1.0" encoding="utf-8"?>
<properties>
	<!-- List of services to be installed -->
	<property name="ADDLOCAL" value="UserAuthService,DirectorySyncService,KerberosAuthService" />

	<!-- Installation Directory -->
	<property name="INSTALLDIR" value="C:\VMware\Silent" />
	<!-- Installation Directory -->
	<property name="TARGETDIR" value="C:\VMware\Silent" />

	<!-- Provide the path for the es-config.json file which you downloaded from the Admin console. -->
	<!-- The file password will be specified through the command line argument WS1_CONFIG_FILE_PASSWORD. -->
	<property name="WS1_CONFIG_FILE_PATH" value="C:\Installer\es-config.json" />

	<!-- Proxy Configuration: 0 - No proxy, 1 - Configure Proxy -->
	<property name="WS1_IS_PROXY_ENABLED" value="0" />
	<!-- Proxy Host Name -->
	<property name="WS1_PROXY_HOSTNAME" value="" />
	<!-- Proxy Port Number -->
	<property name="WS1_PROXY_PORT" value="" />
	<!-- Proxy Authentication type: 0 - Anonymous, 1 - Authenticated -->
	<property name="WS1_IS_PROXY_AUTHENTICATED" value="0" />
	<!-- Proxy Username if proxy is Authenticated -->
	<!-- The proxy password will be specified through the command line argument WS1_PROXY_PASSWORD. -->
	<property name="WS1_PROXY_USERNAME" value="" />

	<!-- Syslog Configuration: 0 - No Syslog, 1 - Configure Syslog -->
	<property name="WS1_IS_SYSLOG_ENABLED" value="0" />
	<!-- Syslog Host name -->
	<property name="WS1_SYSLOG_HOSTNAME" value="" />
	<!-- Syslog port number -->
	<property name="WS1_SYSLOG_PORT" value="" />

	<!-- Trust Store Certificate(s) folder path. Provide the folder path for certificates to be installed in the truststore. -->
	<property name="WS1_TRUSTSTORE_CERTS_PATH" value="C:\Installer\Certificates" />

	<!-- Port for UserAuthService -->
	<property name="WS1_USER_AUTH_PORT" value="8090" />
	<!-- Port for DirectorySyncService -->
	<property name="WS1_DIRECTORY_SYNC_PORT" value="8080" />
	<!-- Port for KerberosAuthService -->
	<property name="WS1_KERBEROS_AUTH_PORT" value="443" />

	<!-- SSL Certificate for Kerberos Auth Service: 0 - Self-signed Certificate, 1 - SSL certificate -->
	<property name="WS1_ADD_SSL_CERT" value="0" />
	<!-- File path for the SSL Certificate for Kerberos Auth Service, in .pem or .pfx format -->
	<!-- If SSL Certificate is a .pfx file, its password will be specified through the command line argument WS1_SSL_CERT_PASSWORD. -->
	<property name="WS1_SSL_CERT" value="" />
	<!-- File path for the private key file if SSL Certificate is a .pem file -->
	<property name="WS1_PRIVATE_KEY" value="" />

	<!-- Domain Username for Kerberos Auth Service used to generate the keytab file, in the format DOMAIN\UserName -->
	<!-- The password will be specified through the command line argument IS_NET_API_LOGON_PASSWORD -->
	<property name="IS_NET_API_LOGON_USERNAME" value="win21021\admin" />
</properties>

다음에 수행할 작업

자동 모드에서 Workspace ONE Access Connector 설치 관리자를 실행하는 경우 WS1_SETUP_CONFIG_FILE=filepath 인수를 사용하여 XML 파일을 지정합니다.