<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Deploying Minemeld Using Vagrant and Virtualbox in General Topics</title>
    <link>https://live.paloaltonetworks.com/t5/general-topics/deploying-minemeld-using-vagrant-and-virtualbox/m-p/121492#M101308</link>
    <description>&lt;P&gt;Hello All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/11678"&gt;@lmori﻿&lt;/a&gt;'s great guide for doing a manual install of &lt;A href="https://live.paloaltonetworks.com/t5/MineMeld-Articles/Manually-install-MineMeld-on-Ubuntu-Server-14-04/ta-p/98454" target="_self"&gt;Minemeld on Ubuntu 14.04&lt;/A&gt;, I have taken his configurations and wrapped them in a Vagrantfile for easy foolproof deployment of Minemeld. It's a simple 3 step process:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Install latest version of Virtualbox for your OS (&lt;A href="https://www.virtualbox.org/wiki/Downloads" target="_self"&gt;Download&lt;/A&gt;)&lt;/LI&gt;
&lt;LI&gt;Install latest version of Vagrant for your OS (&lt;A href="https://www.vagrantup.com/downloads.html" target="_self"&gt;Download&lt;/A&gt;)&lt;/LI&gt;
&lt;LI&gt;From the command line of your OS, make a new project folder and prepare it for your new Vagrant box:&lt;/LI&gt;
&lt;LI&gt;
&lt;PRE&gt;mkdir Minemeld
cd Minemeld
vagrant init&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;You will find a new file called "Vagrantfile" in the directory. Open it in you favorite text editor and replace the contents with the code below:
&lt;PRE&gt;Vagrant.configure(2) do |config|
  config.vm.define "minemeld" do |minemeld|
    minemeld.vm.box = "ubuntu/trusty64"
    minemeld.vm.hostname = "minemeld"
    minemeld.vm.network "forwarded_port", guest: 443, host: 8443

    minemeld.vm.provider "virtualbox" do |vb|
      # Display the VirtualBox GUI when booting the machine
      vb.gui = false
      # Customize the amount of memory on the VM:
      vb.memory = "4096"
      # Customize the number of vCPUs on the VM:
      vb.cpus = "2"
    end

    minemeld.vm.provision "shell", inline: &amp;lt;&amp;lt;-SHELL
      sudo sh -c "wget -qO - https://minemeld-updates.panw.io/gpg.key | sudo apt-key add - "
      sudo add-apt-repository -y "deb http://minemeld-updates.panw.io/ubuntu trusty-minemeld main"
      sudo apt-get update
      sudo apt-get install -y minemeld rsyslog-minemeld rsyslog-mmnormalize
    SHELL
  end
end&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Launch your new VM! This will take some time as it must download the ubuntu image used to build this machine:
&lt;PRE&gt;vagrant up minemeld&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;You may then connect into your new Minemeld CLI:
&lt;PRE&gt;vagrant ssh minemeld&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;You can also access the web UI by going to &lt;A href="https://localhost:8443" target="_self"&gt;https://localhost:8443&lt;/A&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;NOTE: From within the Minemeld folder on the host system, you can stop the Minemeld VM by running&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;vagrant halt minemeld&lt;/PRE&gt;
&lt;P&gt;and completely remove the VM by running&lt;/P&gt;
&lt;PRE&gt;vagrant destroy minemeld&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The big advantage with Vagrant is that it eliminates a lot of the room for error and variation of environments that leads to installation issues for many users. I hope this helps more folks to try out Minemeld and begin developing use cases for it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Oct 2016 15:41:20 GMT</pubDate>
    <dc:creator>nbilal</dc:creator>
    <dc:date>2016-10-26T15:41:20Z</dc:date>
    <item>
      <title>Deploying Minemeld Using Vagrant and Virtualbox</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/deploying-minemeld-using-vagrant-and-virtualbox/m-p/121492#M101308</link>
      <description>&lt;P&gt;Hello All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/11678"&gt;@lmori﻿&lt;/a&gt;'s great guide for doing a manual install of &lt;A href="https://live.paloaltonetworks.com/t5/MineMeld-Articles/Manually-install-MineMeld-on-Ubuntu-Server-14-04/ta-p/98454" target="_self"&gt;Minemeld on Ubuntu 14.04&lt;/A&gt;, I have taken his configurations and wrapped them in a Vagrantfile for easy foolproof deployment of Minemeld. It's a simple 3 step process:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Install latest version of Virtualbox for your OS (&lt;A href="https://www.virtualbox.org/wiki/Downloads" target="_self"&gt;Download&lt;/A&gt;)&lt;/LI&gt;
