0

I was trying to install and configure kafka manager in my kafka cluster but facing issue while building kafka manager binary as below.

./sbt clean dist. 

Server is not connected with internet so not able to download required binary and handing with error:

getting scala version x.x.x

Kindly help to install and configure kafka manager offline.

Thanks

Nishu Tayal
  • 20,106
  • 8
  • 49
  • 101
LetsNoSQL
  • 1,478
  • 1
  • 11
  • 23

1 Answers1

0

You can run sbt in offline mode by setting below parameter:

$ sbt "set offline := true" run

And make sure you have all the required dependencies and components in the local .ivy cache .ivy2/cache in order to build the project offline.

Nishu Tayal
  • 20,106
  • 8
  • 49
  • 101