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