5) Media Service Installation
This section explains the installation and configuration of the eRecruiter Media Service.
Installation
The eRecruiter Media Service has a one-click installation script, that needs to be executed with administration priviledges. The script is located in the eRecruiter Media Service installation folder and called service-install.bat
.
Configuration
After the service has been installed it needs some additional configuration in the Windows Services configuration.
- General
- Startup Type: Automatic
- LogOn
- Set the account to the same account the eRecruiter IIS application pools are executed with.
- Recovery:
- First failure: Restart the Service
- Second failure: Restart the Service
- Subsequent failures: Restart the Service
Proxy Configuration
If you using a proxy server to connect to the internet, in some cases the eRecruiter Media Service isn't able to establish a outgoing connection. Therefor you get an error message like "Failed to add HTML: Page load timed out.; Gecko engine hit an error that it was unable to recover from. Possible causes: XULRunner folder is corrupt or is from another version of ABCpdf." To solve this problem you can add the default proxy adress to the Media Service config file (ePunkt.FileServer.exe.config).
Here's an example configuration for a proxy server with the ip adress "192.168.1.100" and port "3128":
<?xml version="1.0"?> <configuration> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/> </startup> <system.net> <defaultProxy> <proxy proxyaddress="http://192.168.1.100:3128" bypassonlocal="true" /> </defaultProxy> </system.net> </configuration>