I had to install our bigfix client on a few remote computers, for which we used a local .msi install.
Sadly I forgot that the server address included in the .msi installer is the internal server address, which is not resolvable from the internet.
Is there some command, registry or configuration file that I can send to the remote users so we can force the bigfix client to connect to a certain serveraddress, so that it can make its initial connection ?
Here is a sample script that I have used in the past for this exact situation (on Windows systems). this will stop the BES Client, modify the relay URL’s (I have 4 in this example), then start the relay service.
net stop besclient
IF EXIST “%PROGRAMFILES(X86)%” (GOTO 64BIT) ELSE (GOTO 32BIT)
The above script was meant to fix agents already deployed. For new deployments you will want to create a
clientsettings.cfg
as explained in the link Tim included (this will ensure clients are installed with the desired settings). Keep in mind only setup.exe reads this file, it will not work with the msi version of the installer.