Install lets encrypt SSL in Nginx Ubuntu 22.04 Penguin Technology - 23:38 0 Edit Update Package Repository sudo apt update Install Certbot package sudo apt-get install python3-certbot-nginx certbot Run command to enable s...
Passwordless authentication between two Linux servers Md. Shahzad Alam - 00:23 0 Edit Passwordless authentication between two Linux servers Jenkins & web server On Jenkins Server Generate SSH Key: Generate an SSH key pair....
Allow Port in firwalld linux Md. Shahzad Alam - 22:58 0 Edit Allow port in Linux firewall sudo firewall-cmd --permanent --add-port=10050/tcp sudo firewall-cmd --reload Check allowed port and sudo fir...
run a script every 30 seconds using a cron job in Linux Md. Shahzad Alam - 02:00 0 Edit # run a script every 30 seconds using a cron job in Linux #!/bin/bash #cat script.sh while true; do # Your script commands go here ...
Generate randam key using base64 encode Md. Shahzad Alam - 19:53 0 Edit #Generate 32-bye random key head -c 32 /dev/urandom | base64