From d16dfec7f7c87b95ae5a5dc210ea0dd4c5c9b71a Mon Sep 17 00:00:00 2001 From: david hill Date: Tue, 13 Jun 2017 09:50:47 -0500 Subject: [PATCH] MCOL-472 - additional tweak to full shutdown both mysql processes --- dbcon/mysql/mysql-Columnstore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbcon/mysql/mysql-Columnstore b/dbcon/mysql/mysql-Columnstore index a0c8bca23..de090329f 100755 --- a/dbcon/mysql/mysql-Columnstore +++ b/dbcon/mysql/mysql-Columnstore @@ -310,7 +310,7 @@ fi kill_by_pid() { # let's see if we can kill the 2 mysql procs by hand # get the our mysql from ps - eval $(ps -ef | grep "$COLUMNSTORE_INSTALL_DIR/mysql//bin/mysqld" | grep -v grep | head -1 | awk '{printf "pid=%d\n", $2}') + eval $(ps -ef | grep "$COLUMNSTORE_INSTALL_DIR/mysql//bin/mysqld " | grep -v grep | head -1 | awk '{printf "pid=%d\n", $2}') if [ -n "$pid" ]; then ppid=$(ps -o ppid= -p $pid)