Difference between revisions of "Honeycomb/Releases/1609/Installing binaries from packages"

From fd.io
Jump to: navigation, search
(Ubuntu 14.04 - Honeycomb Release DEB)
(Ubuntu 14.04 - Honeycomb Release DEB)
Line 35: Line 35:
 
=== Ubuntu 14.04 - Honeycomb Release DEB ===
 
=== Ubuntu 14.04 - Honeycomb Release DEB ===
  
Note: Should work on any system able to process deb package and can support VPP and also Java. Not just ubuntu trusty.
+
'''Note: Should work on any system able to process deb package and can support VPP and also Java. Not just ubuntu trusty.'''
 +
 
 +
'''Note: Honeycomb is published only to trusty repository, but it can be installed from there into any other ubuntu version that's supported by VPP.'''
  
 
* Pick Ubuntu version:
 
* Pick Ubuntu version:
 
    
 
    
 
   export UBUNTU="trusty"
 
   export UBUNTU="trusty"
 
* Pick Honeycomb version:
 
 
  export RELEASE=".stable.1609"
 
  
 
* Then run:
 
* Then run:
 
   sudo rm /etc/apt/sources.list.d/99fd.io.list
 
   sudo rm /etc/apt/sources.list.d/99fd.io.list
   echo "deb [trusted=yes] https://nexus.fd.io/content/repositories/fd.io$RELEASE.ubuntu.$UBUNTU.main/ ./" | sudo tee -a /etc/apt/sources.list.d/99fd.io.list
+
   echo "deb [trusted=yes] https://nexus.fd.io/content/repositories/fd.io.ubuntu.$UBUNTU.main/ ./" | sudo tee -a /etc/apt/sources.list.d/99fd.io.list
 
   sudo apt-get update
 
   sudo apt-get update
 
   sudo apt-get install honeycomb
 
   sudo apt-get install honeycomb

Revision as of 14:54, 21 September 2016

Centos

CentOS 7.2 - Honeycomb Release RPMs

Note: Should work on any system able to process rpm package and can support VPP and also Java

Add fd.io repo

Create a file /etc/yum.repos.d/honeycomb-release.repo with contents:

// TODO set to stable repo!

[honeycomb-release]
name=honeycomb release branch latest merge
baseurl=https://nexus.fd.io/content/repositories/fd.io.master.centos7/
enabled=1
gpgcheck=0

Install honeycomb packages

sudo yum install honeycomb

Start honeycomb

Note: This will also start vpp as necessary.

sudo service honeycomb start

Ubuntu 14.04 - Honeycomb Release DEB

Note: Should work on any system able to process deb package and can support VPP and also Java. Not just ubuntu trusty.

Note: Honeycomb is published only to trusty repository, but it can be installed from there into any other ubuntu version that's supported by VPP.

  • Pick Ubuntu version:
 export UBUNTU="trusty"
  • Then run:
 sudo rm /etc/apt/sources.list.d/99fd.io.list
 echo "deb [trusted=yes] https://nexus.fd.io/content/repositories/fd.io.ubuntu.$UBUNTU.main/ ./" | sudo tee -a /etc/apt/sources.list.d/99fd.io.list
 sudo apt-get update
 sudo apt-get install honeycomb