We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6ccb92 commit a215528Copy full SHA for a215528
2 files changed
modules/red/Futures/data/uptime.accumulator
@@ -1 +1 @@
1
-29295
+29895
scripts/web/post-clone.sh
@@ -65,8 +65,10 @@ if ! command -v mysql &>/dev/null; then
65
echo "[*] Installing MySQL..."
66
apt install -y -qq mysql-server 2>/dev/null || dnf install -y mysql-server 2>/dev/null || true
67
systemctl enable mysql 2>/dev/null || systemctl enable mysqld 2>/dev/null
68
- systemctl start mysql 2>/dev/null || systemctl start mysqld 2>/dev/null
69
fi
+# Always ensure MySQL is running (may be installed but stopped after reboot)
70
+echo "[*] Starting MySQL service..."
71
+systemctl start mysql 2>/dev/null || systemctl start mysqld 2>/dev/null || true
72
echo "[OK] MySQL: $(mysql --version 2>/dev/null | head -1)"
73
74
# 3. Configure MySQL root for JDBC
0 commit comments