Not a customer? Click the 'Start a free trial' link to begin a 30-day SaaS trial of our product and to join our community.
Existing Cisco AppDynamics customers should click the 'Sign In' button to authenticate to access the community
08-21-2018 09:24 AM
I'm working on an ansible playbook for agent deployment and I'm wondering if anyone knows if the agruments that can be passed to the msi installer are documented anywhere? I need to pass the installation and program data directory locations to win_package.
Thanks!
Solved! Go to Solution.
08-22-2018 08:29 AM
https://docs.appdynamics.com/display/PRO44/Unattended+Installation+for+.NET
Optional Parameters:
AD_SetupFile: Pass the absolute file path to the setup configuration file.
INSTALLDIR: Specify the the directory to install the .NET Agent executables and supporting files.
DOTNETAGENTFOLDER: New in 4.1.3, specify the parent directory for local data including agent configuration files and log files.
For example:
msiexec /i dotNetAgentSetup64.msi /q /norestart /lv %TEMP%\AgentInstaller.log AD_SetupFile=C:\temp\SetupConfig.xml INSTALLDIR=D:\AppDynamics DOTNETAGENTFOLDER=D:\AppDynamicsData
01-16-2020 01:24 PM
Hi Andrew,
Im working on a playbook to install .Net agent on a windows host.
Im getting the following error while trying to install .Net agent.
WIN-XXXXXXX | FAILED! => {
"changed": false,
"msg": "the file at the URL http://download.appdynamics.com/download/prox/download-file/dotnet/4.5.18.1/dotNetAgentSetup64-4.5.1... cannot be reached: The remote server returned an error: (405) Method Not Allowed.",
"reboot_required": false
}
Provided below is the command I used to install
ansible windows -i hosts -m win_package -a "path='http://download.appdynamics.com/download/prox/download-file/dotnet/4.5.18.1/dotNetAgentSetup64-4.5.1...' product_id='AppD_.Net_Agent'"
Could you please help in this case if possible.
01-16-2020 01:43 PM
Hello,
I would imagine that you're running into a situation with a 405 error that there is an authentication requirement that isn't being met on the remote server. To avoid this issue, I download and maintain a local repository of the agent files I distribute on my Ansible server. It also allows me to control the number of versions I have deployed to my environment at anyone time.
However, it looks like you'll want to utilize the username and password parameters (that give you access to the AppDynamics website) for win_package, as outlined in the Ansible module documentation.
https://docs.ansible.com/ansible/latest/modules/win_package_module.html
Hopefully that helps.
01-16-2020 01:54 PM
Agreed and will incline towards the Local Repository way.
Thanks for your Response Andrew.
Thank you! Your submission has been received!
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form