nfvlabs / openmano

Openmano is an open source project that provides a practical implementation of the reference architecture for Management & Orchestration under standardization at ETSI’s NFV ISG
Apache License 2.0
180 stars 74 forks source link

Automatic installation of openmano with script 'install-openmano.sh' fails in RHEL7.1 #15

Closed gerardo-garcia closed 9 years ago

gerardo-garcia commented 9 years ago

The script for automatic installation of openmano is prepared for Ubuntu 14 and CentOS 7, while fails in RHEL7.

The problem is that the epel repo addition fails and therefore some packages cannot be installed. Specifically, the following instruction in the script fails: $ sudo yum install -y epel-release Loaded plugins: langpacks, product-id, subscription-manager No package epel-release available. Error: Nothing to do

gerardo-garcia commented 9 years ago

It can be solved by installing manually the epel repo with these instructions: wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm sudo rpm -ivh epel-release-7-5.noarch.rpm

After that, you can run again the script.