This is a guide on how to get a LORIS instance Running on your Mac computer. It is designed for installation in a sandbox environment. It has been partially tested for Mac OS X 10.9 and 10.10 for 15.04. Installing on Mac OS X El Capitan will require additional Apache setup. For best results, we recommend installing LORIS on Ubuntu or CentOS.
Before continuing to the subsequent sections ensure that the following tools are installed. Sudo permission is required. This section covers installation and recommended versions of:
- Mac OS X (tested for Mavericks - OS X 10.9 and 10.10)
- Apache2
- PHP
- PEAR
- Perl
- MySQL
Apache2 should be preinstalled on your Mac. To verify, type the following command into a terminal window:
sudo apachectl start
Navigate to http://localhost. Your browser should display the message "It works!"
PHP should be preinstalled on your Mac. To verify, type the following command into a terminal:
php -v
Ensure that your php version is 5 or higher (5.x.x). Note Loris is tested for php 5.3+
Perl should be preinstalled on your Mac. To ensure type the following command into terminal
perl -v
Check if you currently have MySQL installed:
mysql
If already installed continue to section 1.6 else continue
Download the latest DMG Archive for you current Mac setup (either 32-bit or 64-bit) from the following link [http://dev.mysql.com/downloads/mysql] (http://dev.mysql.com/downloads/mysql) and install the necessary files.
Open System Preferences on your machine and select the MySQL icon. Start the MySQL server if it hasn’t already been started. Check Automatically Start MySQL Server on Startup if you dont want to have to repeat this step everytime you resart your computer.
Access MySQL with the following
mysql -u root
If the command is not found use the following
sudo sh -c 'echo /usr/local/mysql/bin > /etc/paths.d/mysql'
Then restart terminal or open a new tab or window and start this step over.
Once in the mysql command prompt, use the following command to reset the password
SET PASSWORD FOR 'root'@'localhost' = PASSWORD('$newpwd');
$newpwd ⇾ you new desired password for the root user
Go to http://www.smarty.net/download and download the latest stable release of Smarty 3.x.x
Create the following directories if they do not already exist:
sudo mkdir /usr/local/lib/php
sudo mkdir /usr/local/lib/php/Smarty
Next, unzip the downloaded zip file and locate the libs directory. Move it into the Smarty directory (created above), and rename it to smarty3 in the process. Use the following:
sudo mv /path/to/Smarty-3.x.x/libs/ /usr/local/lib/php/Smarty/smarty3
After you have moved the directory ensure to add the path /usr/local/lib/php/Smarty
to the include_path
in the php.ini file (see section 1.3.4 part 3).
This section goes over how to obtain the LORIS code base and setup the database on your local machine.
Download the latest release from the releases page and
extract it to ~/Sites/$projectname
$projectname ⇾ “loris” or one-word project name
Run installer script to install core code, libraries, and MySQL schema (see Loris Installation Schematic). The script will prompt for information, including usernames and folders which it will create automatically.
cd ~/Sites/$projectname/tools
./install.sh
The install script may not fully execute on Mac OS systems. It is recommended to carefully review and execute manually the steps in the install.sh script on your system. A few MySQL statement examples are provided in section 2.3. Since the install script was created for LINUX OS, its apache2 setup steps won’t work. Section 3 describes how to set up the apache2 server for Mac.
Since you may not be able to fully execute the install.sh script at step 2.2, the following examples may help in manually executing the sequence of commands found in the install script.
Set up these variables in your bash shell :
mysqldb=LORIS
mysqlhost=localhost
mysqluser=lorisuser (suggested)
mysqlpass=password
mysqlrootuser=root
Keep this terminal window open to keep the variables in memory.
Then execute the following commands in your bash shell to create the Loris database and the lorisuser MySQL user. The prompt should ask for the root password. (The one entered in section 1.5.4)
echo "CREATE DATABASE $mysqldb" | mysql -h$mysqlhost --user=$mysqlrootuser -p -A
echo "GRANT UPDATE,INSERT,SELECT,DELETE ON $mysqldb.* TO '$mysqluser'@'localhost' IDENTIFIED BY '$mysqlpass' WITH GRANT OPTION" | mysql $mysqldb -h$mysqlhost --user=$mysqlrootuser -p -A
Source the database schema with the following statement in your bash shell (the terminal window used at section 1.5.4) :
mysql $mysqldb -h$mysqlhost --user=$mysqlrootuser -p -A 2>&1 < ~/Sites/$projectname/SQL/0000-00-00-schema.sql
This section goes into details regarding setting up the local Apache2 server. There are Max OS X 10.10 (Yosemite) specific instructions in section 3.1. If you are not running Yosemite step 3.1 may be be skipped.
In /etc/apache2/httpd.conf
locate the following lines and uncomment them (by removing the #
) if they are not commented out:
#LoadModule userdir_module libexec/apache2/mod_userdir.so
and
#Include /private/etc/apache2/extra/httpd-userdir.conf
At the end of your file also include the line
Include /etc/apache2/other/*.conf
Now open /etc/apache2/extra/httpd-userdir.conf
and uncomment the following line: #Include /private/etc/apache2/users/*.conf
.
Open /etc/apache2/httpd.conf
in a text editor and locate the line containing
LoadModule php5_module libexec/apache2/libphp5.so
Ensure that the line is uncommented (remove the #
at the beginning of the line)
Do the following to allow for use of MySql with Apache2, unless link already exists
sudo mkdir /var/mysql
sudo ln -s /tmp/mysql.sock /var/mysql/mysql.sock
In order for apache to know where to find the LORIS code base you have to first set up your user config file. To do so, open your user conf file using the following in the /etc/Apache2/Users/
directory:
sudo vi $username.conf
$username ⇾ your username for the computer
Once in the text editor, ensure that the file looks similar to the following:
<Directory "/Users/$username/Sites/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
NOTE FOR OSX10/Apache 2.4 users:
If the Order and Allow directives are not working then check if the module mod_access_compat is included in your apache configuration file. You can either include that module ( from usr/libexec/apache2 ) and continue to use the above configuration or include the new access control module mod_authz_host and use the following instead:
<Directory "/Users/$username/Sites/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Require all granted
</Directory>
The mod_access_compat module has been deprecated therefore it is suggested to use the new module and directives.
END OF NOTE
Restart your apache server:
sudo apachectl restart
You can now access you LORIS sandbox using the url http://localhost/~$username/loris/htdocs
To access your sandbox on another device, replace localhost
with your IP address for your machine.
The following section is a more advanced setting for you local apache server. This section is not necessary, but enables http://localhost.loris
as an url shortcut, and creates LORIS-specific apache logs for easy troubleshooting (similar to /var/log/apache2/loris-err.log
).
Open the /etc/apache2/httpd.conf
in a text editor and locate the line containing Include /private/etc/apache2/extra/httpd-vhosts.conf
Ensure that the line is uncommented (remove the #
at the beginning of the line)
Open the /etc/apache2/extra/httpd-vhosts.conf
in the text editor and add the following:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot "/Users/$username/Sites/loris/htdocs/"
ServerName localhost.loris
ErrorLog "/private/var/log/apache2/loris.com-error_log"
CustomLog "/private/var/log/apache2/loris.com-access_log" common
<Directory "/Users/$username/Sites/loris/htdocs/">
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
php_value include_path .:/usr/share/php:$pathToPear:/Users/$username/Sites/loris/project/libraries:/Users/$username/Sites/loris/php/libraries:/usr/local/lib/php/Smarty
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
ServerSignature Off
#SSLEngine Off # change to On to enable, after updating cert paths below
#SSLCertificateFile /etc/apache2/ssl/loris-cert.pem
#SSLCertificateKeyFile /etc/apache2/ssl/loris-key.pem
#SSLCACertificateFile /etc/apache2/ssl/CA-cacert.pem
</VirtualHost>
<VirtualHost *:80>
ServerName localhost
DocumentRoot /Library/WebServer/Documents/
</VirtualHost>
- $username ⇾ your username for the computer
- $pathToPear ⇾ path where PEAR installs .php files (see section 1.3.4 part 1)
Note that the default Loris setup assumes that Loris is running on localhost. If this is not the case, you'll have to manually update the URL and Host config variables in the ConfigSettings table by running the following SQL commands from a MySQL prompt:
UPDATE Config SET Value='$yourURL' WHERE ConfigID=(SELECT ID FROM ConfigSettings WHERE Name='url');
UPDATE Config SET Value='$yourHostname' WHERE ConfigID=(SELECT ID FROM ConfigSettings WHERE Name='host');
Make sure that $yourURL
above contains the "http://" or "https://" and $yourHostname
does not. If your server is only being accessed from localhost, you can skip this step.