You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2020/06/17 22:41:51 UTC

[couchdb-documentation] branch improve-install created (now e2c018d)

This is an automated email from the ASF dual-hosted git repository.

wohali pushed a change to branch improve-install
in repository https://gitbox.apache.org/repos/asf/couchdb-documentation.git.


      at e2c018d  Improve binary installation procedure

This branch includes the following new commits:

     new e2c018d  Improve binary installation procedure

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[couchdb-documentation] 01/01: Improve binary installation procedure

Posted by wo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch improve-install
in repository https://gitbox.apache.org/repos/asf/couchdb-documentation.git

commit e2c018dda1f28fa6027262913d72d93c965edc5f
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Wed Jun 17 18:40:58 2020 -0400

    Improve binary installation procedure
    
    * `tee -a` could leave behind old info in debian apt files, remove -a
    * added RH8
---
 src/install/unix.rst | 19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

diff --git a/src/install/unix.rst b/src/install/unix.rst
index 620b91a..64a0333 100644
--- a/src/install/unix.rst
+++ b/src/install/unix.rst
@@ -61,31 +61,31 @@ Enabling the Apache CouchDB package repository
 
     $ sudo apt-get install -y apt-transport-https gnupg ca-certificates
     $ echo "deb https://apache.bintray.com/couchdb-deb stretch main" \
-        | sudo tee -a /etc/apt/sources.list.d/couchdb.list
+        | sudo tee /etc/apt/sources.list.d/couchdb.list
 
 **Debian 10 (buster)**: Run the following commands::
 
     $ sudo apt-get install -y gnupg ca-certificates
     $ echo "deb https://apache.bintray.com/couchdb-deb buster main" \
-        | sudo tee -a /etc/apt/sources.list.d/couchdb.list
+        | sudo tee /etc/apt/sources.list.d/couchdb.list
 
 **Ubuntu 16.04 (Xenial)**: Run the following commands::
 
     $ sudo apt-get install -y apt-transport-https gnupg ca-certificates
     $ echo "deb https://apache.bintray.com/couchdb-deb xenial main" \
-        | sudo tee -a /etc/apt/sources.list.d/couchdb.list
+        | sudo tee /etc/apt/sources.list.d/couchdb.list
 
 **Ubuntu 18.04 (Bionic)**: Run the following commands::
 
     $ sudo apt-get install -y gnupg ca-certificates
     $ echo "deb https://apache.bintray.com/couchdb-deb bionic main" \
-        | sudo tee -a /etc/apt/sources.list.d/couchdb.list
+        | sudo tee /etc/apt/sources.list.d/couchdb.list
 
 **Ubuntu 20.04 (Focal)**: Run the following commands::
 
     $ sudo apt-get install -y gnupg ca-certificates
     $ echo "deb https://apache.bintray.com/couchdb-deb focal main" \
-        | sudo tee -a /etc/apt/sources.list.d/couchdb.list
+        | sudo tee /etc/apt/sources.list.d/couchdb.list
 
 .. highlight:: ini
 
@@ -116,6 +116,15 @@ Enabling the Apache CouchDB package repository
     repo_gpgcheck=0
     enabled=1
 
+**RedHat 8**: Place the following text into ``/etc/yum.repos.d/bintray-apache-couchdb-rpm.repo``::
+
+    [bintray--apache-couchdb-rpm]
+    name=bintray--apache-couchdb-rpm
+    baseurl=http://apache.bintray.com/couchdb-rpm/el8/$basearch/
+    gpgcheck=0
+    repo_gpgcheck=0
+    enabled=1
+
 Installing the Apache CouchDB packages
 --------------------------------------