&lt;LI&gt;Install latest version of Vagrant for your OS (&lt;A href="https://www.vagrantup.com/downloads.html" target="_self"&gt;Download&lt;/A&gt;)&lt;/LI&gt;
&lt;LI&gt;From the command line of your OS, make a new project folder and prepare it for your new Vagrant box:&lt;/LI&gt;
&lt;LI&gt;
&lt;PRE&gt;mkdir Minemeld
cd Minemeld
vagrant init&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;You will find a new file called "Vagrantfile" in the directory. Open it in you favorite text editor and replace the contents with the code below:
&lt;PRE&gt;Vagrant.configure(2) do |config|
  config.vm.define "minemeld" do |minemeld|
    minemeld.vm.box = "ubuntu/trusty64"
    minemeld.vm.hostname = "minemeld"
    minemeld.vm.network "forwarded_port", guest: 443, host: 8443

    minemeld.vm.provider "virtualbox" do |vb|
      # Display the VirtualBox GUI when booting the machine
      vb.gui = false
      # Customize the amount of memory on the VM:
      vb.memory = "4096"
      # Customize the number of vCPUs on the VM:
      vb.cpus = "2"
    end

    minemeld.vm.provision "shell", inline: &amp;lt;&amp;lt;-SHELL
      sudo sh -c "wget -qO - https://minemeld-updates.panw.io/gpg.key | sudo apt-key add - "
      sudo add-apt-repository -y "deb http://minemeld-updates.panw.io/ubuntu trusty-minemeld main"
      sudo apt-get update
      sudo apt-get install -y minemeld rsyslog-minemeld rsyslog-mmnormalize
    SHELL
  end
end&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;Launch your new VM! This will take some time as it must download the ubuntu image used to build this machine:
&lt;PRE&gt;vagrant up minemeld&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;You may then connect into your new Minemeld CLI:
&lt;PRE&gt;vagrant ssh minemeld&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;You can also access the web UI by going to &lt;A href="https://localhost:8443" target="_self"&gt;https://localhost:8443&lt;/A&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;NOTE: From within the Minemeld folder on the host system, you can stop the Minemeld VM by running&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;vagrant halt minemeld&lt;/PRE&gt;
&lt;P&gt;and completely remove the VM by running&lt;/P&gt;
&lt;PRE&gt;vagrant destroy minemeld&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The big advantage with Vagrant is that it eliminates a lot of the room for error and variation of environments that leads to installation issues for many users. I hope this helps more folks to try out Minemeld and begin developing use cases for it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2016 15:41:20 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/deploying-minemeld-using-vagrant-and-virtualbox/m-p/121492#M101308</guid>
      <dc:creator>nbilal</dc:creator>
      <dc:date>2016-10-26T15:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: Deploying Minemeld Using Vagrant and Virtualbox</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/deploying-minemeld-using-vagrant-and-virtualbox/m-p/212355#M101309</link>
      <description>&lt;P&gt;Hi, I wanted to try out Minemeld, but the Ubuntu install instructions did not work out of the box for me, so I'm reverting to using this Vagrant installation guide instead.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Everything completes without errors. However, upon logging in for the first time with admin /&amp;nbsp;minemeld, I get the following error (attached).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any tips?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 20:17:30 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/deploying-minemeld-using-vagrant-and-virtualbox/m-p/212355#M101309</guid>
      <dc:creator>James_Nesta</dc:creator>
      <dc:date>2018-04-30T20:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: Deploying Minemeld Using Vagrant and Virtualbox</title>
      <link>https://live.paloaltonetworks.com/t5/general-topics/deploying-minemeld-using-vagrant-and-virtualbox/m-p/213111#M101310</link>
      <description>&lt;P&gt;We just fixed a conflict in the installation mechanism, could you try installing using Ansible?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/PaloAltoNetworks/minemeld-ansible" target="_blank"&gt;https://github.com/PaloAltoNetworks/minemeld-ansible&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or wait until early next week when we will release the fix in GA.&lt;/P&gt;</description>
      <pubDate>Fri, 04 May 2018 08:31:54 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/general-topics/deploying-minemeld-using-vagrant-and-virtualbox/m-p/213111#M101310</guid>
      <dc:creator>lmori</dc:creator>
      <dc:date>2018-05-04T08:31:54Z</dc:date>
    </item>
  </channel>
</rss>

