{"id":1257,"date":"2020-05-20T13:04:50","date_gmt":"2020-05-20T18:04:50","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1257"},"modified":"2020-05-20T13:04:50","modified_gmt":"2020-05-20T18:04:50","slug":"how-to-install-dolphin-on-an-ubuntu-18-04-vps","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/","title":{"rendered":"How to Install Dolphin on an Ubuntu 18.04 VPS"},"content":{"rendered":"<p>In this guide, we will show you <strong>how to install Boonex\u00a0Dolphin 7 on an <a title=\"Ubuntu VPS\" href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu Cloud VPS<\/a><\/strong>.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-1261\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/install-setup-dolphin-social-network-interest-platform-on-ubuntu18.04-cloud-vps.jpg\" alt=\"\" width=\"130\" height=\"30\" \/>Boonex Dolphin is a popular social networking platform and web application designed for you to create easy-to-use community and social media oriented websites. With dolphin, you can create small-scale social networks, a community page, or a social club for any topic you wish. Additionally, thanks to its user friendly interface and excellent customizability all through the web interface, you won&#8217;t need to know how to program or design websites to get up and running with Dolphin. Let&#8217;s get started with the installation.<\/p>\n<p><!--more--><\/p>\n<h2>Requirements<\/h2>\n<p>At the time of this writing, the latest version of Dolphin is 7.3.0 and it requires:<\/p>\n<ul>\n<li>root access via SSH to the VPS where we plan to install Dolphin<\/li>\n<li>PHP &gt;= 5.3.0 (PHP 5.5 or later is recommended) with the following PHP extensions enabled: curl, fileinfo, ftp, GD Graphics Library version 2.0.x+ compiled with FreeType\u00a0fonts (or ImageMagick), JSON, mbstring, mysql, \u00a0openssl, xsl and zip. Also, short_open_tag option in PHP should be enabled and open_basedir\u00a0should not have any value.<\/li>\n<li>Apache Web Server &gt;= 2.0 compiled with mod_rewrite module<\/li>\n<li>A mail server for sending emails (Sendmail, Postfix etc.)<\/li>\n<li>MySQL &gt;= 4.1.2 or MariaDB installed on your <a href=\"https:\/\/www.linuxcloudvps.com\/\">Linux Cloud VPS<\/a>\u00a0(MySQL 5.5 or MariaDB 5.5 or later is recommended)<\/li>\n<li>JRE 1.6 or higher (some of Dolphin&#8217;s features require media streaming capabilities)<\/li>\n<li>Ability to create \u200bcron-jobs and execute files.<\/li>\n<\/ul>\n<h2>Step 1. Connect to your server<\/h2>\n<p>To connect to the server via SSH as the root user, use the following command:<\/p>\n<pre>ssh root@IP_ADDRESS -p PORT_NUMBER<\/pre>\n<p>Make sure to replace &#8220;<span style=\"color: #ff0000;\">IP_ADDRESS<\/span>&#8221; and &#8220;<span style=\"color: #ff0000;\">PORT_NUMBER<\/span>&#8221; with the actual server IP address and SSH port number. If you need a different user from root to log in, make sure the account has sudo privileges.<\/p>\n<h2>Step 2. Update OS packages<\/h2>\n<p>Before we can start with the Dolphin installation, we have to make sure that all Ubuntu OS packages installed on the server are up to date. We can do this by running the following commands:<\/p>\n<pre>sudo apt-get update\r\nsudo apt-get upgrade<\/pre>\n<p>Once that&#8217;s done, we can move on to the next step.<\/p>\n<h2>Step 3. Install Apache web server<\/h2>\n<p>Check whether Apache is already installed and running on your server:<\/p>\n<pre>ps aux | grep apache2<\/pre>\n<p>We can also check if there are Apache2 packages installed on the server:<\/p>\n<pre>dpkg -l | grep apache2<\/pre>\n<p>If Apache is already installed on the server, we can skip the Apache installation steps and proceed with JAVA, ImageMagick and PHP\u00a0installation.<\/p>\n<p>If Apache is not installed, we can install it using:<\/p>\n<pre>apt-get install apache2<\/pre>\n<p>Once installed, start the Apache server and enable it to start on server boot:<\/p>\n<pre>systemctl start apache2\r\nsystemctl enable apache2<\/pre>\n<h2>Step 4. Install JRE (<strong>Java Runtime Environment)<\/strong> and ImageMagick<\/h2>\n<p>Install Java Runtime Environment:<\/p>\n<pre>apt-get install openjdk-8-jre<\/pre>\n<p>Check if it is installed:<\/p>\n<pre>java -version<\/pre>\n<p>The output should be similar to this one:<\/p>\n<pre>openjdk version &quot;1.8.0_191&quot;\r\nOpenJDK Runtime Environment (build 1.8.0_191-8u191-b12-0ubuntu0.18.04.1-b12)\r\nOpenJDK 64-Bit Server VM (build 25.191-b12, mixed mode)\r\n<\/pre>\n<h2>Step 4.1. Install ImageMagick<\/h2>\n<p>Install ImageMagick using the following command:<\/p>\n<pre>apt-get install imagemagick<\/pre>\n<h2>Step 5. Install PHP<\/h2>\n<p>Install PHP 7.2 and all of the required PHP modules and other dependencies with the following command:<\/p>\n<pre>sudo apt-get install php7.2 php7.2-common libapache2-mod-php7.2 \\\r\n    php-imagick php7.2-curl php7.2-gd php7.2-mysql php7.2-dev \\\r\n    php7.2-imap php7.2-intl php7.2-json php7.2-mbstring \\\r\n    php7.2-xml php7.2-sqlite3 php7.2-zip php7.2-xmlrpc \\\r\n    php-pear php-apcu openssl\r\n<\/pre>\n<h2>Step 6. Install PHP mcrypt<\/h2>\n<p>Install the PHP mcrypt module on the server using <code>pecl<\/code> channel:<\/p>\n<pre>sudo apt install php-dev libmcrypt-dev\r\nsudo pecl channel-update pecl.php.net\r\nsudo pecl install mcrypt-1.0.1<\/pre>\n<h2>Step 7. Install MariaDB and Create a New Database<\/h2>\n<p>We will use MariaDB as our choice of database engine. We can install MariaDB server from the Ubuntu base repository using the following commands:<\/p>\n<pre>sudo apt-get update\r\nsudo apt-get install mariadb-server-10.1 mariadb-server-core-10.1<\/pre>\n<p>Once the MariaDB installation is complete, run the following commands to start the MariaDB service and enable it to run on server boot:<\/p>\n<pre>sudo systemctl start mariadb\r\nsudo systemctl enable mariadb<\/pre>\n<p>Log in to the MariaDB server as the root user, create a new database and assign a MariaDB user with privileges for accessing and modifying the newly created Dolphin database:<\/p>\n<pre>mysql -u root -p\r\nmysql&gt; CREATE DATABASE dolphindb;\r\nmysql&gt; GRANT ALL PRIVILEGES ON dolphindb.* TO &#039;dolphinuser&#039;@&#039;localhost&#039; IDENTIFIED BY &#039;sTr0ng-Pa55w0rd&#039; WITH GRANT OPTION;\r\nmysql&gt; FLUSH PRIVILEGES;\r\nmysql&gt; quit<\/pre>\n<p><strong>NOTE:\u00a0<\/strong>Do not forget to replace \u2018<span style=\"color: #ff0000;\">sTr0ng-Pa55w0rd<\/span>\u2019 with a strong password (we recommend a combination of letters and numbers and at least 10 characters long).<\/p>\n<h2>Step 8. Create an Apache Virtual Host<\/h2>\n<p>In order to access the Dolphin instance with a domain name, we need to create a virtual host. For example, create a new Apache configuration file named &#8216;<code>dolphin.conf<\/code>&#8216; on the Cloud VPS:<\/p>\n<pre>vi \/etc\/apache2\/sites-available\/dolphin.conf<\/pre>\n<p>Add the following lines:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\n    ServerAdmin admin@yourdomain.com\r\n    DocumentRoot \/var\/www\/dolphin\/\r\n    ServerName yourdomain.com\r\n    ServerAlias www.yourdomain.com\r\n    &lt;Directory \/var\/www\/dolphin\/&gt;\r\n        Options FollowSymLinks\r\n        AllowOverride All\r\n        Require all granted\r\n    &lt;\/Directory&gt;\r\n    ErrorLog \/var\/log\/apache2\/yourdomain.com-error_log\r\n    CustomLog \/var\/log\/apache2\/yourdomain.com-access_log common\r\n&lt;\/VirtualHost&gt;<\/pre>\n<p><strong>IMPORTANT:<\/strong>\u00a0Do not forget to replace &#8216;<span style=\"color: #ff0000;\">yourdomain.com<\/span>&#8216; with your actual domain name.<\/p>\n<p>Save the file and enable the Apache configuration that we created for Dolphin:<\/p>\n<pre>sudo a2ensite dolphin.conf<\/pre>\n<p>We can also disable the default Apache virtual host file if needed:<\/p>\n<pre>a2dissite 000-default.conf<\/pre>\n<p>Restart the Apache web server for the changes to take effect:<\/p>\n<pre>systemctl restart apache2<\/pre>\n<h2>Step 9. Configure PHP<\/h2>\n<p>Locate the PHP configuration file:<\/p>\n<pre>php --ini | grep Loaded<\/pre>\n<p>The output should be something like this:<\/p>\n<pre>Loaded Configuration File:         \/etc\/php\/7.2\/cli\/php.ini<\/pre>\n<p>Edit the <code>php.ini<\/code> configuration file:<\/p>\n<pre>vi \/etc\/php\/7.2\/cli\/php.ini<\/pre>\n<p>Add\/modify the following options:<\/p>\n<pre>memory_limit = 128M \r\nfile_uploads = On\t\r\nallow_url_fopen = On\r\nallow_url_include = Off\r\nupload_max_filesize = 256M\r\nshort_open_tag = On\t\r\nmax_execution_time = 360\r\ndefault_charset = &quot;UTF-8&quot;\r\nextension=mcrypt.so<\/pre>\n<p>Make sure that &#8216;<code>exec<\/code>&#8216; PHP function is allowed (i.e. it is not listed in disable_functions) and &#8216;<code>open_basedir<\/code>&#8216; is not set:<\/p>\n<pre>#php -i | grep -i disable_functions\r\ndisable_functions =&gt; no value =&gt; no value\r\n#php -i | grep -i open_basedir\r\nopen_basedir =&gt; no value =&gt; no value<\/pre>\n<p>Once again, restart the Apache web server for the changes to take effect:<\/p>\n<pre>service apache2 restart<\/pre>\n<p>Download the latest version of Dolphin available at &#8216;https:\/\/github.com\/boonex\/dolphin.pro&#8217; in the <code>\/opt<\/code> directory on the server and extract it using the following commands:<\/p>\n<pre>cd \/opt\r\nwget https:\/\/github.com\/boonex\/dolphin.pro\/archive\/master.zip\r\nunzip master.zip<\/pre>\n<p>Move the unpacked Dolphin files in the document root directory of your website:<\/p>\n<pre>mv dolphin.pro-master \/var\/www\/dolphin<\/pre>\n<p>Set the proper file permissions so the web server user can write in certain files and directories of the Dolphin instance:<\/p>\n<pre>chown www-data:www-data -R \/var\/www\/dolphin<\/pre>\n<p>Also, run the following command to make the &#8216;<code>ffmpeg.exe<\/code>&#8216; file executable:<\/p>\n<pre>chmod 755 \/var\/www\/dolphin\/flash\/modules\/global\/app\/ffmpeg.exe<\/pre>\n<p>Open <span style=\"color: #ff0000;\">http:\/\/yourdomain.com\/<\/span> in\u00a0your favorite web browser and follow the easy instructions: check whether file and directory permissions are set properly on the server and check the paths to website&#8217;s document root and scripts.<\/p>\n<p>On the next page, enter 3306 as database host port number, enter the database name, database user and password. On the next page, set a website title, site description, enter your email address and create a new administrator user.<\/p>\n<p>To keep your Dolphin instance secure, remove the write flag from the &#8216;<code>inc<\/code>&#8216; directory:<\/p>\n<pre>chmod -w \/var\/www\/dolphin\/inc\/<\/pre>\n<p>Also, set a new cron job for Dolphin with the following command:<\/p>\n<pre>crontab -e<\/pre>\n<p>Then add the following lines:<\/p>\n<pre>MAILTO=admin@emailaddress.com\r\n* * * * * cd \/var\/www\/dolphin\/periodic; \/usr\/bin\/php -q cron.php<\/pre>\n<p>Do not forget to change &#8216;<span style=\"color: #ff0000;\">admin@emailaddress.com<\/span>&#8216; with your actual email address, save the file and restart the cron service for the changes to take effect:<\/p>\n<pre>service cron restart<\/pre>\n<p>After finishing the installation, it is recommended to delete all files and sub-directories from the install directory located in\u00a0the document root of the Dolphin instance as a security precaution, so run the following command:<\/p>\n<pre>rm -rf \/var\/www\/dolphin\/install\/<\/pre>\n<p>That is everything! We successfully installed Dolphin on an Ubuntu 18.04 Cloud VPS. We can now proceed to the admin panel and configure Dolphin, install additional modules etc.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1258\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/dolphin-back-end-1.png\" alt=\"\" width=\"1604\" height=\"656\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/dolphin-back-end-1.png 1604w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/dolphin-back-end-1-470x192.png 470w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/dolphin-back-end-1-970x397.png 970w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/dolphin-back-end-1-768x314.png 768w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/dolphin-back-end-1-1536x628.png 1536w\" sizes=\"(max-width: 1604px) 100vw, 1604px\" \/><\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1262\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/managed-support-dolphin-and-ubuntu18.04-expert-help-included-cloud-vps.jpg\" alt=\"\" width=\"130\" height=\"30\" \/>Of course, you don\u2019t have to install and configure Boonex Dolphin on Ubuntu 18.04\u00a0if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">Ubuntu Linux Cloud VPS Hosting<\/a>\u00a0solutions, in which case you can simply ask our expert Linux admins to set up and configure Boonex Dolphin on Ubuntu 18.04 for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><strong>PS<\/strong>. If you liked this post on <strong>how to install Boonex Dolphin on an Ubuntu 18.04 VPS<\/strong>, 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 guide, we will show you how to install Boonex\u00a0Dolphin 7 on an Ubuntu Cloud VPS. Boonex Dolphin is a popular social networking platform and web application designed for you to create easy-to-use community and social media oriented websites. With dolphin, you can create small-scale social networks, a community page, or a social club &#8230; <a title=\"How to Install Dolphin on an Ubuntu 18.04 VPS\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/\" aria-label=\"More on How to Install Dolphin on an Ubuntu 18.04 VPS\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1260,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[178,177,47],"class_list":["post-1257","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-boonex","tag-dolphin","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Dolphin on an Ubuntu 18.04 VPS | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this guide, we will show you how to install Boonex\u00a0Dolphin 7 on an Ubuntu Cloud VPS. Boonex Dolphin is a popular social networking platform and web\" \/>\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\/how-to-install-dolphin-on-an-ubuntu-18-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 Dolphin on an Ubuntu 18.04 VPS | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this guide, we will show you how to install Boonex\u00a0Dolphin 7 on an Ubuntu Cloud VPS. Boonex Dolphin is a popular social networking platform and web\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/\" \/>\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=\"2020-05-20T18:04:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/how-to-install-dolphin-on-ubuntu18.04-vps.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"360\" \/>\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=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Dolphin on an Ubuntu 18.04 VPS\",\"datePublished\":\"2020-05-20T18:04:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\\\/\"},\"wordCount\":1117,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/how-to-install-dolphin-on-ubuntu18.04-vps.jpg\",\"keywords\":[\"boonex\",\"dolphin\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\\\/\",\"name\":\"How to Install Dolphin on an Ubuntu 18.04 VPS | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/how-to-install-dolphin-on-ubuntu18.04-vps.jpg\",\"datePublished\":\"2020-05-20T18:04:50+00:00\",\"description\":\"In this guide, we will show you how to install Boonex\u00a0Dolphin 7 on an Ubuntu Cloud VPS. Boonex Dolphin is a popular social networking platform and web\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/how-to-install-dolphin-on-ubuntu18.04-vps.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/how-to-install-dolphin-on-ubuntu18.04-vps.jpg\",\"width\":750,\"height\":360},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Dolphin on an Ubuntu 18.04 VPS\"}]},{\"@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":"How to Install Dolphin on an Ubuntu 18.04 VPS | LinuxCloudVPS Blog","description":"In this guide, we will show you how to install Boonex\u00a0Dolphin 7 on an Ubuntu Cloud VPS. Boonex Dolphin is a popular social networking platform and web","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\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Dolphin on an Ubuntu 18.04 VPS | LinuxCloudVPS Blog","og_description":"In this guide, we will show you how to install Boonex\u00a0Dolphin 7 on an Ubuntu Cloud VPS. Boonex Dolphin is a popular social networking platform and web","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2020-05-20T18:04:50+00:00","og_image":[{"width":750,"height":360,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/how-to-install-dolphin-on-ubuntu18.04-vps.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":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Dolphin on an Ubuntu 18.04 VPS","datePublished":"2020-05-20T18:04:50+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/"},"wordCount":1117,"commentCount":0,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/how-to-install-dolphin-on-ubuntu18.04-vps.jpg","keywords":["boonex","dolphin","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/","name":"How to Install Dolphin on an Ubuntu 18.04 VPS | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/how-to-install-dolphin-on-ubuntu18.04-vps.jpg","datePublished":"2020-05-20T18:04:50+00:00","description":"In this guide, we will show you how to install Boonex\u00a0Dolphin 7 on an Ubuntu Cloud VPS. Boonex Dolphin is a popular social networking platform and web","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/how-to-install-dolphin-on-ubuntu18.04-vps.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2020\/05\/how-to-install-dolphin-on-ubuntu18.04-vps.jpg","width":750,"height":360},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-dolphin-on-an-ubuntu-18-04-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Dolphin on an Ubuntu 18.04 VPS"}]},{"@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\/1257","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=1257"}],"version-history":[{"count":3,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1257\/revisions"}],"predecessor-version":[{"id":1265,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1257\/revisions\/1265"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1260"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1257"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1257"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1257"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}