Reputation: 73
root@sujit-pc:/usr/local/hbase/bin# ./start-hbase.sh
./start-hbase.sh: line 48: /usr/local/hbase/bin/hbase: Permission denied
./start-hbase.sh: line 55: /usr/local/hbase/bin/hbase-daemons.sh: Permission denied
./start-hbase.sh: line 56: /usr/local/hbase/bin/hbase-daemon.sh: Permission denied
./start-hbase.sh: line 57: /usr/local/hbase/bin/hbase-daemons.sh: Permission denied
./start-hbase.sh: line 59: /usr/local/hbase/bin/hbase-daemons.sh: Permission denied
root@sujit-pc:/usr/local/hbase/bin#
I think, there is some permission issue. But i am already on root
Upvotes: 0
Views: 834
Reputation: 3183
chmod 777 ./start-hbase.sh
to allow r/w access for all users.
chmod +x ./start-hbase.sh
to make the script executable.
Upvotes: 1
Reputation: 21
Sorry i cannot comment cause less than 50 rep. What does ls -l start-hbase.sh return?
Btw have a look on HBase does not run after ./start-hbase.sh - Permission Denied?
Upvotes: 0