Linux/Ansible: Difference between revisions

From Wiki
No edit summary
No edit summary
Line 43: Line 43:


= Links =
= Links =
* https://docs.ansible.com/ansible/latest/user_guide/playbooks_best_practices.html
* https://medium.com/@tedchength/installing-docker-using-ansible-script-c182787f2fa1
* https://medium.com/@tedchength/installing-docker-using-ansible-script-c182787f2fa1



Revision as of 15:13, 17 May 2019

Other articles

Install

sudo apt-get install -y software-properties-common
sudo add-apt-repository -y ppa:ansible/ansible
sudo apt-get update
sudo apt-get install -y ansible  


Commands

ansible --version
ansible-playbook pb-machinex.yml
ansible hostname -m setup    # variables for "hostname"


Step-by-step

  1. Configure SSH Key access (->Linux/SSH)
    ssh-copy-id -i ~/.ssh/id_rsa user@server
  2. Setup file structure
  3. Run ansible playbook
    ansible-playbook



Links