Can't intall chef-manage rpm package - centos

I have CentOS and chef-server. I try to install chef-manage, but something wrong.
When I start install my rpm package
I have this error

You need to install Chef Server (i.e. chef-server-core) first. Then install Manage afterwards via the addons system.

Related

How to install uuid-ossp postgresql extension in arch Linux

I need to install uuid-ossp postgresql extension on arch linux. I have postgresql-9.5. On ubuntu its easy to do via sudo apt-get install postgresql-contrib but how to do this in arch Linux?
The default postgresql package doesn't provide ossp-uuid-feature. You have to enable it via ./configure before compiling. So you have two ways to get this feature:
compile postgresql yourself with --with-ossp-uuid-flag and install it via make install. (I don't recommend this)
Download the postgresql package specifications via the tool asp. You can install it with sudo pacman -Syu asp and then do: asp checkout postgresql. Then you need to modify the PKGBUILD and insert the --with-ossp-uuid-flag inside of the build()-function. Then you can simply build the package and install it with makepkg -si. It is possible that you need additional dependencies. I haven't tested it, but it should work this way.

How Do I install specific version of monit on redhat linux

"Yum install monit" command by default will install 5.14 version. But Monit has released till 5.20 version
I tried with the below command for available packages
sudo yum --showduplicates list monit | expand
It shows up only one available package
Available Packages
monit.x86_64 5.14-1.el6
Are there any other option apart from manually downloading the tar using wget command and then installing it.
There used to be an RPM on the rpmforge/repoforge repos although these are presently down.
I believe these might resurface (based on this https://github.com/repoforge/rpms/issues/375) but in the mean time unless you want to build your own RPM for it you could grab this from a mirror.
Such as:
yum install https://www.insaneworks.co.jp/pub/el6/RPMS/x86_64/monit-5.20.0-1.el6.x86_64.rpm

installing yum from scratch on centos after mistakenly erarsing the python on a whole from centos 6.7

Mistakenly I deleted the python, which in result also corrupted the yum, now i cant install yum as it has many dependencies. Can anyone of you help me in getting the yum fiasco fixed?
You will have to install all dependencies packages one bye one on your server through RPM. There is no other way to get this fix.

Install only dblink module from postgresql-contrib package in centOS

I would like to install only the dblink module from postgresql-contrib package. I use the command as below
zypper install postgres-contrib
But it installs everything. Is there a way to install a specific module.
There is no reasonable way to install just a part of an RPM package. Is there any specific reason to do so? The contrib package isn't that large and the modules aren't used unless you want to use them.

How do I install upstart on CentOS 5.9?

YUM doesn't have upstart. I installed the package under NPM, but I don't think that's what I want. I know there's a package for apt-get, but CentOS doesn't have apt-get (at least, not by default).
So... pretty newbie question, I know, but how do I install under CentOS 5.9?
If you've got software that's in Debian package manager (apt-get) format, and you want to install it on a Linux that uses RPM (yum) format ...
... your best bet is to install something like RPMForge:
http://everyday-tech.com/apt-get-on-centos/