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

之后重启即可

相关文章:

  • 2022-12-23
  • 2021-11-23
  • 2021-08-12
  • 2021-12-03
  • 2021-05-29
  • 2021-12-19
  • 2021-07-07
猜你喜欢
  • 2021-07-16
  • 2021-05-11
  • 2022-02-12
  • 2022-12-23
  • 2021-08-28
  • 2022-12-23
相关资源
相似解决方案