Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi,
Just wanted to let you know that this tutorial doesn’t work with HHVM 3.0, as it is no longer packaged with a server:
“we are not packaging a webserver anymore. Please use fastcgi.” - https://github.com/facebook/hhvm/issues/1460
Hi,
When i execute stream_get_transports() , “ssl” and “tls” are not available, therefore i cannot connect to SMTP service…
Do i need to install/config anything else?
HHVM does not support that yet unfortunately: <a href=“https://github.com/facebook/hhvm/issues/1647”>https://github.com/facebook/hhvm/issues/1647</a>.
On Ubuntu 12 64-bit (standard lamp-application stack) I did all the steps importing the GPG key and adding the source list, but it still won’t install hhvm. It says it is being refered to, but can;t install because it obsolete, available from another source or something else. I did the apt-get update before install, also i tried apt-get install hhvm-fastcgi, and/or did a apt-get upgrade. For the fastcgi it says hhvm 2.3.0+ is required, which i can’t seem to install. Any ideas?
@email: This article is written for 13.10. In order to install hhvm on 12.04, you can follow this guide: <a href=“https://github.com/facebook/hhvm/wiki/Prebuilt-Packages-on-Ubuntu-12.04”>https://github.com/facebook/hhvm/wiki/Prebuilt-Packages-on-Ubuntu-12.04</a>. Make sure you delete <code>/etc/apt/sources.list.d/hhvm.list</code> first: <pre>sudo rm /etc/apt/sources.list.d/hhvm.list</pre>
@Kamal Nasser; I tried, unsuccesfully.
Seems like hhvm-fastcgi depends on hhvm, but this one isn’t provided. –force-yes didn’t seem to help either.
Any other ideas?
Note that you should be logged as root user. This will NOT work: sudo wget -O - http://dl.hhvm.com/conf/hhvm.gpg.key | apt-key add -
Use these two commands instead: sudo su wget -O - http://dl.hhvm.com/conf/hhvm.gpg.key | apt-key add -
Sorry for this lame question. I got:
Uncaught exception: HHVM no longer supports the built-in webserver as of 3.0.0. Please use your own webserver (nginx or apache) talking to HHVM over fastcgi. https://github.com/facebook/hhvm/wiki/FastCGI\n
So well… How do I use my own apache/nginx server ? Thanks :C
@edk.ceosc: Here is a link and guide you want to test or use it.
Run HHVM with fastcgi ( Read the Installation and Making it work with Apache ) http://hhvm.com/blog/1817/fastercgi-with-hhvm
Make Wordpress run on HHVM http://hhvm.com/blog/3095/getting-wordpress-running-on-hhvm
@gchumillas: Prepending the apt-key command with sudo works fine as well. I’ll update the article to include sudo commands where appropriate. Thanks!