How to install marvel 1.3.1 on ubuntu?

Hi Experts,

I have an offline machine and i want to install marvel on it . Since I do not have internet so can someone guide me from where I can get marvel-1.3.1.tar as we are using ES1.7.1

Regards
Vikas

https://www.elastic.co/guide/en/marvel/marvel-1.3/manual_download.html

I'd also encourage you to read the docs a bit more, a lot of the questions you ask can be answered by them :slight_smile:

Thanks ,

So I was following this URL only but I am getting following error . I have pasted zip file onto the server and then I am firing
/es/bin$ ./plugin -i marvel -u file://home/apps/marvel-1.3.1.zip

ERROR
-> Installing marvel...
Trying file://home/apps/marvel-1.3.1.zip...
Failed: UnknownHostException[home]
Trying https://github.com/null/marvel/archive/master.zip...
Failed to install marvel, reason: failed to download out of all possible locations..., use --verbose to get detailed information

Try:

/es/bin$ ./plugin -i marvel -u file:///home/apps/marvel-1.3.1.zip

I think you just needed an additional slash after file:. Two slashes for the file protocol (file://) and 1 slash to start the absolute path of your file (/home/apps/marvel-1.3.1.zip).

@tsullivan it worked for me Thank you