{"id":17580,"date":"2015-08-31T15:14:28","date_gmt":"2015-08-31T20:14:28","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=17580"},"modified":"2022-07-07T10:39:15","modified_gmt":"2022-07-07T15:39:15","slug":"how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/","title":{"rendered":"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS"},"content":{"rendered":"<div id=\"bsf_rt_marker\"><\/div><p><img decoding=\"async\" class=\"alignleft size-thumbnail wp-image-17589\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/08\/phpmyadmin-hhvm-150x100.png\" alt=\"phpmyadmin hhvm\" width=\"150\" height=\"100\" \/>In this tutorial we are going to provide you with step-by-step instructions on how to <strong>install\u00a0phpMyAdmin with HHVM, Nginx and MariaDB on an <a href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu 14.04 VPS<\/a><\/strong>. PhpMyAdmin is an open source application,\u00a0written in PHP, intended to handle the administration of MySQL \/ MadiaDB databases over the intuitive web interface.<\/p>\n<p><!--more--><br \/>\nMake sure your package list and the OS packages are up to date by running the following commands:<\/p>\n<pre>apt-get update \r\napt-get upgrade<\/pre>\n<p>Stop the Apache service and disable it to start on boot:<\/p>\n<pre>service apache2 stop\r\nupdate-rc.d -f apache2 remove<\/pre>\n<p><strong>Install and configure Nginx<\/strong>:<\/p>\n<pre>apt-get install python-software-properties software-properties-common\r\nadd-apt-repository ppa:nginx\/stable\r\napt-get install nginx<\/pre>\n<p>Create a new nginx server block for your website:<\/p>\n<pre>vi \/etc\/nginx\/sites-available\/your-domain.com<\/pre>\n<pre>server {\r\n  server_name your-domain.com;\r\n  listen 80;\r\n  root \/var\/www\/your-domain.com;\r\n  access_log \/var\/www\/your-domain.com\/logs\/access.log;\r\n  error_log \/var\/www\/your-domain.com\/logs\/error.log;\r\n  index index.php;\r\n  location \/ {\r\n    try_files $uri $uri\/ \/index.php?$args;\r\n  }\r\n\r\n  location ~* \\.(jpg|jpeg|gif|css|png|js|ico|html)$ {\r\n    access_log off;\r\n    expires max;\r\n  }\r\n\r\n  location ~ \/\\.ht {\r\n    deny  all;\r\n  }\r\n\r\n  location ~ \\.php$ {\r\n    fastcgi_index index.php;\r\n    fastcgi_keep_conn on;\r\n    include \/etc\/nginx\/fastcgi_params;\r\n    fastcgi_pass 127.0.0.1:9000;\r\n    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n  }\r\n}<\/pre>\n<p><strong>Install\u00a0HHVM<\/strong><br \/>\nCreate a new &#8216;hhvm.list&#8217; file and add the HHVM source to it:<\/p>\n<pre>vi \/etc\/apt\/sources.list.d\/hhvm.list<\/pre>\n<pre>deb http:\/\/dl.hhvm.com\/ubuntu trusty main<\/pre>\n<p>Then, add the HHVM key and install the hhvm package:<\/p>\n<pre>wget -O - http:\/\/dl.hhvm.com\/conf\/hhvm.gpg.key | sudo apt-key add -\r\napt-get update\r\napt-get install hhvm\r\n\/usr\/share\/hhvm\/install_fastcgi.sh<\/pre>\n<pre>vi \/etc\/hhvm\/php.ini<\/pre>\n<pre>; php options\r\n; session.save_handler = files\r\n; session.save_path = \/var\/lib\/hhvm\/sessions\r\n; session.gc_maxlifetime = 1440\r\n\r\n; hhvm specific\r\nhhvm.log.level = Warning\r\nhhvm.log.always_log_unhandled_exceptions = true\r\nhhvm.log.runtime_error_reporting_level = 8191\r\nhhvm.mysql.typed_results = false<\/pre>\n<pre>vi \/etc\/hhvm\/server.ini<\/pre>\n<pre>; php options\r\n\r\npid = \/var\/run\/hhvm\/pid\r\n\r\n; hhvm specific\r\n\r\nhhvm.server.port = 9000\r\nhhvm.server.type = fastcgi\r\nhhvm.server.default_document = index.php\r\nhhvm.log.use_log_file = true\r\nhhvm.log.file = \/var\/log\/hhvm\/error.log\r\nhhvm.repo.central.path = \/var\/run\/hhvm\/hhvm.hhbc<\/pre>\n<p><strong>Install MariaDB<\/strong>:<\/p>\n<pre>apt-get install mariadb-server<\/pre>\n<p>Run the following command:<\/p>\n<pre>mysql_secure_installation<\/pre>\n<p>Set your MariaDB &#8216;root&#8217; user password (make sure to use a strong password utilizing at least 8 characters including alphanumeric and grammatical symbols), remove anonymous user accounts, then type &#8216;N&#8217; if you like to enable root login remotely, and type &#8216;Y&#8217; on the next two questions to remove the test database and access to it and reload privilege tables.<\/p>\n<p><strong>Install phpMyAdmin<\/strong>:<\/p>\n<pre>apt-get install phpmyadmin\r\nln -sf \/usr\/share\/phpmyadmin\/ \/var\/www\/your-domain.com\/<\/pre>\n<p>In order to access phpMyAdmin over SSL, create an SSL certificate or purchase a new SSL certificate <a href=\"https:\/\/www.rosehosting.com\/ssl-certificates.html\" target=\"_blank\" rel=\"noopener noreferrer\">here<\/a>.<\/p>\n<pre>cd \/etc\/nginx\/\r\nopenssl genrsa -des3 -out server.key 1024\r\nopenssl req -new -x509 -nodes -sha1 -days 365 -key server.key -out server.crt\r\n\r\ncp server.key server.key.org\r\nopenssl rsa -in server.key.org -out server.key\r\nchmod 400 server.key<\/pre>\n<p>Then, edit the Nginx configuration and create a new nginx server block:<\/p>\n<pre>vi \/etc\/nginx\/sites-available\/your-domain.com<\/pre>\n<p>Add these lines at the end of the file:<\/p>\n<pre>server {\r\n         listen       443;\r\n    ssl on;\r\n    ssl_certificate \/etc\/nginx\/server.crt;\r\n    ssl_certificate_key \/etc\/nginx\/server.key;\r\n\r\n  server_name your-domain.com;\r\n  root \/var\/www\/your-domain.com;\r\n  access_log \/var\/www\/your-domain.com\/logs\/access.log;\r\n  error_log \/var\/www\/your-domain.com\/logs\/error.log;\r\n  index index.php;\r\n  location \/ {\r\n    try_files $uri $uri\/ \/index.php?$args;\r\n  }\r\n\r\n  location ~* \\.(jpg|jpeg|gif|css|png|js|ico|html)$ {\r\n    access_log off;\r\n    expires max;\r\n  }\r\n\r\n  location ~ \/\\.ht {\r\n    deny  all;\r\n  }\r\n\r\n  location ~ \\.php$ {\r\n    fastcgi_index index.php;\r\n    fastcgi_keep_conn on;\r\n    include \/etc\/nginx\/fastcgi_params;\r\n    fastcgi_pass 127.0.0.1:9000;\r\n    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n  }\r\n}<\/pre>\n<p>Run these commands:<\/p>\n<pre>ln -s \/etc\/nginx\/sites-available\/your-domain.com \/etc\/nginx\/sites-enabled\/your-domain.com\r\nrm \/etc\/nginx\/sites-enabled\/default\r\nmkdir -p \/var\/www\/your-domain.com\/logs\/\r\nchown www-data: -R \/var\/www\/your-domain.com\/\r\n<\/pre>\n<p>Edit the &#8216;\/usr\/share\/phpmyadmin\/libraries\/dbi\/mysqli.dbi.lib.php&#8217;, search for this line:<\/p>\n<pre>require_once '.\/libraries\/logging.lib.php';<\/pre>\n<p>and add the following line above it:<\/p>\n<pre>$GLOBALS['cfg']['Server']['port']=3306;<\/pre>\n<p>Restart HHVM, nginx and MariaDB services and configure them to start on boot:<\/p>\n<pre>service hhvm restart\r\nservice nginx restart\r\nservice mysql restart\r\n\r\nupdate-rc.d nginx defaults\r\nupdate-rc.d hhvm defaults\r\nupdate-rc.d mysql defaults<\/pre>\n<p>Open https:\/\/your-domain.com\/phpmyadmin , enter your MariaDB username and its password and start managing your MariaDB databases.<\/p>\n<p>Of course, you don&#8217;t have to do any of this if you use one of our <a title=\"Linux VPS Hosting\" href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to <strong>install\u00a0phpMyAdmin with HHVM, Nginx and MariaDB<\/strong> for you. They are available 24\u00d77 and will take care of your request immediately. Take a look at our <a href=\"https:\/\/www.rosehosting.com\/hhvm-hosting\/\">managed HHVM hosting<\/a> plans.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span>.<\/strong> If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial we are going to provide you with step-by-step instructions on how to install\u00a0phpMyAdmin with HHVM, Nginx and &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS\" class=\"read-more button\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/#more-17580\" aria-label=\"Read more about How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":17589,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1708,1702,13,1698],"tags":[893,894],"class_list":["post-17580","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-control-panels","category-databases","category-tutorials","category-ubuntu","tag-install-phpmyadmin-with-hhvm","tag-install-phpmyadmin-with-hhvm-and-nginx","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.5 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS | RoseHosting<\/title>\n<meta name=\"description\" content=\"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS | RoseHosting\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS\" \/>\n<meta property=\"og:description\" content=\"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS | RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2015-08-31T20:14:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-07T15:39:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/08\/phpmyadmin-hhvm.png\" \/>\n\t<meta property=\"og:image:width\" content=\"172\" \/>\n\t<meta property=\"og:image:height\" content=\"100\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\\\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS\",\"datePublished\":\"2015-08-31T20:14:28+00:00\",\"dateModified\":\"2022-07-07T15:39:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\\\/\"},\"wordCount\":381,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/08\\\/phpmyadmin-hhvm.png\",\"keywords\":[\"install phpMyAdmin with HHVM\",\"install phpMyAdmin with HHVM and Nginx\"],\"articleSection\":[\"Control Panels\",\"Databases\",\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\\\/\",\"name\":\"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS | RoseHosting\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/08\\\/phpmyadmin-hhvm.png\",\"datePublished\":\"2015-08-31T20:14:28+00:00\",\"dateModified\":\"2022-07-07T15:39:15+00:00\",\"description\":\"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS | RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/08\\\/phpmyadmin-hhvm.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/08\\\/phpmyadmin-hhvm.png\",\"width\":172,\"height\":100,\"caption\":\"phpmyadmin hhvm\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"name\":\"RoseHosting.com\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/03\\\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/RoseHosting\",\"https:\\\/\\\/x.com\\\/rosehosting\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/rosehosting\\\/\"],\"description\":\"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.\",\"email\":\"info@rosehosting.com\",\"telephone\":\"(314) 275-0414\",\"legalName\":\"Rose Web Services LLC\",\"foundingDate\":\"2001-04-02\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/#\\\/schema\\\/person\\\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\\\/\\\/www.rosehosting.com\",\"https:\\\/\\\/www.facebook.com\\\/rosehosting.helpdesk\"],\"url\":\"https:\\\/\\\/www.rosehosting.com\\\/blog\\\/author\\\/jwilson\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS | RoseHosting","description":"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS | RoseHosting","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS","og_description":"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS | RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2015-08-31T20:14:28+00:00","article_modified_time":"2022-07-07T15:39:15+00:00","og_image":[{"width":172,"height":100,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/08\/phpmyadmin-hhvm.png","type":"image\/png"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS","datePublished":"2015-08-31T20:14:28+00:00","dateModified":"2022-07-07T15:39:15+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/"},"wordCount":381,"commentCount":2,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/08\/phpmyadmin-hhvm.png","keywords":["install phpMyAdmin with HHVM","install phpMyAdmin with HHVM and Nginx"],"articleSection":["Control Panels","Databases","Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/","name":"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS | RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/08\/phpmyadmin-hhvm.png","datePublished":"2015-08-31T20:14:28+00:00","dateModified":"2022-07-07T15:39:15+00:00","description":"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS | RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/08\/phpmyadmin-hhvm.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2015\/08\/phpmyadmin-hhvm.png","width":172,"height":100,"caption":"phpmyadmin hhvm"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-install-phpmyadmin-with-hhvm-nginx-and-mariadb-on-an-ubuntu-14-04-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install phpMyAdmin with HHVM, Nginx and MariaDB on an Ubuntu 14.04 VPS"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting.com","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"],"description":"RoseHosting is a leading Linux hosting provider, serving thousands of clients world-wide since 2001.","email":"info@rosehosting.com","telephone":"(314) 275-0414","legalName":"Rose Web Services LLC","foundingDate":"2001-04-02","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/0985fed6af04cc60703d2ecf27c65dfa373e0ca00eb21c0b03477e099ea3f99f?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17580","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=17580"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17580\/revisions"}],"predecessor-version":[{"id":42610,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/17580\/revisions\/42610"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/17589"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=17580"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=17580"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=17580"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}