File name
discovery_config.xml |
Description
Defines discovery operations for Windows OS patch configuration information and OpenStack information.
WSUS server information
OpenStack API endpoint information
Service access user information
File location
[Windows]
<Systemwalker Software Configuration Manager installation directory>\SWCFMGM\config |
[Linux]
/etc/opt/FJSVcfmgm/config |
File format
<?xml version="1.0" encoding="utf-8"?> <Discovery> <RepositoryServers> <WSUS> <entry key="enable-wsus">true</entry> <entry key="ipaddress">10.10.10.10</entry> <entry key="port"></entry> </WSUS> </RepositoryServers> <Sites> <OpenStack> <entry key="site-id">OpenStack</entry> <entry key="enable-openstack">true</entry> <entry key="ipaddress">12.12.12.12</entry> <entry key="port">5000</entry> <entry key="domain-name">domain1</entry> <entry key="user-name">user1</entry> <entry key="password">systemwalker#1</entry> </OpenStack> </Sites> </Discovery>
Parameters
This parameter sets up information relating to the repository server.
Multiple specifications: Not possible
This parameter sets up information for the WSUS server.
Multiple specifications: Possible
The contents of each key are as follows:
Key | Meaning | Value | Initial value | Default value | Remarks |
---|---|---|---|---|---|
enable-wsus (*1) | Enables the WSUS server as a repository server. |
| true | false | |
ipaddress (*1) | Specifies the IP address of the WSUS server. Note: If this key is empty, the repository server will be disabled. | IP address Example: 10.10.10.10 | - | Empty | |
port | WSUS server port Note: If this key is empty, 80 or 8530 is used. If using a port other than 80 or 8530, specify the port number. | Port number Example: | Empty | Empty |
*1: The value specified at setup is applied.
Set the site information.
Multiple specifications: Not possible
Set the information about the OpenStack site.
Multiple specifications: Not possible
The contents of each key are as follows:
Key | Meaning | Value | Initial value | Default value | Remarks |
---|---|---|---|---|---|
site-id | Site ID. | Fixed to "OpenStack". | OpenStack | None | |
enable-openstack | Enables the OpenStack site. |
| false | false | |
ipaddress | API endpoint Sets the information about API endpoints of OpenStack Keystone. | IP address | Empty | None | |
port | Port number | Empty | None | ||
domain-name | Service access user Sets the service access user information. | Domain name | Empty | Default | |
user-name | User name | Empty | None | ||
password | Password | Empty | None |
Cautions
Use UTF-8 as the character encoding for the file.
Changes to the definition are applied immediately.
Example
Using a WSUS server (10.10.10.10) as a repository server
<?xml version="1.0" encoding="utf-8"?> <Discovery> ...(omitted) <RepositoryServers> <WSUS> <entry key="enable-wsus">true</entry> <entry key="ipaddress">10.10.10.10</entry> <entry key="port"></entry> </WSUS> </RepositoryServers> ...(omitted) </Discovery>
Using multiple WSUS servers (10.10.10.10 and 11.11.11.11) as repository servers
<?xml version="1.0" encoding="utf-8"?> <Discovery> ...(omitted) <RepositoryServers> <WSUS> <entry key="enable-wsus">true</entry> <entry key="ipaddress">10.10.10.10</entry> <entry key="port"></entry> </WSUS> <WSUS> <entry key="enable-wsus">true</entry> <entry key="ipaddress">11.11.11.11</entry> <entry key="port"></entry> </WSUS> </RepositoryServers> ...(omitted) </Discovery>
Stopping the use of the WSUS server (10.10.10.10)
<?xml version="1.0" encoding="utf-8"?> <Discovery> ...(omitted) <RepositoryServers> <WSUS> <entry key="enable-wsus">false</entry> <entry key="ipaddress">10.10.10.10</entry> <entry key="port"></entry> </WSUS> </RepositoryServers> ...(omitted) </Discovery>
When managing OpenStack server groups and servers
<?xml version="1.0" encoding="utf-8"?> <Discovery> ...(omitted) <Sites> <OpenStack> <entry key="site-id">OpenStack</entry> <entry key="enable-openstack">true</entry> <entry key="ipaddress">12.12.12.12</entry> <entry key="port">5000</entry> <entry key="domain-name">domain1</entry> <entry key="user-name">user1</entry> <entry key="password">systemwalker#1</entry> </OpenStack> </Sites> ...(omitted) </Discovery>
When not managing OpenStack server groups and servers
<?xml version="1.0" encoding="utf-8"?> <Discovery> ...(omitted) <Sites> <OpenStack> <entry key="site-id">OpenStack</entry> <entry key="enable-openstack">false</entry> <entry key="ipaddress">12.12.12.12</entry> <entry key="port">5000</entry> <entry key="domain-name">domain1</entry> <entry key="user-name">user1</entry> <entry key="password">systemwalker#1</entry> </OpenStack> </Sites> ...(omitted) </Discovery>