Uptime Kuma Install
Follow the below steps:
Fix Time, location, and language
1- Go on root
2- Install git
3- Install node js
4- Verify
5- Install global npm to install the latest version
6- Installer via CLI and follow the steps:
Done and returned with that!
Some use full commands pm2
# Run at startup (recommended to-do)
pm2 startup
#check-status
pm2 list
#stop
pm2 stop process_name
#delete
pm2 delete process_name
Update or upgrade
#default path
cd /opt/uptime-kuma
# or if you changed path during installation
cd <uptime-kuma-directory>
# Update from git
git fetch --all
git checkout 1.18.0 --force
# Install dependencies and prebuilt
npm install --production
npm run download-dist
# Restart
pm2 restart uptime-kuma
Reference link:
https://www.tutorialspoint.com/how-to-install-git-on-linux
https://www.golinuxcloud.com/install-nodejs-and-npm-on-raspberry-pi/
https://github.com/louislam/uptime-kuma/wiki/🔧-How-to-Install