Turn Your Vehicle Into a Smart Earning Asset

While you’re not driving your car or bike, it can still be working for you. MOTOSHARE helps you earn passive income by connecting your vehicle with trusted renters in your city.

🚗 You set the rental price
🔐 Secure bookings with verified renters
📍 Track your vehicle with GPS integration
💰 Start earning within 48 hours

Join as a Partner Today

It’s simple, safe, and rewarding. Your vehicle. Your rules. Your earnings.

How to access Ansible remote machine using SSH user and key?

How to access Ansible remote machine using SSH user and key?

There are following ways, you can autheticte linux remote server using Ansible.

Method 1 – Password Less authentication
https://www.tecmint.com/ssh-passwordless-login-using-ssh-keygen-in-5-easy-steps/

If You want to automate this process using Ansible in mutiple machine, follow this
https://everythingshouldbevirtual.com/ansible-ssh-key-distribution-for-password-less-ssh/

Method 2 – SSH key file using command line

[code]ansible-playbook -i hosts playbook.yml –key-file=remote-access.pem -u ec2-user –become[/code]

Method 3 – SSH key file in the inventory file:

[code]myHost1 ansible_ssh_private_key_file=remote-access.pem ansible_user=ec2-user
myHost2 ansible_ssh_private_key_file=remote-access.pem ansible_user=ec2-user[/code]

Method 4 – SSH key file in the host_vars:

[code]# hosts_vars/myHost1.yml
ansible_ssh_private_key_file: ~/.ssh/mykey1.pem
ansible_user=ec2-user
# hosts_vars/myHost2.yml
ansible_ssh_private_key_file: ~/.ssh/mykey2.pem
ansible_user=ec2-user[/code]

Method 5 – SSH key file in the group_vars:

[code]# hosts_vars/myHost1.yml
ansible_ssh_private_key_file: ~/.ssh/mykey1.pem
ansible_user=ec2-user
# hosts_vars/myHost2.yml
ansible_ssh_private_key_file: ~/.ssh/mykey2.pem
ansible_user=ec2-user[/code]

Method 6 – SSH key file in the vars section of your play:

[code]- hosts: myHost
remote_user: ubuntu
vars_files:
– vars.yml
vars:
ansible_ssh_private_key_file: “{{ key1 }}”
tasks:
– name: Echo a hello message
command: echo hello[/code]

Method 7 – SSH key file in the ansible.cfg:

[code][defaults]
inventory: <YOUR INVENTORY>
remote_user = <YOUR USER>
private_key_file = <PATH TO KEY_FILE>[/code]

Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.

0
Would love your thoughts, please comment.x
()
x