Cloud virtual machine Serv00 automatically performs login and keeps the connection alive
Serv00 offers a free cloud hosting service for up to ten years. Out of curiosity (and the spirit of "free-riding" 😄), I decided to test its features and see how well it works. 1. Service Homepage: Serv00 Click "Register an account" to go to the registration page: The free hosting plan includes: PHP support Databases Git repositories 3 open TCP/UDP ports ⚠️ Important: According to their terms, you must log in via DevilWEB or SSH at least once every 90 days, otherwise your account will be automatically deleted. 2. Keeping the Account Active: Automate Login via Cron Jobs To avoid manual logins, we can use DevilWEB’s Cron jobs feature to schedule automatic SSH logins. 1. Create an Auto-Login Script via SSH Log in to your Serv00 account via SSH and create the script: cat > auto_renew.sh << EOF #!/bin/bash sshpass -p 'your_password' ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -tt your_username@your_server_address exit…
- 265
- 0
- Read More