1

I am setting up Zimbra mail server on Centos 8.8.12 server OS. while installing zimbra, I am getting following error. ./util/utilfunc.sh: line 2314: print: command not found Please guide.

enter image description here

Nitesh
  • 823
  • 1
  • 10
  • 15

1 Answers1

0

There are two problems coming together:

  1. You are not running bash, as you can see from the wording of the error message. A bash error message would start with the word bash, i.e. bash: print: command not found

  2. Since print is not an internal command to bash (it would be one in, say, zsh), you need to have a file named print in one of the directories listed in your PATH, and this file needs to have executable permission.

user1934428
  • 19,864
  • 7
  • 42
  • 87