{"id":1103,"date":"2020-04-16T12:03:52","date_gmt":"2020-04-16T17:03:52","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1103"},"modified":"2020-04-16T12:03:52","modified_gmt":"2020-04-16T17:03:52","slug":"how-to-install-soplanning-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/","title":{"rendered":"How to Install SOPlanning on Ubuntu 18.04"},"content":{"rendered":"<div id=\"linux-1650532385\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>In this tutorial, we will show you how to install SOPlanning on an Ubuntu 18.04 server along with installing the Apache web server.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-1111\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/setup-install-soplanning-planning-tool-on-ubuntu18.04-server.jpg\" alt=\"\" width=\"120\" height=\"120\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/setup-install-soplanning-planning-tool-on-ubuntu18.04-server.jpg 120w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/setup-install-soplanning-planning-tool-on-ubuntu18.04-server-60x60.jpg 60w\" sizes=\"(max-width: 120px) 100vw, 120px\" \/>SOPlanning is a simple and open-source online planning tool designed to efficiently organize projects and tasks. It allows you to easily manage and plan your working tasks and assignments for each person of your team. This tool is very useful for any projects, small businesses, production plants, booking systems, vacation management systems, and so on. Let&#8217;s begin with the installation.<\/p>\n<p><!--more--><\/p>\n<h2>Requirements:<\/h2>\n<ul>\n<li>For the purposes of this tutorial, we will be using an Ubuntu VPS.<\/li>\n<li>You will also need a working LAMP (Linux, Apache, MySQL, PHP) stack. If you don&#8217;t have one set up already, don&#8217;t worry &#8211; we will also show you how to install your own LAMP stack as a part of this tutorial.<\/li>\n<li>Full SSH root user access &#8211; or a user with sudo privileges &#8211; is also required.<\/li>\n<\/ul>\n<h2>Step 1: Connect to Your Server<\/h2>\n<p>Before we begin, you will need to connect to your server via SSH as the root user or as any other user that has sudo privileges.<\/p>\n<p>To connect to your server as the root user, use the following command:<\/p>\n<pre>ssh root@<span style=\"color: #ff0000;\">IP_ADDRESS<\/span> -p <span style=\"color: #ff0000;\">PORT_NUMBER<\/span><\/pre>\n<p>Make sure to replace <span style=\"color: #ff0000;\">IP_ADDRESS<\/span> and <span style=\"color: #ff0000;\">PORT_NUMBER<\/span> with your actual server IP address and SSH port number.<\/p>\n<p>Once logged in, make sure that your server is up-to-date by running the following commands:<\/p>\n<pre>sudo apt update\r\nsudo apt upgrade<\/pre>\n<p>Always keep your system updated, as it maximizes compatibility and performance of your server.<\/p>\n<h2>Step 2: Install Apache<\/h2>\n<p>Apache is a fast and secure web server &#8211; in fact, it&#8217;s one of the most popular and widely used web servers in the world. Its ease of use and quick and easy setup makes it perfect for this tutorial.<\/p>\n<p>To install Apache on your Ubuntu 18.04 server, run the following command:<\/p>\n<pre>sudo apt install apache2<\/pre>\n<p>Once the installation is complete, enable the Apache service to start automatically upon system boot. You can do that with the following command:<\/p>\n<pre>sudo systemctl enable apache2<\/pre>\n<p>To verify that Apache is running, execute the following command:<\/p>\n<pre>sudo systemctl status apache2<\/pre>\n<p>Output:<\/p>\n<pre>\u25cf apache2.service - The Apache HTTP Server\r\n   Loaded: loaded (\/lib\/systemd\/system\/apache2.service; enabled; vendor preset: enabled)\r\n  Drop-In: \/lib\/systemd\/system\/apache2.service.d\r\n           \u2514\u2500apache2-systemd.conf\r\n   Active: active (running) since Fri 2019-06-21 15:04:25 CDT; 38s ago\r\n  Process: 716 ExecStart=\/usr\/sbin\/apachectl start (code=exited, status=0\/SUCCESS)\r\n Main PID: 829 (apache2)\r\n    Tasks: 6 (limit: 2321)\r\n   CGroup: \/system.slice\/apache2.service\r\n           \u251c\u2500829 \/usr\/sbin\/apache2 -k start\r\n           \u251c\u2500854 \/usr\/sbin\/apache2 -k start\r\n           \u251c\u2500855 \/usr\/sbin\/apache2 -k start\r\n           \u251c\u2500857 \/usr\/sbin\/apache2 -k start\r\n           \u251c\u2500858 \/usr\/sbin\/apache2 -k start\r\n           \u2514\u2500859 \/usr\/sbin\/apache2 -k start<\/pre>\n<p>You can also open your web browser and enter your server&#8217;s IP address, (e.g. <strong><code>http:\/\/your-ip-address<\/code><\/strong>). If Apache was successfully installed, you should see a message in your web browser saying <strong>&#8220;It works!&#8221;<\/strong>.<\/p>\n<h2>Step 3: Install MySQL<\/h2>\n<p>The next step is to install MySQL. It is one of the most popular database management systems.<\/p>\n<p>To install MySQL on your system, type the following command and enter the character &#8216;Y&#8217; when prompted:<\/p>\n<pre>sudo apt install mysql-server<\/pre>\n<p>During the installation, you will be asked to enter a password for the MySQL root user. Make sure to enter a strong password.<\/p>\n<p>To further improve the security of our MySQL installation as well as set up a password for our MySQL root user, we need to run the <strong>mysql_secure_installation<\/strong> script and follow the on-screen instructions. Run the command below to configure your system:<\/p>\n<pre>sudo mysql_secure_installation<\/pre>\n<p>If the program asks you to enter your current MySQL root password, just press your [Enter] key once, as no password is set by default when installing MySQL.<\/p>\n<p>A few more questions will be displayed on-screen &#8211; it is recommended that you answer yes to all of them by entering the character &#8216;Y&#8217;:<\/p>\n<pre>Remove anonymous users? (Press y|Y for Yes, any other key for No) : Y\r\nDisallow root login remotely? (Press y|Y for Yes, any other key for No) : Y\r\nRemove test database and access to it? (Press y|Y for Yes, any other key for No) : Y\r\nReload privilege tables now? (Press y|Y for Yes, any other key for No) : Y<\/pre>\n<p>Again, we can enable MySQL to start on boot with the following command:<\/p>\n<pre>sudo systemctl enable mysql<\/pre>\n<p>That&#8217;s it &#8211; MySQL has been installed and made more secure, and is now ready for use.<\/p>\n<h2>Step 4: Install PHP<\/h2>\n<p>The last step of our LAMP stack setup is to install PHP. Ubuntu 18.04 comes with PHP 7.2 by default.<\/p>\n<p>We will also include some additional modules in order to help PHP to connect with our Apache and MySQL servers. On top of these, we will install modules that are required by our SOPlanning application.<\/p>\n<p>To do this, type the following command:<\/p>\n<pre>sudo apt install php7.2 libapache2-mod-php7.2 php7.2-common php7.2-mysql php7.2-cli php7.2-opcache php7.2-gd php7.2-curl php7.2-cli php7.2-imap php7.2-mbstring php7.2-soap 7.2-xmlrpc php7.2-xml php7.2-zip<\/pre>\n<p>To verify that PHP 7.2 is successfully installed, run the following command:<\/p>\n<pre>php -v<\/pre>\n<p>You should get the following output on your screen:<\/p>\n<pre>PHP 7.2.10-0ubuntu0.18.04.1 (cli) (built: Sep 13 2018 13:45:02) ( NTS )\r\nCopyright (c) 1997-2018 The PHP Group\r\nZend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies\r\n    with Zend OPcache v7.2.10-0ubuntu0.18.04.1, Copyright (c) 1999-2018, by Zend Technologies\r\n<\/pre>\n<h2>Step 5: Download SOPlanning<\/h2>\n<p>We can now start with our SOPlanning setup and configuration.<\/p>\n<p>We can download the latest SOPlanning version with the following command:<\/p>\n<pre>wget https:\/\/sourceforge.net\/projects\/soplanning\/files\/latest\/download -O soplanning.zip<\/pre>\n<p>Next, to extract the file in the <code>\/var\/www<\/code> directory on your server, execute the following command:<\/p>\n<pre>sudo unzip soplanning.zip -d \/var\/www<\/pre>\n<p>The owner of the files needs to be the user of the web server running on your system. In our example, we are using the Apache web server and Apache runs under the \u201cwww-data\u201d user on Ubuntu.\u00a0 To change the owner of the files, you can then run the following command:<\/p>\n<pre>sudo chown -R www-data:www-data \/var\/www\/soplanning\/<\/pre>\n<h2>Step 6: Create the Database<\/h2>\n<p>Next, we need to create a new database. To do this, log in to your MySQL database server as the root user by typing the following command:<\/p>\n<pre>sudo mysql -u root -p<\/pre>\n<p>To create a new database and user, run the following commands on the MySQL shell:<\/p>\n<pre>CREATE DATABASE soplanning;\r\nCREATE USER soplanning@localhost IDENTIFIED BY '<span style=\"color: #ff0000;\">strong-password<\/span>';\r\nGRANT ALL PRIVILEGES ON soplanning.* TO soplanning@localhost;\r\nFLUSH PRIVILEGES;<\/pre>\n<p><strong>Note:\u00a0<\/strong>Make sure to replace\u00a0<span style=\"color: #ff0000;\">strong-password<\/span> with an actual strong password.<\/p>\n<p>To exit the MySQL database server command line, type:<\/p>\n<pre>exit<\/pre>\n<h2>Step 7: Configure Apache<\/h2>\n<p>In this step, we will show you how to create a virtual host file for Apache &#8211; this is so you can access your SOPlanning installation using your domain name.<\/p>\n<p>Create the virtual host file by executing the following command:<\/p>\n<pre>nano \/etc\/apache2\/sites-available\/soplanning.conf<\/pre>\n<p>And\u00a0enter the following information:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\n     DocumentRoot \/var\/www\/soplanning\r\n     ServerName <code>mydomain.com<\/code> ServerAlias <code>www.mydomain.com<\/code> &lt;Directory \/var\/www\/soplanning\/&gt; Options FollowSymlinks AllowOverride All Require all granted &lt;\/Directory&gt; ErrorLog ${APACHE_LOG_DIR}\/soplanning_error.log CustomLog ${APACHE_LOG_DIR}\/soplanning_access.log combined &lt;\/VirtualHost&gt;<\/pre>\n<p>Make sure to replace <code>mydomain.com<\/code>\u00a0with your actual domain name.<\/p>\n<p>To enable the new SOPlanning virtual host, run the following command:<\/p>\n<pre>sudo a2ensite soplanning.conf<\/pre>\n<p>You should see the following output:<\/p>\n<pre>Enabling site soplanning.\r\nTo activate the new configuration, you need to run:\r\nsystemctl reload apache2<\/pre>\n<p>Reload your Apache in order to activate the new configuration:<\/p>\n<pre>sudo systemctl reload apache2<\/pre>\n<h2>Step 8: Install and Access SOPlanning<\/h2>\n<p>You can now open your preferred web browser and access your SOPlanning installation at <strong><code>http:\/\/mydomain.com<\/code><\/strong> (of course, make sure to replace <code>mydomain.com<\/code> with the actual domain name you used when creating the Apache virtual server block).<\/p>\n<p>&nbsp;<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1105\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/soplanning_01.png\" alt=\"\" width=\"626\" height=\"430\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/soplanning_01.png 626w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/soplanning_01-300x206.png 300w\" sizes=\"(max-width: 626px) 100vw, 626px\" \/><\/p>\n<p>Enter your database information from <strong>Step 6\u00a0<\/strong>of the tutorial and click on the &#8216;Launch install&#8217; button.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1106\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/soplanning_02.png\" alt=\"\" width=\"626\" height=\"215\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/soplanning_02.png 626w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/soplanning_02-300x103.png 300w\" sizes=\"(max-width: 626px) 100vw, 626px\" \/><\/p>\n<p>After the installation is completed, you will be provided with the default admin login credentials and a link to your admin login page.<\/p>\n<p>Click on the link to login to your admin panel. Also, make sure to update your admin password as soon as you log in.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1107\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/soplanning_03.png\" alt=\"\" width=\"993\" height=\"438\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/soplanning_03.png 993w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/soplanning_03-300x132.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/soplanning_03-768x339.png 768w\" sizes=\"(max-width: 993px) 100vw, 993px\" \/><\/p>\n<p><strong>That\u2019s it! SOPlanning<\/strong>\u00a0has been successfully installed on your Ubuntu 18.04 server.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1113\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/best-fully-managed-support-ubuntu-server-soplanning-software-help-experts.jpg\" alt=\"\" width=\"120\" height=\"120\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/best-fully-managed-support-ubuntu-server-soplanning-software-help-experts.jpg 120w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/best-fully-managed-support-ubuntu-server-soplanning-software-help-experts-60x60.jpg 60w\" sizes=\"(max-width: 120px) 100vw, 120px\" \/>Of course, you don\u2019t have to\u00a0<strong>i<\/strong><strong>nstall SOPlanning<b>\u00a0<\/b>on Ubuntu 18.04<\/strong> if you use one of our\u00a0<a href=\"http:\/\/linuxhostsupport.com\/monthly-server-management.html\">Managed Server Support Services<\/a> with us. If you do, you can simply ask our support team to install SOPlanning on Ubuntu 18.04 for you, along with anything else that you might need. They are available 24\/7 and will be able to help you with the installation.<\/p>\n<p><strong>PS<\/strong>. If you enjoyed reading this blog post on how to install SOPlanning on Ubuntu 18.04, feel free to share it on social networks using the shortcuts below, or simply leave a comment in the comments section. Thanks.<\/p><div id=\"linux-580015886\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will show you how to install SOPlanning on an Ubuntu 18.04 server along with installing the Apache web server. SOPlanning is a simple and open-source online planning tool designed to efficiently organize projects and tasks. It allows you to easily manage and plan your working tasks and assignments for each person [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1110,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-1103","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install SOPlanning on Ubuntu 18.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"In this tutorial, we will show you how to install SOPlanning on an Ubuntu 18.04 server along with installing the Apache web server. SOPlanning is a simple\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install SOPlanning on Ubuntu 18.04 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will show you how to install SOPlanning on an Ubuntu 18.04 server along with installing the Apache web server. SOPlanning is a simple\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-16T17:03:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-soplanning-on-ubuntu18.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\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=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install SOPlanning on Ubuntu 18.04\",\"datePublished\":\"2020-04-16T17:03:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/\"},\"wordCount\":1100,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-soplanning-on-ubuntu18.04.jpg\",\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/\",\"name\":\"How to Install SOPlanning on Ubuntu 18.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-soplanning-on-ubuntu18.04.jpg\",\"datePublished\":\"2020-04-16T17:03:52+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this tutorial, we will show you how to install SOPlanning on an Ubuntu 18.04 server along with installing the Apache web server. SOPlanning is a simple\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-soplanning-on-ubuntu18.04.jpg\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-soplanning-on-ubuntu18.04.jpg\",\"width\":750,\"height\":410},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install SOPlanning on Ubuntu 18.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install SOPlanning on Ubuntu 18.04 | LinuxHostSupport","description":"In this tutorial, we will show you how to install SOPlanning on an Ubuntu 18.04 server along with installing the Apache web server. SOPlanning is a simple","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:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install SOPlanning on Ubuntu 18.04 | LinuxHostSupport","og_description":"In this tutorial, we will show you how to install SOPlanning on an Ubuntu 18.04 server along with installing the Apache web server. SOPlanning is a simple","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2020-04-16T17:03:52+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-soplanning-on-ubuntu18.04.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install SOPlanning on Ubuntu 18.04","datePublished":"2020-04-16T17:03:52+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/"},"wordCount":1100,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-soplanning-on-ubuntu18.04.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/","name":"How to Install SOPlanning on Ubuntu 18.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-soplanning-on-ubuntu18.04.jpg","datePublished":"2020-04-16T17:03:52+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this tutorial, we will show you how to install SOPlanning on an Ubuntu 18.04 server along with installing the Apache web server. SOPlanning is a simple","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-soplanning-on-ubuntu18.04.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/04\/how-to-install-soplanning-on-ubuntu18.04.jpg","width":750,"height":410},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-ubuntu-18-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install SOPlanning on Ubuntu 18.04"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1103","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=1103"}],"version-history":[{"count":5,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1103\/revisions"}],"predecessor-version":[{"id":1119,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1103\/revisions\/1119"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1110"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1103"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1103"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1103"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}