← Back to team overview

graphite-dev team mailing list archive

Re: [Question #260408]: Vagrant VM is up, but there is no response on https://localhost:8443

 

Question #260408 on Graphite changed:
https://answers.launchpad.net/graphite/+question/260408

    Status: Needs information => Open

A I gave more information on the question:
I am following instructions from -
http://graphite.readthedocs.org/en/latest/install-synthesize.html

The Vagrant file is below. This is the default vagrant file that is
checked in to the graphite-web git repository.

# -*- mode: ruby -*-
# vi: set ft=ruby :

$requirements = <<-eos
#! /bin/bash
sudo apt-get update
sudo apt-get install -y python-pip git-core build-essential python-dev libffi-dev libcairo2-dev libldap2-dev libsasl2-dev libxml2-dev pkg-config libpango1.0-dev librrd-dev
sudo pip install -r /vagrant/requirements.txt
sudo pip install Sphinx sphinx-rtd-theme django-tagging cairocffi pytz pyparsing python-ldap python-rrdtool
eos

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "ubuntu/trusty64"
  config.vm.network "forwarded_port", guest: 2003, host: 2003
  config.vm.network "forwarded_port", guest: 2004, host: 2004
  config.vm.network "forwarded_port", guest: 7002, host: 7002
  config.vm.network "forwarded_port", guest: 8080, host: 8080
  config.vm.provision "shell", inline: $requirements
end

-- 
You received this question notification because you are a member of
graphite-dev, which is an answer contact for Graphite.