i am unable to install couch DB in my ubuntu 18.04
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgO9GURib1T8z7lCwjOGLQaGtrueEthgQ8LO42ZX8cOfTqDK4jvDDpKkLFwf2J49kYCMNW7d4ABih_XCb_2UXdq5fPJDkoyg7-8g_YfRUot-XnaXkNYycsNp7lA5_TW9td0FFpLQ2APzKcZ/s1600/1.jpg)
![Creative The name of the picture](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYQ0N5W1qAOxLP7t7iOM6O6AzbZnkXUy16s7P_CWfOb5UbTQY_aDsc727chyphenhyphen5W4IppVNernMMQeaUFTB_rFzAd95_CDt-tnwN-nBx6JyUp2duGjPaL5-VgNO41AVsA_vu30EJcipdDG409/s400/Clash+Royale+CLAN+TAG%2523URR8PPP.png)
up vote
3
down vote
favorite
i am following the steps from this link to install couch DB in my system having ubuntu 18.04,but it says that release file is missing. steps work perfectly for my ubuntu 16.04
In https://apache.bintray.com/couchdb-deb/dists/ there is no dist for Ubuntu 18.04 LTS (Bionic Beaver). any help will be appreciated.
Thanks :)
apt apache2 18.04 couchdb
add a comment |Â
up vote
3
down vote
favorite
i am following the steps from this link to install couch DB in my system having ubuntu 18.04,but it says that release file is missing. steps work perfectly for my ubuntu 16.04
In https://apache.bintray.com/couchdb-deb/dists/ there is no dist for Ubuntu 18.04 LTS (Bionic Beaver). any help will be appreciated.
Thanks :)
apt apache2 18.04 couchdb
This works now! Just not in the docs over at docs.couchdb.org/en/2.1.2/install/unix.html yet. Happy days.
â tomDread
Jul 31 at 14:47
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
i am following the steps from this link to install couch DB in my system having ubuntu 18.04,but it says that release file is missing. steps work perfectly for my ubuntu 16.04
In https://apache.bintray.com/couchdb-deb/dists/ there is no dist for Ubuntu 18.04 LTS (Bionic Beaver). any help will be appreciated.
Thanks :)
apt apache2 18.04 couchdb
i am following the steps from this link to install couch DB in my system having ubuntu 18.04,but it says that release file is missing. steps work perfectly for my ubuntu 16.04
In https://apache.bintray.com/couchdb-deb/dists/ there is no dist for Ubuntu 18.04 LTS (Bionic Beaver). any help will be appreciated.
Thanks :)
apt apache2 18.04 couchdb
asked May 4 at 5:29
xExplorer
464
464
This works now! Just not in the docs over at docs.couchdb.org/en/2.1.2/install/unix.html yet. Happy days.
â tomDread
Jul 31 at 14:47
add a comment |Â
This works now! Just not in the docs over at docs.couchdb.org/en/2.1.2/install/unix.html yet. Happy days.
â tomDread
Jul 31 at 14:47
This works now! Just not in the docs over at docs.couchdb.org/en/2.1.2/install/unix.html yet. Happy days.
â tomDread
Jul 31 at 14:47
This works now! Just not in the docs over at docs.couchdb.org/en/2.1.2/install/unix.html yet. Happy days.
â tomDread
Jul 31 at 14:47
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
2
down vote
This doesn't exactly answer your question, but a simple option is to run couchDB in a docker container, and not as an installation. To do this simply install docker (here's a question about how to do that), then once that is up and running run this command:
sudo docker run -d -p 5984:5984 --name couchdb apache/couchdb:1.7.1
and an instance of couchdb will be running in a docker container. Go to http://127.0.0.1:5984/_utils/ to verify that its up.
add a comment |Â
up vote
1
down vote
The couchdb team isn't building a binary package for Ubuntu 18.04 (Bionic Beaver) yet.
You can track the issue on github in order to get notified when the couchdb team makes progress on this:
https://github.com/apache/couchdb/issues/1314
If you have to run 18.04, then the only straightforward option is to build your own package from source. Not a huge deal, but a fair number of dependencies, so not a trivial deal either.
http://docs.couchdb.org/en/2.1.1/install/unix.html#installation-from-source
Update
Support for bionic beaver has been added to the build process:
https://github.com/apache/couchdb/pull/1347
Docs aren't updated yet, but you should be able to use bionic
in place of distribution
(see the docs) and be all set.
http://docs.couchdb.org/en/latest/install/unix.html#installation-using-the-apache-couchdb-convenience-binary-packages
Sorry for getting your hopes up. Bionic was/is showing up in the couchdb deb repo. However if you follow the linked github ticket you will see that the actual packages aren't ready yet. They were added to the build process but there is an "administrative holdup" blocking release. So it seems the couchdb repo got updated before the packages were ready. i.imgur.com/vgIasvR.png
â mattpr
Jul 4 at 21:34
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
This doesn't exactly answer your question, but a simple option is to run couchDB in a docker container, and not as an installation. To do this simply install docker (here's a question about how to do that), then once that is up and running run this command:
sudo docker run -d -p 5984:5984 --name couchdb apache/couchdb:1.7.1
and an instance of couchdb will be running in a docker container. Go to http://127.0.0.1:5984/_utils/ to verify that its up.
add a comment |Â
up vote
2
down vote
This doesn't exactly answer your question, but a simple option is to run couchDB in a docker container, and not as an installation. To do this simply install docker (here's a question about how to do that), then once that is up and running run this command:
sudo docker run -d -p 5984:5984 --name couchdb apache/couchdb:1.7.1
and an instance of couchdb will be running in a docker container. Go to http://127.0.0.1:5984/_utils/ to verify that its up.
add a comment |Â
up vote
2
down vote
up vote
2
down vote
This doesn't exactly answer your question, but a simple option is to run couchDB in a docker container, and not as an installation. To do this simply install docker (here's a question about how to do that), then once that is up and running run this command:
sudo docker run -d -p 5984:5984 --name couchdb apache/couchdb:1.7.1
and an instance of couchdb will be running in a docker container. Go to http://127.0.0.1:5984/_utils/ to verify that its up.
This doesn't exactly answer your question, but a simple option is to run couchDB in a docker container, and not as an installation. To do this simply install docker (here's a question about how to do that), then once that is up and running run this command:
sudo docker run -d -p 5984:5984 --name couchdb apache/couchdb:1.7.1
and an instance of couchdb will be running in a docker container. Go to http://127.0.0.1:5984/_utils/ to verify that its up.
edited May 17 at 11:47
answered May 17 at 11:40
viktor.hansson
212
212
add a comment |Â
add a comment |Â
up vote
1
down vote
The couchdb team isn't building a binary package for Ubuntu 18.04 (Bionic Beaver) yet.
You can track the issue on github in order to get notified when the couchdb team makes progress on this:
https://github.com/apache/couchdb/issues/1314
If you have to run 18.04, then the only straightforward option is to build your own package from source. Not a huge deal, but a fair number of dependencies, so not a trivial deal either.
http://docs.couchdb.org/en/2.1.1/install/unix.html#installation-from-source
Update
Support for bionic beaver has been added to the build process:
https://github.com/apache/couchdb/pull/1347
Docs aren't updated yet, but you should be able to use bionic
in place of distribution
(see the docs) and be all set.
http://docs.couchdb.org/en/latest/install/unix.html#installation-using-the-apache-couchdb-convenience-binary-packages
Sorry for getting your hopes up. Bionic was/is showing up in the couchdb deb repo. However if you follow the linked github ticket you will see that the actual packages aren't ready yet. They were added to the build process but there is an "administrative holdup" blocking release. So it seems the couchdb repo got updated before the packages were ready. i.imgur.com/vgIasvR.png
â mattpr
Jul 4 at 21:34
add a comment |Â
up vote
1
down vote
The couchdb team isn't building a binary package for Ubuntu 18.04 (Bionic Beaver) yet.
You can track the issue on github in order to get notified when the couchdb team makes progress on this:
https://github.com/apache/couchdb/issues/1314
If you have to run 18.04, then the only straightforward option is to build your own package from source. Not a huge deal, but a fair number of dependencies, so not a trivial deal either.
http://docs.couchdb.org/en/2.1.1/install/unix.html#installation-from-source
Update
Support for bionic beaver has been added to the build process:
https://github.com/apache/couchdb/pull/1347
Docs aren't updated yet, but you should be able to use bionic
in place of distribution
(see the docs) and be all set.
http://docs.couchdb.org/en/latest/install/unix.html#installation-using-the-apache-couchdb-convenience-binary-packages
Sorry for getting your hopes up. Bionic was/is showing up in the couchdb deb repo. However if you follow the linked github ticket you will see that the actual packages aren't ready yet. They were added to the build process but there is an "administrative holdup" blocking release. So it seems the couchdb repo got updated before the packages were ready. i.imgur.com/vgIasvR.png
â mattpr
Jul 4 at 21:34
add a comment |Â
up vote
1
down vote
up vote
1
down vote
The couchdb team isn't building a binary package for Ubuntu 18.04 (Bionic Beaver) yet.
You can track the issue on github in order to get notified when the couchdb team makes progress on this:
https://github.com/apache/couchdb/issues/1314
If you have to run 18.04, then the only straightforward option is to build your own package from source. Not a huge deal, but a fair number of dependencies, so not a trivial deal either.
http://docs.couchdb.org/en/2.1.1/install/unix.html#installation-from-source
Update
Support for bionic beaver has been added to the build process:
https://github.com/apache/couchdb/pull/1347
Docs aren't updated yet, but you should be able to use bionic
in place of distribution
(see the docs) and be all set.
http://docs.couchdb.org/en/latest/install/unix.html#installation-using-the-apache-couchdb-convenience-binary-packages
The couchdb team isn't building a binary package for Ubuntu 18.04 (Bionic Beaver) yet.
You can track the issue on github in order to get notified when the couchdb team makes progress on this:
https://github.com/apache/couchdb/issues/1314
If you have to run 18.04, then the only straightforward option is to build your own package from source. Not a huge deal, but a fair number of dependencies, so not a trivial deal either.
http://docs.couchdb.org/en/2.1.1/install/unix.html#installation-from-source
Update
Support for bionic beaver has been added to the build process:
https://github.com/apache/couchdb/pull/1347
Docs aren't updated yet, but you should be able to use bionic
in place of distribution
(see the docs) and be all set.
http://docs.couchdb.org/en/latest/install/unix.html#installation-using-the-apache-couchdb-convenience-binary-packages
edited May 29 at 12:36
answered May 19 at 17:10
![](https://i.stack.imgur.com/YlS1U.png?s=32&g=1)
![](https://i.stack.imgur.com/YlS1U.png?s=32&g=1)
mattpr
1412
1412
Sorry for getting your hopes up. Bionic was/is showing up in the couchdb deb repo. However if you follow the linked github ticket you will see that the actual packages aren't ready yet. They were added to the build process but there is an "administrative holdup" blocking release. So it seems the couchdb repo got updated before the packages were ready. i.imgur.com/vgIasvR.png
â mattpr
Jul 4 at 21:34
add a comment |Â
Sorry for getting your hopes up. Bionic was/is showing up in the couchdb deb repo. However if you follow the linked github ticket you will see that the actual packages aren't ready yet. They were added to the build process but there is an "administrative holdup" blocking release. So it seems the couchdb repo got updated before the packages were ready. i.imgur.com/vgIasvR.png
â mattpr
Jul 4 at 21:34
Sorry for getting your hopes up. Bionic was/is showing up in the couchdb deb repo. However if you follow the linked github ticket you will see that the actual packages aren't ready yet. They were added to the build process but there is an "administrative holdup" blocking release. So it seems the couchdb repo got updated before the packages were ready. i.imgur.com/vgIasvR.png
â mattpr
Jul 4 at 21:34
Sorry for getting your hopes up. Bionic was/is showing up in the couchdb deb repo. However if you follow the linked github ticket you will see that the actual packages aren't ready yet. They were added to the build process but there is an "administrative holdup" blocking release. So it seems the couchdb repo got updated before the packages were ready. i.imgur.com/vgIasvR.png
â mattpr
Jul 4 at 21:34
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1031833%2fi-am-unable-to-install-couch-db-in-my-ubuntu-18-04%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
This works now! Just not in the docs over at docs.couchdb.org/en/2.1.2/install/unix.html yet. Happy days.
â tomDread
Jul 31 at 14:47