...
Code Block | ||
---|---|---|
| ||
# Run commands below on the Host Server ssh-keygen cd ~/.ssh chmod 600 id_rsa chmod 600 id_rsa.pub chmod 700 config chmod 600 known_hosts cat id_rsa.pub >> authorized_keys chmod 600 authorized_keys echo "# Increase the server timeout value" >> ~/.ssh/config echo "ServerAliveInterval 120" >> ~/.ssh/config |
Step 2. Download software and install EMCO (AMCOP
...
3.1.
...
1)
Note that the install process will:
...
Code Block | ||
---|---|---|
| ||
#### On the Host Server sudo yum install -y git deltarpm mkdir -p amcop_deploy cd amcop_deploy ## Download the installation package zip file wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://docs.google.com/uc?export=download&id=1PMyc8yULDeTIY0xNvY0RDf_7CSWvli3l1pM9Pi4Je0dPNsDg5RuO1KpojrJmgdakV' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=1PMyc8yULDeTIY0xNvY0RDf_7CSWvli3l1pM9Pi4Je0dPNsDg5RuO1KpojrJmgdakV" -O amcop_install_v2v3.1.210032022.zip && rm -rf /tmp/cookies.txt unzip amcop_install_v2v3.1.210032022.zip sudo chown -R onaplab:onaplab ~/amcop_deploy/ cd ~/amcop_deploy/aarna-stream/util-scripts ./prep_baremetal_centos.sh ####### Install EMCO/AMCOP # Edit inventory.ini file. Use IP address of Host Server and the username. cd ~/amcop_deploy/aarna-stream/amcop_deploy/ansible/deployment vi inventory.ini [deployment_host] 10.121.1.12 ansible_user=onaplab nohup ansible-playbook ./main.yml -i inventory.ini -e deployment_env=on-prem -e jump_host_user=onaplab --private-key=/home/onaplab/.ssh/id_rsa -e vm_user=onaplab & |
...