{"id":551,"date":"2017-05-05T12:30:16","date_gmt":"2017-05-05T12:30:16","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=551"},"modified":"2018-01-31T08:56:22","modified_gmt":"2018-01-31T14:56:22","slug":"install-thirty-bees-on-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/","title":{"rendered":"Install thirty bees on Ubuntu 16.04"},"content":{"rendered":"<p>Today we will show you how to install thirty bees on an Ubuntu 16.04 Cloud VPS using a LAMP (Linux, Apache, MariaDB, PHP) stack.<\/p>\n<p>thirty bees is an open source fork of the PrestaShop eCommerce software. Packed with more features and better speed than PrestaShop. It is fairly easy to install thirty bees on an <a href=\"https:\/\/www.linuxcloudvps.com\/ubuntu-cloud-vps.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu 16.04 Cloud VPS<\/a>. The installation process should take about 5-10 minutes if you follow the very easy steps described below.<!--more--><\/p>\n<p>At the time of writing this tutorial, thirty bees 1.0.1 is the latest stable version available and it requires:<\/p>\n<ul>\n<li>An Apache web server;<\/li>\n<li>PHP along with the mbstring, curl, zip, bcmath, xml, json, gd and mcrypt extensions;<\/li>\n<li>MySQL(version 5.5.3 or higher). You can also use MariaDB;<\/li>\n<li>An <a href=\"https:\/\/www.linuxcloudvps.com\/ubuntu-cloud-vps.html\">Ubuntu 16.04 Cloud VPS<\/a>;<\/li>\n<\/ul>\n<h2>INSTRUCTIONS:<\/h2>\n<p>First of all login to your Ubuntu 16.04 VPS via SSH as user root<\/p>\n<pre>ssh root@IP_address<\/pre>\n<p>At the very beginning, it is best to start a screen session by executing the following command<\/p>\n<pre>[root]$ screen -U -S thirtybees<\/pre>\n<p>Update the system:<\/p>\n<pre>[root]$ apt-get update &amp;&amp; apt-get -y upgrade<\/pre>\n<p>Make sure to always keep your server up to date.<\/p>\n<h3>Install and configure MariaDB 10.1<\/h3>\n<p>To add the MariaDB repository to your sources list and install the latest MariaDB server, run the following commands:<\/p>\n<pre>[root]$ apt-get install software-properties-common\r\n[root]$ apt-key adv --recv-keys --keyserver hkp:\/\/keyserver.ubuntu.com:80 0xF1656F24C74CD1D8\r\n[root]$ add-apt-repository &#039;deb [arch=amd64,i386,ppc64el] https:\/\/mirrors.evowise.com\/mariadb\/repo\/10.1\/ubuntu xenial main&#039;<\/pre>\n<p>Once the key is imported and the repository added you can install MariaDB with:<\/p>\n<pre>apt-get update &amp;&amp; apt-get -y upgrade\r\napt-get install mariadb-server<\/pre>\n<p>Next, we need to create a database for our thirty bees installation.<\/p>\n<pre>mysql -uroot -p<\/pre>\n<pre>MariaDB [(none)]&gt; CREATE DATABASE thirtybees;\r\nMariaDB [(none)]&gt; GRANT ALL PRIVILEGES ON thirtybees.* TO &#039;thirtybees&#039;@&#039;localhost&#039; IDENTIFIED BY &#039;your-password&#039;;\r\nMariaDB [(none)]&gt; FLUSH PRIVILEGES;\r\nMariaDB [(none)]&gt; \\q<\/pre>\n<p>Do not forget to replace \u2018your-password\u2019 with a strong password.<\/p>\n<h3>Install Apache2 web server<\/h3>\n<pre>[root]$ sudo apt-get install apache2<\/pre>\n<h3>Install PHP and required PHP modules<\/h3>\n<p>To install the latest stable version of PHP version 7 and all necessary modules, run:<\/p>\n<pre>[root]$ sudo apt-get install php7.0 libapache2-mod-php7.0 php7.0-mbstring php7.0-curl php7.0-zip php7.0-gd php7.0-mysql php7.0-mcrypt php7.0-bcmath php7.0-xml php7.0-json<\/pre>\n<h3>Configure Apache and download thirty bees<\/h3>\n<p>Enable the Apache2 rewrite module if it is not already done:<\/p>\n<pre>[root]$ sudo a2enmod rewrite<\/pre>\n<p>In order to activate the new configuration, restart the Apache web server using the following command:<\/p>\n<pre>[root]$ sudo service apache2 restart<\/pre>\n<p>Download and extract the latest version of thirty bees on your server:<\/p>\n<pre>[root]$ sudo cd \/opt &amp;&amp; wget https:\/\/github.com\/thirtybees\/thirtybees\/releases\/download\/1.0.1\/thirtybees-v1.0.1.zip\r\n[root]$ sudo unzip thirtybees-v1.0.1.zip -d thirtybees\r\n[root]$ sudo mv thirtybees\/ \/var\/www\/html\/thirtybees<\/pre>\n<p>All files have to be readable by the web server, so we need to set a proper ownership<\/p>\n<pre>[root]$ sudo chown www-data:www-data -R \/var\/www\/html\/thirtybees\/<\/pre>\n<p>Create a new virtual host directive in Apache. For example, create a new Apache configuration file named \u2018thirtybees.conf\u2019 on your virtual server:<\/p>\n<pre>[root]$ sudo touch \/etc\/apache2\/sites-available\/thirtybees.conf\r\n[root]$ sudo ln -s \/etc\/apache2\/sites-available\/thirtybees.conf \/etc\/apache2\/sites-enabled\/thirtybees.conf\r\n[root]$ sudo nano \/etc\/apache2\/sites-available\/thirtybees.conf<\/pre>\n<p>Then, add the following lines:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\nServerAdmin admin@yourdomain.com\r\nDocumentRoot \/var\/www\/html\/thirtybees\/\r\nServerName your-domain.com\r\nServerAlias www.your-domain.com\r\n&lt;Directory \/var\/www\/html\/thirtybees\/&gt;\r\nOptions FollowSymLinks\r\nAllowOverride All\r\nOrder allow,deny\r\nallow from all\r\n&lt;\/Directory&gt;\r\nErrorLog \/var\/log\/apache2\/your-domain.com-error_log\r\nCustomLog \/var\/log\/apache2\/your-domain.com-access_log common\r\n&lt;\/VirtualHost&gt;\r\n<\/pre>\n<p>Restart the Apache web server for the changes to take effect:<\/p>\n<pre>[root]$ sudo service apache2 restart<\/pre>\n<p>Open your favorite web browser, navigate to http:\/\/your-domain.com\/install and if you configured everything correctly the thirty bees installer should be starting. You should follow the easy instructions on the install screen inserting the necessary information as requested.<\/p>\n<p>That is it. The thirty bees installation is now complete.<\/p>\n<p>Of course, you don\u2019t have to do any of this if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux Cloud VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to <strong>install thirty bees<\/strong> for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS<span style=\"color: #000000;\">.<\/span><\/strong><\/span> 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>Today we will show you how to install thirty bees on an Ubuntu 16.04 Cloud VPS using a LAMP (Linux, Apache, MariaDB, PHP) stack. thirty bees is an open source fork of the PrestaShop eCommerce software. Packed with more features and better speed than PrestaShop. It is fairly easy to install thirty bees on an &#8230; <a title=\"Install thirty bees on Ubuntu 16.04\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/\" aria-label=\"More on Install thirty bees on Ubuntu 16.04\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":552,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[65,132,107,47],"class_list":["post-551","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-ecommerce","tag-linuxcloudvps","tag-thirty-bees","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Install thirty bees on Ubuntu 16.04 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"Today we will show you how to install thirty bees on an Ubuntu 16.04 Cloud VPS using a LAMP (Linux, Apache, MariaDB, PHP) stack. thirty bees is an open\" \/>\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.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install thirty bees on Ubuntu 16.04 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"Today we will show you how to install thirty bees on an Ubuntu 16.04 Cloud VPS using a LAMP (Linux, Apache, MariaDB, PHP) stack. thirty bees is an open\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2017-05-05T12:30:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-01-31T14:56:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/05\/thirty-bees-ubuntu.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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.linuxcloudvps.com\\\/blog\\\/install-thirty-bees-on-ubuntu-16-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-thirty-bees-on-ubuntu-16-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"Install thirty bees on Ubuntu 16.04\",\"datePublished\":\"2017-05-05T12:30:16+00:00\",\"dateModified\":\"2018-01-31T14:56:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-thirty-bees-on-ubuntu-16-04\\\/\"},\"wordCount\":486,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-thirty-bees-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/thirty-bees-ubuntu.jpg\",\"keywords\":[\"ecommerce\",\"linuxcloudvps\",\"thirty bees\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-thirty-bees-on-ubuntu-16-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-thirty-bees-on-ubuntu-16-04\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-thirty-bees-on-ubuntu-16-04\\\/\",\"name\":\"Install thirty bees on Ubuntu 16.04 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-thirty-bees-on-ubuntu-16-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-thirty-bees-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/thirty-bees-ubuntu.jpg\",\"datePublished\":\"2017-05-05T12:30:16+00:00\",\"dateModified\":\"2018-01-31T14:56:22+00:00\",\"description\":\"Today we will show you how to install thirty bees on an Ubuntu 16.04 Cloud VPS using a LAMP (Linux, Apache, MariaDB, PHP) stack. thirty bees is an open\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-thirty-bees-on-ubuntu-16-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-thirty-bees-on-ubuntu-16-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-thirty-bees-on-ubuntu-16-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/thirty-bees-ubuntu.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2017\\\/05\\\/thirty-bees-ubuntu.jpg\",\"width\":1200,\"height\":600,\"caption\":\"thirty bees ubuntu\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-thirty-bees-on-ubuntu-16-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install thirty bees on Ubuntu 16.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"http:\\\/\\\/www.facebook.com\\\/LinuxCloudVPS\",\"https:\\\/\\\/x.com\\\/LinuxCloudVPS\",\"http:\\\/\\\/www.linkedin.com\\\/company\\\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/www.linuxcloudvps.com\\\/\"],\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install thirty bees on Ubuntu 16.04 | LinuxCloudVPS Blog","description":"Today we will show you how to install thirty bees on an Ubuntu 16.04 Cloud VPS using a LAMP (Linux, Apache, MariaDB, PHP) stack. thirty bees is an open","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.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/","og_locale":"en_US","og_type":"article","og_title":"Install thirty bees on Ubuntu 16.04 | LinuxCloudVPS Blog","og_description":"Today we will show you how to install thirty bees on an Ubuntu 16.04 Cloud VPS using a LAMP (Linux, Apache, MariaDB, PHP) stack. thirty bees is an open","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2017-05-05T12:30:16+00:00","article_modified_time":"2018-01-31T14:56:22+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/05\/thirty-bees-ubuntu.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"Install thirty bees on Ubuntu 16.04","datePublished":"2017-05-05T12:30:16+00:00","dateModified":"2018-01-31T14:56:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/"},"wordCount":486,"commentCount":3,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/05\/thirty-bees-ubuntu.jpg","keywords":["ecommerce","linuxcloudvps","thirty bees","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/","name":"Install thirty bees on Ubuntu 16.04 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/05\/thirty-bees-ubuntu.jpg","datePublished":"2017-05-05T12:30:16+00:00","dateModified":"2018-01-31T14:56:22+00:00","description":"Today we will show you how to install thirty bees on an Ubuntu 16.04 Cloud VPS using a LAMP (Linux, Apache, MariaDB, PHP) stack. thirty bees is an open","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/05\/thirty-bees-ubuntu.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2017\/05\/thirty-bees-ubuntu.jpg","width":1200,"height":600,"caption":"thirty bees ubuntu"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-thirty-bees-on-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install thirty bees on Ubuntu 16.04"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/551","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=551"}],"version-history":[{"count":1,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/551\/revisions"}],"predecessor-version":[{"id":553,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/551\/revisions\/553"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/552"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=551"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=551"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=551"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}