zkEnv.sh: Syntax error: "(" unexpected (expecting "fi")记录一下解决方法。。。
Ubuntu zookeeper启动错误 zkEnv.sh: Syntax error: "(" unexpected (expecting "fi")
最近搭建zookeeper的时候出现了这么个问题,启动的时候总是报错!!!
root@host8:/usr/solrcould/service1/zookeeper-3.5.0-alpha# sh bin/zkServer.sh start
JMX enabled by default
bin/zkServer.sh: 95: /usr/solrcould/service1/zookeeper-3.5.0-alpha/bin/zkEnv.sh: Syntax error: "(" unexpected (expecting "fi")
网上找了些资料,主要是Ubuntu的默认配置引起的。具体结局方法如下:
执行以下命令
root@host8:~# cd /bin/
root@host8:/bin# ls -l /bin/sh
lrwxrwxrwx 1 root root 4 Dec 23 22:30 /bin/sh -> dash(默认)
root@host8:/bin# ln -sf bash /bin/sh
root@host8:/bin# ls -l /bin/sh
lrwxrwxrwx 1 root root 4 Dec 23 22:37 /bin/sh -> bash
root@host8:/bin# ls -l /bin/sh
lrwxrwxrwx 1 root root 4 Dec 23 22:30 /bin/sh -> dash(默认)
root@host8:/bin# ln -sf bash /bin/sh
root@host8:/bin# ls -l /bin/sh
lrwxrwxrwx 1 root root 4 Dec 23 22:37 /bin/sh -> bash
重新启动zookeeper,问题得以解决...
进入zookeeper的bin目录下执行如下启动命令:
sh zkServer.sh start //启动
sh zkServer.sh status //查看状态
sh zkServer.sh stop //停止