1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2026-01-06 08:21:10 +03:00

MCOL-3718 Use systemd instead of mysql-Columnstore

MariaDB server is now managed using systemd instead of our own
mysql-Columnstore script. This means that MariaDB server can be stopped
/ started independently of ColumnStore
This commit is contained in:
Andrew Hutchings
2020-02-01 14:25:35 +01:00
parent 18f6688470
commit 6cf6519019
10 changed files with 24 additions and 518 deletions

View File

@@ -1514,7 +1514,7 @@ void ProcessMonitor::processMessage(messageqcpp::ByteStream msg, messageqcpp::IO
system(cmd.c_str());
cmd = "post-mysql-install >> " + tmpLogDir + "/rpminstall";
system(cmd.c_str());
cmd = "mysql-Columnstore start > " + tmpLogDir + "/mysqldstart";
cmd = "systemctl start mariadb.service > " + tmpLogDir + "/mysqldstart";
system(cmd.c_str());
string tmpFile = tmpLogDir + "/mysqldstart";