Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove facebook HipHop (hhvm) Ubuntu and debug it

I have installed hhvm by using the building and installing hhvm in Ubuntu 13.10 from GitHub and now I want to uninstall it from my system completely. I am not getting any documentation regarding this.

I am uninstalling because I am not able to make a server using:

hhvm -m server -p 8080` nor ` hhvm -m server -vServer.Type=fastcgi -vServer.Port=8080

It is giving error like

WARNING: Logging before InitGoogleLogging() is written to STDERR E0321 17:09:56.491703 13532 fastcgi-session.cpp:562] FastCGI protocol: received an invalid record

like image 432
Ankit Ladhania Avatar asked Mar 21 '14 11:03

Ankit Ladhania


1 Answers

Run

sudo /usr/share/hhvm/uninstall_fastcgi.sh

the run

sudo apt-get remove hhvm 

then restart your server(nginx/apache)

like image 117
wheeei Avatar answered Nov 06 '22 14:11

wheeei