You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-17 09:41:06 +03:00
17 lines
363 B
Bash
17 lines
363 B
Bash
#!/bin/bash
|
|
#
|
|
# Restarts the database.
|
|
#
|
|
|
|
if [ -f /usr/local/Calpont/bin/calpontConsole ]; then
|
|
/usr/local/Calpont/bin/calpontConsole restartsystem y Force
|
|
/usr/local/Calpont/mysql/mysql-Calpont restart
|
|
else
|
|
# If there's no calpontConsole, then we are running local with a single PM; better be Windows.
|
|
idbsvsto.bat
|
|
idbsvsta.bat
|
|
sleep 3
|
|
echo restarted
|
|
fi
|
|
|