{"id":1239,"date":"2020-08-07T14:47:36","date_gmt":"2020-08-07T19:47:36","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1239"},"modified":"2020-08-07T14:47:36","modified_gmt":"2020-08-07T19:47:36","slug":"how-to-install-soplanning-on-debian-9","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/","title":{"rendered":"How to Install SOPlanning on Debian 9"},"content":{"rendered":"<div id=\"linux-705920214\" 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 article, we will show you how to install SOPlanning on a\u00a0Debian 9 server.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-1246\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/install-set-up-soplanning-organization-platform-on-debian-9-server.jpg\" alt=\"\" width=\"120\" height=\"120\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/install-set-up-soplanning-organization-platform-on-debian-9-server.jpg 120w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/install-set-up-soplanning-organization-platform-on-debian-9-server-60x60.jpg 60w\" sizes=\"(max-width: 120px) 100vw, 120px\" \/>SOPlanning is an open-source and free-to-use online planning tool that is designed to organize tasks and projects easily and efficiently. SOPlanning provides users with many features, such as built-in PDF export, email notifications, .XLS or .CSV export, synchronization with Google Calendar and Outlook, and lots more.<\/p>\n<p>Since SOPlanning is an open source software, we can make modifications, change colors, customize the company logo etc. This application is commonly used in IT Project Management, Industrial Production, Material Reservation, Online booking systems and more.<\/p>\n<p><!--more--><\/p>\n<h2>1. Log in via SSH on the Debian server<\/h2>\n<p>Log in via SSH to your server as user root (or user with sudo privileges)<\/p>\n<pre>ssh root@Server_IP_Address -p Port_Number<\/pre>\n<p>Do not forget to replace the <code>Server_IP_Address<\/code>\u00a0and <code>Port_Number<\/code>\u00a0fields with your actual server IP address and SSH port number. The default port for SSH is 22, so try that first if you don&#8217;t know yours.\u00a0Also, if you want to connect with a user that has root privileges, simply change the &#8216;root&#8217; user with the user that you would like to use.<\/p>\n<h2>2. Update all Packages<\/h2>\n<p>The first thing to do when you are logged in is to make sure that all the installed packages are up to date:<\/p>\n<pre>sudo apt update\r\nsudo apt upgrade<\/pre>\n<p>That shouldn&#8217;t take too long, and it&#8217;ll ensure that everything is secure and ready.<\/p>\n<h2>3. Install LAMP Server<\/h2>\n<p>A LAMP setup is required in order for SOPlanning to work. If you don&#8217;t already have a LAMP (Apache, MySQL (or MariaDB) and PHP) server installed on your server or VPS, you can install it with the next few steps. To install Apache and MariaDB, you can execute the following command to install both at the same time:<\/p>\n<pre>sudo apt-get install apache2 mariadb-server -y<\/pre>\n<p>Once the installation is complete, you will need to add the Ondrej PHP repository to your system so that you can install the required PHP version. We need a third-party repository since the PHP version that we need isn&#8217;t included in the built-in repositories:<\/p>\n<pre>sudo apt install ca-certificates apt-transport-https \r\nwget -q https:\/\/packages.sury.org\/php\/apt.gpg -O- | sudo apt-key add -\r\necho \"deb https:\/\/packages.sury.org\/php\/ stretch main\" | sudo tee \/etc\/apt\/sources.list.d\/php.list<\/pre>\n<p>The latest version of PHP for this application is PHP version 7.3. To install this version of PHP with all of the necessary modules, run the following commands:<\/p>\n<pre>sudo apt update<\/pre>\n<pre>sudo apt-get install php7.3 php7.3-mysql php7.3-curl php7.3-json php7.3-cgi php7.3-recode php7.3-intl libapache2-mod-php7.3 php7.3-xmlrpc php7.3-gd php7.3-mbstring php7.3 php7.3-common php7.3-xmlrpc php7.3-soap php7.3-xml php7.3-intl php7.3-cli php7.3-ldap php7.3-zip php7.3-readline php7.3-imap php7.3-tidy -y<\/pre>\n<p>After all packages are installed, run the Apache and MariaDB services and allow them to start on boot with the commands:<\/p>\n<pre>sudo systemctl start apache2\r\nsudo systemctl enable apache2\r\nsudo systemctl start mariadb\r\nsudo systemctl enable mariadb<\/pre>\n<h2>4. Create a Database<\/h2>\n<p>To create a database, you need to log in to the MySQL console:<\/p>\n<pre>mysql -u root -p<\/pre>\n<p>By using the following query, you can create a database. We chose the name <code>soplanning<\/code>, but you can name it however you want:<\/p>\n<pre>CREATE DATABASE soplanning;<\/pre>\n<p>You then need to add a separate user that will be able to interact with your &#8216;soplanning&#8217; database with the query:<\/p>\n<pre>GRANT ALL PRIVILEGES ON soplanning.* TO 'soplanning'@'localhost' IDENTIFIED BY '5tr0ng_PaS5w0rD';<\/pre>\n<p>Please do not forget to change the &#8216;<code>5tr0ng_PaS5w0rD<\/code>&#8216; with an actual strong password.<\/p>\n<p>To apply the privileges that you set, you need to run this command:<\/p>\n<pre>FLUSH PRIVILEGES;<\/pre>\n<p>After we finish, we can exit from the MySQL session with the command:<\/p>\n<pre>quit<\/pre>\n<h2>5. Install SOPlanning<\/h2>\n<p>First, download the latest stable version of SOPlanning in the <code>\/opt<\/code> directory on the server and extract it in the <code>\/var\/www\/html\/<\/code> directory:<\/p>\n<pre>cd \/opt\r\nwget https:\/\/sourceforge.net\/projects\/soplanning\/files\/soplanning\/v1.44\/soplanning-1-44.zip\r\nunzip soplanning-1-44.zip -d \/var\/www\/html\/<\/pre>\n<p>Next, you need to set the appropriate ownership and file permissions (in this example it&#8217;ll be <code>www-data<\/code> because you are using the Apache web server) to the files:<\/p>\n<pre>sudo chown -R www-data: \/var\/www\/html\/soplanning\/<\/pre>\n<h2>6. Configure the Apache Web Server<\/h2>\n<p>In this step, you will set up a new virtual host on the web server in order for Apache to be able to serve the SOPlanning directory. To do this, you need to create a new configuration file using your preferred text editor:<\/p>\n<pre>sudo nano \/etc\/apache2\/sites-available\/soplanning.conf<\/pre>\n<p>Now add and modify the following lines:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\n\r\n   ServerName your_domain.com\r\n   ServerAdmin admin@your_domain.com\r\n   DocumentRoot \/var\/www\/html\/soplanning\/\r\n\r\n     &lt;Directory \/var\/www\/html\/soplanning\/&gt;\r\n       AllowOverride All\r\n       Order allow,deny\r\n       allow from all\r\n     &lt;\/Directory&gt;\r\n\r\n    ErrorLog \/var\/log\/apache2\/soplanning_error.log\r\n    CustomLog \/var\/log\/apache2\/soplanning_custom.log combined\r\n\r\n&lt;\/VirtualHost&gt;<\/pre>\n<p>Do not forget to change all mentions of\u00a0<code>your_domain.com<\/code> with your actual domain name. Save and exit.<\/p>\n<p>Enable the Apache SOPlanning configuration by executing this command:<\/p>\n<pre>sudo a2ensite soplanning.conf<\/pre>\n<p>To disable the Apache default configuration, run this command next:<\/p>\n<pre>sudo a2dissite 000-default<\/pre>\n<p>Also, make sure that the <code>mod_rewrite<\/code> Apache module is enabled:<\/p>\n<pre>sudo a2enmod rewrite<\/pre>\n<p>Once you make all the changes above, you need to restart the Apache web server:<\/p>\n<pre>systemctl restart apache2<\/pre>\n<h2>6. Access SOPlanning<\/h2>\n<p>You can now open your favorite web browser and enter the domain you added as <code>your_domain.com<\/code> in the above configuration file.<\/p>\n<p><code>http:\/\/your_domain.com\/<\/code><\/p>\n<p>You should be able to see the SOPlanning Installation Assistant page.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1240\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/soplanning_01.png\" alt=\"\" width=\"626\" height=\"430\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/soplanning_01.png 626w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/soplanning_01-300x206.png 300w\" sizes=\"(max-width: 626px) 100vw, 626px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Enter the information about the database that we created in step 4 of this article.<\/p>\n<pre>Mysql server: localhost\r\n\r\nDatabase name: soplanning\r\n\r\nMysql login: soplanning<\/pre>\n<p>Once the installation is complete, you can click on &#8216;Click here&#8217; button and you will be redirected to a login page where you will be able to log in as an administrator user by using &#8216;admin&#8217; for both username and password.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1241\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/SOPlanning-login.png\" alt=\"\" width=\"632\" height=\"266\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/SOPlanning-login.png 632w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/SOPlanning-login-300x126.png 300w\" sizes=\"(max-width: 632px) 100vw, 632px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Congratulations, the installation is now complete and you should be able to see the SoPlanning dashboard as shown in the following screen:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1242\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/soplanning_03.png\" alt=\"\" width=\"993\" height=\"438\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/soplanning_03.png 993w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/soplanning_03-300x132.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/soplanning_03-768x339.png 768w\" sizes=\"(max-width: 993px) 100vw, 993px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>It is recommended to change the password for the username &#8216;admin&#8217; and use a strong password. You can do that from the SOPlanning dashboard by modifying your admin profile.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1243\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/SOPlanning-change-admin-password.png\" alt=\"\" width=\"608\" height=\"594\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/SOPlanning-change-admin-password.png 608w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/SOPlanning-change-admin-password-300x293.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/SOPlanning-change-admin-password-60x60.png 60w\" sizes=\"(max-width: 608px) 100vw, 608px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Now you can continue to explore this useful application by organizing your time and your projects.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1247\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/best-soplanning-managed-support-for-debian-linux-vps-server.jpg\" alt=\"\" width=\"120\" height=\"120\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/best-soplanning-managed-support-for-debian-linux-vps-server.jpg 120w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/best-soplanning-managed-support-for-debian-linux-vps-server-60x60.jpg 60w\" sizes=\"(max-width: 120px) 100vw, 120px\" \/>Of course, you don\u2019t have to install SOPlanning on Debian 9 if you use one of our <a href=\"https:\/\/www.rosehosting.com\/linux-vps-hosting.html\" target=\"_blank\" rel=\"noopener noreferrer\">Managed Linux Support<\/a>\u00a0services, in which case you can simply ask our expert system administrators to install SOPlanning on your Debian 9 server for you, using the LAMP stack or any other web hosting stack of your choice. They can also help you with almost any other aspect of your server&#8217;s functions and maintenance. They are available 24\u00d77 and will take care of any requests immediately.<\/p>\n<p>If you liked this post on how to install SOPlanning on Debian 9, please share it with your friends on the social networks using the share shortcuts, or simply let us know how the installation went in the comments section below. Thank you.<\/p><div id=\"linux-737919122\" 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 article, we will show you how to install SOPlanning on a\u00a0Debian 9 server. SOPlanning is an open-source and free-to-use online planning tool that is designed to organize tasks and projects easily and efficiently. SOPlanning provides users with many features, such as built-in PDF export, email notifications, .XLS or .CSV export, synchronization with Google [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1245,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[28,162,161,160,159],"class_list":["post-1239","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-debian","tag-organization","tag-planning","tag-project","tag-soplanning"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install SOPlanning on Debian 9 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"In this article, we will show you how to install SOPlanning on a\u00a0Debian 9 server. SOPlanning is an open-source and free-to-use online planning tool that\" \/>\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-debian-9\/\" \/>\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 Debian 9 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"In this article, we will show you how to install SOPlanning on a\u00a0Debian 9 server. SOPlanning is an open-source and free-to-use online planning tool that\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/\" \/>\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-08-07T19:47:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/how-to-install-soplanning-on-debian-9.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=\"6 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-debian-9\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-soplanning-on-debian-9\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install SOPlanning on Debian 9\",\"datePublished\":\"2020-08-07T19:47:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-soplanning-on-debian-9\\\/\"},\"wordCount\":928,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-soplanning-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/how-to-install-soplanning-on-debian-9.jpg\",\"keywords\":[\"debian\",\"organization\",\"planning\",\"project\",\"SOPlanning\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-soplanning-on-debian-9\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-soplanning-on-debian-9\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-soplanning-on-debian-9\\\/\",\"name\":\"How to Install SOPlanning on Debian 9 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-soplanning-on-debian-9\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-soplanning-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/how-to-install-soplanning-on-debian-9.jpg\",\"datePublished\":\"2020-08-07T19:47:36+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this article, we will show you how to install SOPlanning on a\u00a0Debian 9 server. SOPlanning is an open-source and free-to-use online planning tool that\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-soplanning-on-debian-9\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-soplanning-on-debian-9\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-soplanning-on-debian-9\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/how-to-install-soplanning-on-debian-9.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/how-to-install-soplanning-on-debian-9.jpg\",\"width\":750,\"height\":410},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-soplanning-on-debian-9\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install SOPlanning on Debian 9\"}]},{\"@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 Debian 9 | LinuxHostSupport","description":"In this article, we will show you how to install SOPlanning on a\u00a0Debian 9 server. SOPlanning is an open-source and free-to-use online planning tool that","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-debian-9\/","og_locale":"en_US","og_type":"article","og_title":"How to Install SOPlanning on Debian 9 | LinuxHostSupport","og_description":"In this article, we will show you how to install SOPlanning on a\u00a0Debian 9 server. SOPlanning is an open-source and free-to-use online planning tool that","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2020-08-07T19:47:36+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/how-to-install-soplanning-on-debian-9.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":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install SOPlanning on Debian 9","datePublished":"2020-08-07T19:47:36+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/"},"wordCount":928,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/how-to-install-soplanning-on-debian-9.jpg","keywords":["debian","organization","planning","project","SOPlanning"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/","name":"How to Install SOPlanning on Debian 9 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/how-to-install-soplanning-on-debian-9.jpg","datePublished":"2020-08-07T19:47:36+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this article, we will show you how to install SOPlanning on a\u00a0Debian 9 server. SOPlanning is an open-source and free-to-use online planning tool that","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/how-to-install-soplanning-on-debian-9.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/08\/how-to-install-soplanning-on-debian-9.jpg","width":750,"height":410},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-soplanning-on-debian-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install SOPlanning on Debian 9"}]},{"@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\/1239","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=1239"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1239\/revisions"}],"predecessor-version":[{"id":1249,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1239\/revisions\/1249"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1245"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1239"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1239"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1239"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}