From de9528c223b745272a7908b801a504c8c56b0f38 Mon Sep 17 00:00:00 2001 From: "Y. SREENIVASULU REDDY" Date: Fri, 17 Apr 2015 11:16:12 +0530 Subject: [PATCH 125/125] [HBASE-13490] Linux Command execution is failing while starting HBase processes using hbase-daemon.sh file --- bin/hbase-daemon.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/hbase-daemon.sh b/bin/hbase-daemon.sh index e411dad..fa5c9fd 100755 --- a/bin/hbase-daemon.sh +++ b/bin/hbase-daemon.sh @@ -204,7 +204,7 @@ case $startStop in (foreground_start) # Add to the command log file vital stats on our environment. echo "`date` Starting $command on `hostname`" >> ${HBASE_LOGLOG} - `ulimit -a` >> "$HBASE_LOGLOG" 2>&1 + echo "`ulimit -a`" >> "$HBASE_LOGLOG" 2>&1 # in case the parent shell gets the kill make sure to trap signals. # Only one will get called. Either the trap or the flow will go through. trap cleanAfterRun SIGHUP SIGINT SIGTERM EXIT -- 1.8.4.msysgit.0