http://www.tecmint.com/install-hhvm-and-nginx-apache-with-mariadb-on-debian-ubuntu
HHVM stands for HipHop Virtual Machine, is an open source virtual machine created for running Hack (it’s a programming language for HHVM) and PHP written applications. HHVM uses a last minute compilation path to achieve remarkable performance while keeping the flexibility that PHP programmers are addicted to. Till date, HHVM has achieved over a 9x increase in http request throughput and more than 5x cut in memory utilization (when running on low system memory) for Facebook compared with the PHP engine + APC (Alternative PHP Cache).
HHVM can also be used along with a FastCGI-based web-server like Nginx or Apache.
In this tutorial we shall look at steps for setting up Nginx/Apache web server, MariaDB database server andHHVM. For this setup, we will use Ubuntu 15.04 (64-bit) as HHVM runs on 64-bit system only, although Debian and Linux Mint distributions are also supported.
Step 1: Installing Nginx and Apache Web Server
1. First do a system upgrade to update repository list with the help of following commands.
2. As I said HHVM can be used with both Nginx and Apache web server. So, it’s your choice which web server you will going to use, but here we will show you both web servers installation and how to use them with HHVM.
Installing Nginx
In this step, we will install Nginx/Apache web server from the packages repository using following command.
Installing Apache
At this point, you should be able to navigate to following URL and you will able to see Nginx or Apache default page.
Nginx Default Page
Apache Default Page
Step 2: Install and Configure MariaDB
3. In this step, we will install MariaDB, as it providers better performance as compared to MySQL.
4. After MariaDB successful installation, you can start MariaDB and set root password to secure the database:
Answer the following questions by typing
y
or n
and press enter. Make sure you read the instructions carefully before answering the questions.
5. After setting root password for MariaDB, you can connect to MariaDB prompt with the new root password.
Step 3: Installation of HHVM
6. At this stage we shall install and configure HHVM. You need to add the HHVM repository to your
sources.list
file and then you have to update your repository list using following series of commands.
Important: Don’t forget to replace DISTRIBUTION_VERSION with your Ubuntu distribution version (i.e. lucid, precise, or trusty.) and also on Debian replace with jessie or wheezy. On Linux Mint installation instructions are same, but petra is the only currently supported distribution.
After adding HHVM repository, you can easily install it as shown.
Installing HHVM will start it up now, but it not configured to auto start at next system boot. To set auto start at next boot use the following command.
Step 4: Configuring Nginx/Apache to Talk to HHVM
7. Now, nginx/apache and HHVM are installed and running as independent, so we need to configure both web servers to talk to each other. The crucial part is that we have to tell nginx/apache to forward all PHP files to HHVM to execute.
If you are using Nginx, follow this instructions as explained..
By default, the nginx configuration lives under /etc/nginx/sites-available/default and these config looks in/usr/share/nginx/html for files to execute, but it don’t know what to do with PHP.
To make Nginx to talk with HHVM, we need to run the following include script that will configure nginx correctly by placing a hhvm.conf at the beginning of the nginx config as mentioned above.
This script makes the nginx to talk to any file that ends with .hh or .php and send it to HHVM via fastcgi.
Important: If you are using Apache, there isn’t any configuration is needed now.
8. Next, you need to use /usr/bin/hhvm to provide /usr/bin/php (php) by running this command below.
After all the above steps are done, you can now start HHVM and test it.
Step 5: Testing HHVM with Nginx/Apache
9. To verify that hhvm working, you need to create a hello.php file under nginx/apache document root directory.
Add the following snippet to this file.
and then navigate to the following URL and verify to see “hello world“.
If “HHVM” page appears, then it means you’re all set!
Conclusion
These steps are very easy to follow and hope your find this tutorial useful and if you get any error during installation of any packages