Two scenarios:
- Standalone server, meaning all components are installed on the same server (Back Office and Update Manager). In this case no configuration is needed.
- All components are not installed on the same server. In this case, it is necessary to edit the Back Office default configuration.
The Back Office default configuration file is located in /usr/local/afs7/conf/conf.xml
The following lines must be added to this file, in order to specify Update Manager and Administration Center location.
<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<afs:conf xmlns:afs="http://ref.antidot.net/v7/afs#">
<afs:AC>
<afs:Server>
<afs:UpdateManager>
<afs:host value="update-manager-host"/>
</afs:UpdateManager>
</afs:Server>
</afs:AC>
</afs:conf>
If only Administration Center is used (without Update Manager) add the following lines into /usr/local/afs7/conf/conf.xml in order to specify Administration Center location:
<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<afs:conf xmlns:afs="http://ref.antidot.net/v7/afs#">
<afs:AC>
<afs:Server>
<afs:host value="dedix01"/>
</afs:Server>
</afs:AC>
</afs:conf>