Arya M. Pathakarya2004.hashnode.dev·Jan 24, 2025Understanding Linux Cron for Task Scheduling (with Golang Example)Cron is a built-in utility on Linux and Unix-like systems. Its main purpose is to schedule and automate tasks (known as jobs) so that you do not have to run them manually. These automated tasks can include sending emails, cleaning up files, monitorin...20 likesGo Deep: Mastering Golang FundamentalsLinux
Rijul Rajesh T Prijultp.hashnode.dev·Jan 19, 2025Cronjobs for dummies: Your gateway to automating anything!During our development journey, we may have encountered situations where we needed to automate certain tasks at fixed intervals. Similarly, when I was developing LiveAPI, I faced a situation where I had to automate some database changes every 5 minut...20 likescronjob
Sai Praneethterraformiac.hashnode.dev·Jan 15, 2025CronTabLet’s say we need to run a shell script exactly at 8:00 PM every day., shell script is a file that contains a series of commands. Rather than keeping an alarm at 8:00 a.m. every day, logging into the server, and saying hello.sh ., which is difficult,...cronjob
Deepam Makwanadeepam.tech·Jan 13, 2025Understanding CronWhat is Cron, Crontab & Cron Job Cron is a time-based job scheduler in Unix-like operating systems, while crontab refers to the table used to define these scheduled tasks. A cron job is a specific task scheduled to run at predefined intervals. Togeth...Linux
Favour Max-Otikells.hashnode.dev·Jan 3, 2025Simplifying Repetitive Tasks with CRON Jobs: My Backend StoryWhen I was tasked with developing the API for my church website, I was both honored and excited. It wasn’t just a project—it was recognition that my church saw me as the tech guy, their very own “tech bro.” Naturally, I was determined to do a stellar...11 likes·28 readsNest Jsnestjs
Sheikh Vazidblog.vazid.site·Jan 4, 2025How to Automate System Updates Using a Custom Bash ScriptThis blog post introduces a Bash script designed to simplify Linux system updates across various distributions. With this script, you can: Perform system updates with a single command. Schedule updates using cron jobs for convenience. Log every up...GuidesLinux
Harshit Sahuharshitsahu2311.hashnode.dev·Dec 29, 2024DaemonSets, Jobs, and CronJobs in Kubernetes - CKAIn the dynamic world of Kubernetes, ensuring that critical applications run seamlessly across all nodes in a cluster is essential for maintaining system health, performance, and observability. Enter the DaemonSet, a powerful Kubernetes resource desig...111 readsCertified Kubernetes AdministratorKubernetes
Ansh Balanlinuxfordevops.hashnode.dev·Dec 21, 2024Part 6: Cron and Crontab in LinuxIn this section, we will dive into the concepts of cron and crontab, two essential tools for scheduling tasks in Linux. We’ll explain their purpose, how to use them, and provide practical examples for automation. What is cron? cron is a time-based jo...cronjob
KALPESH MOHANTAkalpeshblog.hashnode.dev·Dec 15, 2024Terraform Scenario QusScenario 1 : Terraform Migration of AWS Resource Step 1: Import Resource Configuration Import Block: Add the import block in main.tf to specify the EC2 resource ID and target resource name: import { id = "instance ID" to = aws_instance.ex...terraform-migration
Samuel Colonsamcolon.hashnode.dev·Dec 2, 2024Automating Log Management with Bash and S3One of the most common tasks when working with the cloud is creating scripts to automate processes. These scripts are typically written in either Bash or Python. In this project, I’ll guide you through setting up the infrastructure needed to host an ...88 readsAWS