zookeeper启动报错

zookeeper启动报错:

bin/zkServer.sh: 81: /home/ljj/software/zookeeper-3.4.13/bin/zkEnv.sh: Syntax error: "(" unexpected (expecting "fi")

错误原因:

Ubuntu的默认shell为dash

解决方法:

将dash 改为 bash   

root@PC:~$ ls -l /bin/sh
lrwxrwxrwx 1 root root 4 9月  25 12:48 /bin/sh -> dash
root@PC:~$ ln -sf bash /bin/sh
root@PC:~$ ls -l /bin/sh
lrwxrwxrwx 1 root root 4 11月 12 15:50 /bin/sh -> bash

之后重启即可

原文地址:https://www.cnblogs.com/sebuntin2020/p/12513818.html