Error installing mongodb on armv71 ubuntu board - linux

I try installing mongodb with the following commands:
sudo apt update
sudo apt upgrade
sudo apt install mongodb
However I get the following error:
Package mongodb is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'mongodb' has no installation candidate
I want to install this on a Linux dev board which has an armv71 cpu, how would I fix it.

Related

Missing dependency installing mongodb in openSUSE linux

How can I install MongoDB in openSUSE tumbleweed I have tried
sudo zypper install mongodb
and I get the following output:
Problem: nothing provides 'libboost_program_options.so.1.76.0()(64bit)' needed by the to be installed mongodb-server-3.6.8-4.46.x86_64
while I already have the following packages installed:
libboost_program_options-devel
libboost_program_options1_79_0
libboost_program_options1_79_0-devel
Anyone with solutions to this?

Why do i get this error when running "sudo apt install -y mongodb" in terminal

I am trying to install mongodb on my pop os linux.
I ran this:
sudo apt install -y mongodb
Then it said this:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package mongodb is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'mongodb' has no installation candidate
How do i fix it? Is there a way to?
Assuming you're using Ubuntu you'll have to enable the universe repo.

Installing mysql cluster on Ubuntu

Mysql supposedly provides an APT repository for installing mysql cluster
https://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/#repo-qg-apt-cluster-install
My understanding is that in order to use this repository I need to install the mysql-apt-config package, which I have done:
sudo dpkg -i mysql-apt-config_0.8.4-1_all.deb
However when I try to run the command:
sudo apt-get install mysql-cluster-community-server
I get this error:
E: Unable to locate package mysql-cluster-community-server
Any ideas why I get this?
Also, has anyone else installed mysql cluster using any other methods that you can recommend?

Unable to install postgresql on oracle linux with yum

When i try to install the package it says package is already installed, But when i try to install then it says that no package is available.
Downloads $ sudo rpm -i pgdg-oraclelinux91-9.1-7.noarch.rpm
package pgdg-oraclelinux91-9.1-7.noarch is already installed
Downloads $ sudo yum -y install postgresql91 postgresql91-contrib postgresql91-devel postgresql91-libs postgresql91-plperl postgresql91-plpython postgresql91-pltcl postgresql91-docs postgresql91-server
Loaded plugins: langpacks, ulninfo
Repository google-chrome is listed more than once in the configuration
No package postgresql91 available.
No package postgresql91-contrib available.
No package postgresql91-devel available.
No package postgresql91-libs available.
No package postgresql91-plperl available.
No package postgresql91-plpython available.
No package postgresql91-pltcl available.
No package postgresql91-docs available.
No package postgresql91-server available.
Error: Nothing to do
Thanks in Advance.
Use yum list postgresql91\* to find this package first and then use full name to install a package
I have facing same issue when downloading postgres in linux.
As i have followed some step from surfing some site.
I have download repository RPM first and its downloaded successfully.
then after in next step i have run below command
yum install postgresql10-server postgresql10
then getting below error
No package postgresql10-server available.
No package postgresql10 available.
in resolution of that i have run yum list command. and you can find out list of available software where postgres also mentioned so used specific name of postgres in command like
sudo yum install postgresql-server.x86_64
And it is working fine.

NodeJS install error on CentOs 6.3

I had Node.js installed on my server. Yesterday, I deleted it with yum erase nodejs and now I'm trying to install the new Node.js. I've tried yum install nodejs-compat-symlinks npm but it ends with the error:
Running rpm_check_debug
Running Transaction Test
Transaction Check Error:
file /usr/bin/node conflicts between
attempted installs of nodejs-compat-symlinks-1-1.el6.noarch and
nodejs-0.10.5-3.el6.x86_64
file /usr/include/node conflicts between
attempted installs of nodejs-compat-symlinks-1-1.el6.noarch and
nodejs-devel-0.10.5-3.el6.x86_64
How I may install Node.js on server now?
P.S. I installed Node.js with this manual:
wget
http://patches.fedorapeople.org/oldnode/repocfg/el/nodejs-stable-release.noarch.rpm
yum localinstall --nogpgcheck nodejs-stable-release.noarch.rpm
Edit /etc/yum.repos.d/nodejs-stable.repo. Comment out the mirrorlist
and use for [nodejs-stable] the baseurl:
baseurl=http://patches.fedorapeople.org/oldnode/stable/el$releasever/$basearch/
and for [nodejs-stable-source] also comment out the mirrorlist and use
for [nodejs-stable-source] the baseurl:
baseurl=http://patches.fedorapeople.org/oldnode/stable/el$releasever/SRPMS/
It looks like you have a conflicting package that you didn't erase with Node when you ran yum erase nodejs. nodejs-devel-0.10.5-3.el6.x86_64 is a completely separate package.
http://pkgs.org/centos-6-rhel-6/epel-testing-x86_64/nodejs-0.10.9-1.el6.x86_64.rpm.html
http://pkgs.org/centos-6-rhel-6/epel-testing-x86_64/nodejs-devel-0.10.9-1.el6.x86_64.rpm.html
Try running yum erase nodejs-devel, and then try to yum install nodejs-compat-symlinks npm again.

Resources