I tried to install redmine in VM today, and I got some trouble in this work.
How to install redmine….
1st, install virtual box and vagrant using dmg file.( for osx )
https://www.virtualbox.org/wiki/Downloads
https://www.vagrantup.com/downloads.html
2nd official document says procedure is very simple just type following command.
iwatobipen$ mkdir redminetest iwatobipen$ cd redminetest iwatobipen$ vagrant init ubuntu/trusty64 iwatobipen$ vagrant up --provider virtualbox
But I got error. This is because “/opt/vagrant/embedded/bin/curl” does not work.
So. solution of the error is simple, just remove /opt/vagrant/embedded/bin/curl.
sudo rm /opt/vagrant/embedded/bin/curl
Then, try again.
iwatobipen$ rm Vagrantfile iwatobipen$ vagrant init ubuntu/trusty64 iwatobipen$ vagrant up --provider virtualbox iwatobipen$ vagrant ssh
In the vm, install redmine.
vagrant@vagrant-ubuntu-trusty-64:~$ wget https://bitnami.com/redirect/to/131162/bitnami-redmine-3.3.1-0-linux-x64-installer.run vagrant@vagrant-ubuntu-trusty-64:~$ chmod 755 bitnami-redmine-3.3.1-0-linux-x64-installer.run vagrant@vagrant-ubuntu-trusty-64:~$ sudo ./bitnami-redmine-3.3.1-0-linux-x64-installer.run .....
It works! ;-)