Skip to content

Step 3 Preparing Vagrant And VirtualBox

EklektikArtist edited this page Mar 11, 2016 · 1 revision
  1. Type cd webserver/
  2. Type vagrant up && vagrant ssh and wait for the prompt to return. Initially, this will take a long time.
  3. Type sudo nano /etc/couchdb/default.ini. This will open up a document to edit. (Alternatively, use sudo vim /etc/couchdb/default.ini if you are a vim user.)
  4. Locate the line beginning with bind_address. This should be on line 43. Alternatively, press CTRL + W, type bind_address, and press ENTER.
  5. Replace 127.0.0.1 with 0.0.0.0
  6. Exit the file with CTRL + X then press Y and ENTER when prompted to save
  7. Restart the service with sudo service couchdb restart
  8. Proceed to Step 4