Copying files to remote server is needed at times, like deploying a new certificate or just some readme notes or other files that are just necessary in order to complete a task.
Working with a single server, is not an issue. However, managing or deploying a file to a multiple servers could be daunting by doing it manually from server to server.
Ansible is a good tool to copy files in one go, to multiple servers.
Below is a sample code that would copy a file or group of files to specified servers.
This can be a run as ansible adhoc playbook on an ansible node controller.
{{ item }} <-- is the place holder for all file or files to be copied
with_items <-- are the variables that will be placed on {{ item }} and it will be copied to the specified destination
with_items:
- test.crt
- server.crt
- filetest.pem
#==========Ansible code below
---
- name: Copy file or files to remote servers or host
#multiple servers, use: server_1:server_2:server_3
hosts: server_1:server_2:server_3
become_method: sudo
become_user: root
become: true
tasks:
#Files to be copied is located on src, while dest is the remote path destination
- name: Copy files to remote servers or host
copy:
#change the source path as needed
src: "/home/testuser/testfolder/{{ item }}"
dest: /root/testcopy/
#set owner/group or permissions as necessary
#owner: root
#group: root
#mode: 700
#change to name of the files to be copied
with_items:
- test.crt
- server.crt
- filetest.pem
Cheers! Take care. Till next Time.
Stay safe! and Keep things up!
Do ASAP, Always Say A Prayer...
Practice O.T.G. = Obedience To God
Make time for Prayer and Meditation.
================================
Free Android Apps:
Click links below to find out more:
Free Android Apps:
Click links below to find out more:
Excel Keyboard guide:
https://play.google.com/store/apps/details?id=chrisjoms.myexcelapplicationguide
Heaven's Dew Fall Prayer app for Android :
https://play.google.com/store/apps/details?id=soulrefresh.beautiful.prayer
Catholic Rosary Guide for Android:
Pray the Rosary every day, countless blessings will be showered upon your life if you recite the Rosary faithfully.
https://play.google.com/store/apps/details?id=com.myrosaryapp
Divine Mercy Chaplet Guide (A Powerful prayer) BFF = Be Filled Faith:
Comments
Post a Comment