This is a custom islandora vagrant for the utk digital library.
The is a development environment virtual machine for Islandora 7.x-1.x.
N.B. This virtual machine should not be used in production.
- Be sure to install a version of VirtualBox that is compatible with Vagrant
Note that virtualization must be enabled in the host machine's BIOS settings.
By default the virtual machine that is built uses 4GB of RAM.
Your host machine will need to be able to support that. You can override the CPU and RAM allocation by creating ISLANDORA_VAGRANT_CPUS
and ISLANDORA_VAGRANT_MEMORY
environment variables and setting the values. For example, on an Ubuntu host you could add to ~/.bashrc
:
export ISLANDORA_VAGRANT_CPUS=4
export ISLANDORA_VAGRANT_MEMORY=4096
If you use a DNS or host file management plugin with Vagrant, you may want to set a specific hostname for the virtual machine and disable port forwarding. You can do that with the ISLANDORA_VAGRANT_HOSTNAME
and ISLANDORA_VAGRANT_FORWARD
variables. For example:
export ISLANDORA_VAGRANT_HOSTNAME="islandora.vagrant.test"
export ISLANDORA_VAGRANT_FORWARD="FALSE"
git clone https://github.com/islandora-labs/islandora_vagrant
cd islandora_vagrant
vagrant up
Note: The supplied links apply only to this local vagrant system. They could vary in other installations.
You can connect to the machine via the browser at http://localhost:8000.
To restart apache:
- systemctl restart httpd
To restart MariaDB/MySQL:
- systemctl restart mariadb
To restart tomcat:
- systemctl restart tomcat
The default Drupal login details are:
- username: admin
- password: islandora
MySQL:
- username: root
- password: islandora
- username: islandora
- password: islandora
Fedora: (Fedora Admin | Fedora Risearch | Fedora Services)
- username: fedoraAdmin
- password: fedoraAdmin
- username: fedoraAdmin
- password: fedoraAdmin
ssh, scp, rsync:
- username: vagrant
- password: vagrant
- Examples
ssh -p 2222 vagrant@localhost
orvagrant ssh
scp -P 2222 somefile.txt vagrant@localhost:/destination/path
rsync --rsh='ssh -p2222' -av somedir vagrant@localhost:/tmp
- CentOS 7.x (current)
- Drupal 7.xx
- MariaDB
- Apache 2.4.x
- Tomcat 7.x
- Solr 4.2.0
- Fedora 3.8.1
- GSearch HEAD
- PHP 5.6 (from ext. remi repo)
- Java 8 (Oracle)
- FITS 1.1.1
- drush 8.x (current in Redhat/CentOS)
This project was inspired by Islandora's islandora_vagrant which was inspired by Ryerson University Library's Islandora Chef, which was inspired by University of Toronto Libraries' LibraryChef. So, many thanks to Graham Stewart, and MJ Suhonos.