Confluence Installation and Backup Recovery on Linux
Prerequisites
Before installing Confluence, ensure the following components are ready on your server:
Java Development Kit (JDK) 8 or later
MySQL 5.7+ or another supported database
JDK Setup
# Extract JDK archive to /opt/java
cd /opt
tar xzf jdk-8u231-linux-x64.tar.gz
# Set environment variables in /etc/profile
export JAVA_HOME=/opt/java/jdk ...
Posted on Thu, 16 Jul 2026 17:12:39 +0000 by gtal3x
GitLab Backup and Restoration Guide
Automtaed GitLab Backups Using Cron
To automate GitLab backups, you can use cron jobs to execute backup scripts at scheduled intervals.
Schedule a Daily Backup
Edit the crontab file:
crontab -e
Add the following line to run a backup script daily at 2 AM:
0 2 * * * /opt/scripts/gitlab_backup.sh
Backup Script Content
The script should include c ...
Posted on Tue, 30 Jun 2026 18:18:25 +0000 by carleyvibe