Elasticsearch 1.7 installation marvel-agent failed - elasticsearch

I have installed ElasticSearch 1.7 and want to install marvel, bellow command to install licence worked.
sudo bin/plugin --install mobz/elasticsearch-head --verbose
But installing marvel itself failed:
vagrant#homestead:/usr/share/elasticsearch$ sudo bin/plugin install marvel-agent
-> Installing marvel-agent...
Trying https://github.com/null/marvel-agent/archive/master.zip...
Failed to install marvel-agent, reason: failed to download out of all possible locations..., use --verbose to get detailed information
How to solve this ?
with --verbose this occurred vagrant#homestead:/usr/share/elasticsearch$ sudo bin/plugin install marvel-agent --verbose
-> Installing marvel-agent...
Trying https://github.com/null/marvel-agent/archive/master.zip...
Failed: IOException[Can't get https://github.com/null/marvel-agent/archive/master.zip to /usr/share/elasticsearch/plugins/marvel-agent.zip]; nested: FileNotFoundException[https://github.com/null/marvel-agent/archive/master.zip]; nested: FileNotFoundException[https://github.com/null/marvel-agent/archive/master.zip];
Failed to install marvel-agent, reason: failed to download out of all possible locations..., use --verbose to get detailed information

For Elasticsearch 1.7, the correct command is different than for 2.x:
bin/plugin -i elasticsearch/marvel/latest

Related

trying to install fmt on archcraft stop because breaks dependency 'libfmt.so=8-64'

i'm trying to install a Archcraft theme, but when i run the command sudo pacman -U archcraft-wayfire-1.0-2-any.pkg.tar.zst it gave me this error:
 sudo pacman -U archcraft-wayfire-1.0-2-any.pkg.tar.zst
[sudo] password for rick:
loading packages...
resolving dependencies...
looking for conflicting packages...
error: failed to prepare transaction (could not satisfy dependencies)
:: installing fmt (9.1.0-1) breaks dependency 'libfmt.so=8-64' required by mpd
How can i fix?
Try installing fmt package by the following command:
sudo pacman -S fmt

brew install bash failing

Trying to get a more recent version of bash installed on my Mac using brew.
brew is installed and working fine. When I try to run:
brew install bash
however I get the following error:
==> Downloading https://gist.githubusercontent.com/jacknagel/d886531fb6623b60b2a
curl: (22) The requested URL returned error: 404 Not Found
Error: Failed to download resource "readline--patch"
Download failed: https://gist.githubusercontent.com/jacknagel/d886531fb6623b60b2af/raw/746fc543e56bc37a26ccf05d2946a45176b0894e/readline-6.3.8.diff
And indeed, there's nothing at:
https://gist.githubusercontent.com/jacknagel
Update your Homebrew formulae and try again: brew update.

Unable to install RPM package on Mac

I am trying to install rpm on Mac 10.10 using this command
brew install rpm
However, it failed and I got this error. Please guide me how can I fix this?
==> Installing rpm dependency: rpm2cpio
==> Downloading http://svnweb.freebsd.org/ports/head/archivers/rpm2cpio/files/rpm2cpio?revision=259745&view=co
curl: (22) The requested URL returned error: 403 Forbidden
Error: Failed to download resource "rpm2cpio"
Download failed: http://svnweb.freebsd.org/ports/head/archivers/rpm2cpio/files/rpm2cpio?revision=259745&view=co
The following works for me:
brew install rpm2cpio
brew install rpm
rpm2cpio rpm_name.rpm | cpio -idmv

Unable to install ApiGen using CLI

I am trying to install Apigen on windows.
I am following instructions mentioned here.
But I am getting following error in cmd:
ApiGen PEAR is no more supported.
Download PHAR from apigen.org or install via composer require apigen/apigen.

installing ruby 1.9.3 of osx mavricsmavrics

I am trying to install ruby 1.9.3 on my osx 10.9 operating system and I keep getting the following error :
Error running 'requirements_osx_port_update_system ruby-1.9.3-p448',
please read /Users/ramesh/.rvm/log/1383430694_ruby-1.9.3-p448/update_system.log
Requirements installation failed with status: 1.
I am using the following command to do the installtion :
rvm install 1.9.3
The complete log is as given below :
checking for Tcl configuration... configure: error: Can't find Tcl configuration definitions
Command failed: cd /opt/local/var/macports/sources/rsync.macports.org/release/tarballs/base && CC=/usr/bin/cc ./configure --prefix=/opt/local --with-tclpackage=/Library/Tcl --with-install-user=root --with-install-group=admin --with-directory-mode=0755 --enable-readline && make && make install SELFUPDATING=1
Exit code: 1
DEBUG: Error installing new MacPorts base: command execution failed
while executing
"macports::selfupdate [array get global_options] base_updated"
Error: /opt/local/bin/port: port selfupdate failed: Error installing new MacPorts base: command execution failed
Requirements update log :
checking for Tcl configuration... configure: error: Can't find Tcl configuration definitions
Command failed: cd /opt/local/var/macports/sources/rsync.macports.org/release/tarballs/base && CC=/usr/bin/cc ./configure --prefix=/opt/local --with-tclpackage=/Library/Tcl --with-install-user=root --with-install-group=admin --with-directory-mode=0755 --enable-readline && make && make install SELFUPDATING=1
Exit code: 1
DEBUG: Error installing new MacPorts base: command execution failed
while executing
"macports::selfupdate [array get global_options] base_updated"
Error: /opt/local/bin/port: port selfupdate failed: Error installing new MacPorts base: command execution failed
Finally I found the solution. I had to install the new command line tools for osx 10.9 (Mavrics) using the following command.
sudo xcode-select --install
Then I had to run the following command to do the macports selfupdate.
sudo port -v selfupdate
Then I can successfull install ruby 1.9.3 using the following command.
rvm install 1.9.3
Hope this will be helpful to anyone facing the same dilema.
On my computer (running mavericks), it seemed like xcode's command line tools were installed because I had access to gcc, git, etc. But there was a small additional package I had to download by doing:
$ sudo xcode-select --install
This prompts to install the command line tools. Followed by $ rvm requirements the rvm prerequisites installed properly and I was able to install ruby.

Resources