Md. Kaiyomkaiyom.hashnode.dev·Dec 6, 2024Nginx FTP server with Docker and multiple volumeHere, we are creating ftp server with nginx docker image and mounting multiple directory as volume, so that we can access those file over the network. sudo docker run -d --name nginx-ftp --restart=unless-stopped -p 8080:80 -v /home/user/movie/:/usr/s...Docker
Ankita Lunawatcloudhub2295.hashnode.dev·Dec 4, 2024Useful Port Number used for Devops..!HTTP (Hypertext Transfer Protocol) - Port 80 Purpose: Used for transferring web pages. HTTPS (HTTP Secure) - Port 443 Purpose: Secure version of HTTP SSH (Secure Shell) - Port 22 Purpose: Secure remote login and command execution. FTP (File Tra...http
Uttam Mahatauttammahata.hashnode.dev·Nov 13, 2024How to Access Linux Laptop Files on Your Mobile via SFTPSecurely accessing your Linux laptop’s files from your mobile device can be efficiently done using SFTP (Secure File Transfer Protocol). Follow these steps to set up SFTP and connect your mobile device to your Linux laptop. 1. Set Up SFTP on Your Lin...ftp
Techknightmanveercs201.hashnode.dev·Oct 3, 2024Building a Python File Synchronization App with Tkinter: A Technical Deep DiveThis blog post details the development of a simplified file synchronization application using Python and Tkinter, focusing on the client-side UI and core functionalities. We'll break down the code, explain the design choices, and highlight how object...62 readsProgramming Blogs
Dinesh Kumar Kblog.dineshcloud.in·Sep 21, 2024Installing FTP Server (VSFTPD) on Ubuntu 22.04An FTP (File Transfer Protocol) server in Linux is a service that allows users to transfer files between computers over a network. FTP servers are commonly used for uploading and downloading files, and they can be accessed via various FTP client appl...27 readsLinuxLinux
Shaileshshaileshpashte.hashnode.dev·Aug 20, 2024AWS Transfer Family: Securely Transfer Files In and Out of AWSIntroduction The AWS Transfer Family is a fully managed service that enables you to securely transfer files directly into and out of Amazon S3 or Amazon EFS using the SFTP, FTPS, and FTP protocols. The service is designed to simplify the process of t...AWS
Mukoro Ogheneteguonor Michellecyberauntee.hashnode.dev·Jul 29, 2024How to Transfer Files from Kali Linux virtual machine to Windows host machine Using Apache ServerIntroduction Transferring files from a Linux virtual machine to a Windows system can be a challenging task, especially for those who are not familiar with the process. The differences in operating systems, network configurations, and File Transfer Pr...2 likes·62 reads#cybersecurity
Paminda Kalpa Wickramasinghepamindatechtalks.hashnode.dev·Jul 28, 2024What is Secure ShellSecure Shell aka SSH is one of the most essential network protocols for Cloud and DevOps to effectively manage and automate remote access to servers, containers, and cloud infrastructure, as well as to securely transfer files, execute commands, and m...ssh
sandeepsandeep2024.hashnode.dev·Jul 26, 2024Install FTP server in REDHAT8Install FTP server . Login as a root user. yum install -y vsftpd systemctl enable vsftpd.service systemctl status vsftpd.service Update /etc/vsftpd/vsftpd.conf anonymous_enable=YES systemctl start vsftpd.service Install client yum install -y lft...RHEL
Aaditya Kediyaliaadidev.hashnode.dev·Jun 17, 2024Exploring FTP and SSL/TLS Protocols in Networking: A Comprehensive GuideIn the digital age, secure and efficient data transfer is paramount for both personal and professional activities. This comprehensive guide delves into two essential networking protocols: FTP (File Transfer Protocol) and SSL/TLS (Secure Sockets Layer...network security