Mounssif BOUHLAOUInuux.hashnode.dev·Dec 14, 202410 Ways to Copy Files from Server to Local: A DevOps GuideOkay, let's dive deep into the world of transferring files from a remote server to your local machine. As a DevOps engineer, this is a task you'll encounter frequently, and mastering various methods is crucial for efficiency and security. This articl...2 likes·30 readsDevops
Ansh Balanlinuxfordevops.hashnode.dev·Dec 9, 2024Part 2: Mastering SSH and SCP for DevOpsIn the previous post, we explored the basics of Linux. In this part, we’ll dive into two essential tools for DevOps engineers: SSH (Secure Shell) and SCP (Secure Copy Protocol). These are crucial for securely connecting to servers and transferring fi...ssh
Mohamed El Erakieraki.hashnode.dev·Nov 29, 2024Service Control Policy EssentialsInception Hello everyone, This article is part of The Terraform + AWS series, And it does not depend on any other article, I use this series to publish-out AWS + Terraform Projects & Knowledge. Overview Service control policies (SCPs) are a type of...36 readsTerrafrom + AWSAWS
Mahendra Kondadasumahendra-kondadasu.hashnode.dev·Oct 27, 2024Essential SSH Features Every Developer Should Know: Practical Uses and Real-World ScenariosFor developers, SSH (Secure Shell) is more than just a command to connect to remote servers; it’s a versatile tool with features that streamline remote development, file transfers, and secure connections. In this post, I won’t dive into how SSH works...76 readsssh
Aditya Gadhaveadityag7678.hashnode.dev·Oct 14, 2024A Step-by-Step Guide to Safely Copy Files on Linux with SCPscp (secure copy) command in Linux system is used to copy file(s) between servers in a secure way. The SCP command or secure copy allows the secure transferring of files between the local host and the remote host or between two remote hosts . It us...Linux
Sarthak Tyagisarthakwrites.hashnode.dev·Jul 31, 2024How to make AWS SCPs By TerraformPrerequirsite:- IAM user with Administrator Permission AWS cli and Do AWS configure{Enter access key and secrets key here (iam user)} Install Terraform How to install terraform in Linux sudo apt-get update && sudo apt-get install -y gnupg softwa...scp with terraform
KALPESH MOHANTAkalpeshblog.hashnode.dev·Jul 9, 2024Authentication Methods OverviewPassword Authentication Users authenticate with a username and password. Simple to implement but less secure if passwords are weak or intercepted. Certificate-based Authentication Utilizes digital certificates signed by a trusted Certificate Aut...authentication
Pratiksha Satputepratikshasatpute.hashnode.dev·Jul 7, 2024Securely Transfer Files with SCP in LinuxIntroduction In Unix-like operating systems, transferring files between machines is common. One of the safest and easiest tools for this is scp (Secure Copy Protocol). scp uses SSH (Secure Shell) to move files between hosts, keeping data safe and int...30 readsscp
M S Nishaanthblog.nishaanth.com·Feb 18, 2024Run your App in instance AWS or AZURE or any other instanceWays: 1. Github Generating a new SSH key ssh-keygen -t rsa -b 4096 -C "your_email@example.com" Adding your SSH key to the ssh-agent eval "$(ssh-agent -s)" ssh-add ~/.ssh/id_rsa Expected O/P: Adding a new SSH key to your account cat ~/.ssh/id_rsa...instance
Abdullah Bin Altafdevopswithabdullah.hashnode.dev·Feb 10, 2024Lecture # 24 - Secure Copy Protocol (SCP)SCP: SCP stands for Secure Copy Protocol. It is a network protocol that facilitates secure file transfers between a local host and a remote host or between two remote hosts. SCP is built on top of SSH (Secure Shell) and uses the same authentication a...Devops