Systemd Service Generator
Generate systemd service unit files with [Unit], [Service], and [Install] sections visually.
Presets
[Unit] Section
[Service] Section
Environment Variables
=
[Install] Section
Generated Unit File
[Unit] Description=My Application Service After=network.target [Service] Type=simple User=www-data WorkingDirectory=/opt/myapp Environment="NODE_ENV=production" ExecStart=/usr/bin/node /opt/myapp/index.js Restart=on-failure RestartSec=5 StandardOutput=journal StandardError=journal [Install] WantedBy=multi-user.target
Installation Instructions
1. Save the file to
/etc/systemd/system/myapp.service2. Reload systemd:
sudo systemctl daemon-reload3. Enable on boot:
sudo systemctl enable myapp4. Start the service:
sudo systemctl start myapp5. Check status:
sudo systemctl status myapp6. View logs:
journalctl -u myapp -fRelated tools
Chmod CalculatorCode
Visual chmod permission calculator with octal and symbolic notation.
Crontab GeneratorDevOps
Visual crontab expression builder with presets and next run times.
Nginx Config GeneratorDevOps
Generate nginx server block configurations with SSL, gzip, and location blocks.
.htaccess GeneratorDevOps
Generate .htaccess rules for redirects, rewrites, CORS, caching, and error pages.
SSH Config GeneratorDevOps
Generate SSH config entries for ~/.ssh/config with host aliases and keys.
Docker Run Command GeneratorDevOps
Generate docker run commands visually with ports, volumes, and env vars.