{"id":1053,"date":"2019-10-10T09:05:12","date_gmt":"2019-10-10T14:05:12","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1053"},"modified":"2019-10-10T09:05:12","modified_gmt":"2019-10-10T14:05:12","slug":"install-yetiforce-on-debian-9","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/","title":{"rendered":"Install YetiForce on Debian 9"},"content":{"rendered":"<p>In this post, we will show you how to install YetiForce CRM on a Debian 9 VPS with MariaDB, PHP 7.2 and Apache.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-1057\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/10\/setting-up-yetiforce-crm-on-debian9-cloud-vps.jpg\" alt=\"\" width=\"140\" height=\"144\" \/>YetiForce is an open-source and innovative CRM system. It is built on top of Vtiger and has hundreds of changes that help to accomplish even the most challenging tasks in the simplest way. This guide should work on other <a title=\"Linux VPS\" href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a> systems as well but was tested and written for a <a title=\"Debian VPS Hosting\" href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noopener noreferrer\">Debian 9 Cloud VPS<\/a>.<\/p>\n<p><!--more--><\/p>\n<h2>Step 1: Install Required packages<\/h2>\n<p>Log in to your VPS via SSH as root or as a sudo user:<\/p>\n<pre>ssh userame@&lt;span style=&quot;color: #ff0000;&quot;&gt;IP_Address&lt;\/span&gt;<\/pre>\n<p>Replace <span style=\"color: #ff0000;\">IP_Address<\/span> with your server&#8217;s public IP address. Also, if your server uses a non-standard SSH port number, add &#8220;-p <span style=\"color: #ff0000;\">Port_Number<\/span>&#8221; to the end of the command, replacing <span style=\"color: #ff0000;\">Port_Number<\/span> with your server&#8217;s SSH port number. Once logged in, issue the following commands to update all installed packages to their latest available versions:<\/p>\n<pre>sudo apt-get update\r\nsudo apt-get upgrade<\/pre>\n<p>Afterwards, install the required packages using the following command:<\/p>\n<pre>sudo apt-get install unzip wget apt-transport-https lsb-release ca-certificates<\/pre>\n<h2>Step 2: Install LAMP<\/h2>\n<p>The LAMP (Linux, Apache, MySQL, PHP) stack is a combination of open source software that is typically installed on a server used for hosting dynamic websites and web applications.<\/p>\n<p>First, we will install Apache, the most widely used web server in the world. It is fast, secure, reliable, and can be easily customized depending on your needs.<\/p>\n<p>To install Apache on your Debian 9 server, type the following command:<\/p>\n<pre>sudo apt-get install apache2<\/pre>\n<p>Once the installation is complete, enable the Apache service to start automatically upon system boot:<\/p>\n<pre>sudo systemctl enable apache2<\/pre>\n<p>Next, we will install PHP and the modules needed to run YetiForce.<\/p>\n<p>YetiForce requires PHP 7.1 or higher. Run the following commands to import the repository signing key and configure the Sury PPA on your Debian 9 system:<\/p>\n<pre>sudo wget -O \/etc\/apt\/trusted.gpg.d\/php.gpg https:\/\/packages.sury.org\/php\/apt.gpg\r\necho &quot;deb https:\/\/packages.sury.org\/php\/ $(lsb_release -sc) main&quot; | sudo tee \/etc\/apt\/sources.list.d\/php.list\r\nsudo apt-get update\r\n<\/pre>\n<pre>sudo apt install php7.2 php7.2 libapache2-mod-php7.2 php7.2-common php7.2-sqlite3 php7.2-json php7.2-curl php7.2-intl php7.2-mbstring php7.2-xmlrpc php7.2-mysql php7.2-gd php7.2-xml php7.2-cli php7.2-zip php7.2-soap php7.2-imap php7.2-bcmath<\/pre>\n<p>Restart the Apache web server so that the PHP module is loaded:<\/p>\n<pre>sudo systemctl restart apache2.service<\/pre>\n<p>The last step is to install MariaDB:<\/p>\n<pre>sudo apt-get install mariadb-server<\/pre>\n<p>Enable the MariaDB service to start automatically upon system boot:<\/p>\n<pre>sudo systemctl enable mariadb<\/pre>\n<p>Once the installation is complete, it is recommended to run the following command to improve the security of your MariaDB server:<\/p>\n<pre>sudo mysql_secure_installation<\/pre>\n<p>When the program asks for your MySQL root password, just press the [Enter] key, as there is no password set by default. We suggest answering each prompt with &#8216;Y&#8217;.<\/p>\n<h2>Step 3: Download and Extract YetiForce CRM<\/h2>\n<p>Download the latest version of YetiForce from their Github repository. At the time of writing, the latest version is YetiForce version 5.1.0. It may be newer by the time you read this, so make sure to replace the download link with the latest one.<\/p>\n<pre>wget https:\/\/github.com\/YetiForceCompany\/YetiForceCRM\/releases\/download\/5.1.0\/YetiForceCRM-5.1.0-complete.zip<\/pre>\n<p>Create a directory and unzip the archive:<\/p>\n<pre>sudo mkdir -p \/var\/www\/html\/yetiforce\r\nsudo unzip YetiForceCRM-5.1.0-complete.zip -d \/var\/www\/html\/yetiforce<\/pre>\n<p>Next, set the proper ownership to the <code>yetiforce<\/code> directory with the following command:<\/p>\n<pre>chown -R www-data:www-data \/var\/www\/html\/yetiforce<\/pre>\n<h2>Step 4: Configure Apache and PHP<\/h2>\n<p>Open the php.ini configuration file with your preferred text editor and make the following changes:<\/p>\n<pre>sudo nano \/etc\/php\/7.0\/apache2\/php.ini<\/pre>\n<p>Find and modify the following values:<\/p>\n<pre>max_execution_time = 600\r\nmax_input_time = 600\r\ndefault_socket_timeout = 600\r\nmemory_limit = 1025M\r\npost_max_size = 50M\r\nupload_max_filesize = 100M\r\ndisplay_errors = Off\r\nhtml_errors = Off\r\ndisplay_startup_errors = Off\r\nmax_input_vars = 10000\r\nlog_errors = On\r\nshort_open_tag = Off \r\noutput_buffering = On<\/pre>\n<p>Next, create a new virtual host configuration file so that we can access our YetiForce application with a domain name instead of an IP address:<\/p>\n<pre>sudo nano \/etc\/apache2\/sites-available\/&lt;span style=&quot;color: #ff0000;&quot;&gt;domain-name.com&lt;\/span&gt;.conf<\/pre>\n<p>add the following content to the file:<\/p>\n<pre>&amp;lt;VirtualHost *:80&amp;gt;\r\n\r\n    ServerAdmin admin@example.com\r\n    DocumentRoot \/var\/www\/html\/yetiforce\r\n    ServerName &lt;span style=&quot;color: #ff0000;&quot;&gt;domain-name.com&lt;\/span&gt;\r\n    ServerAlias www.&lt;span style=&quot;color: #ff0000;&quot;&gt;domain-name.com&lt;\/span&gt;\r\n\r\n    &amp;lt;Directory \/var\/www\/html\/yetiforce\/&amp;gt;\r\n        Options FollowSymlinks\r\n        AllowOverride All\r\n        Require all granted\r\n    &amp;lt;\/Directory&amp;gt;\r\n\r\n    ErrorLog ${APACHE_LOG_DIR}\/error.log\r\n    CustomLog ${APACHE_LOG_DIR}\/access.log combined\r\n\r\n&amp;lt;\/VirtualHost&amp;gt;<\/pre>\n<p>Of course, you will need to make sure you replace all instances of\u00a0<code>domain-name.com<\/code> with your actual domain name.<\/p>\n<p>Once you have configured the virtual host, you can enable it by executing the following commands.<\/p>\n<pre>sudo a2ensite &lt;span style=&quot;color: #ff0000;&quot;&gt;domain-name.com&lt;\/span&gt;<\/pre>\n<p>Also, make sure that the mod rewrite is enabled:<\/p>\n<pre>sudo a2enmod rewrite<\/pre>\n<p>Restart Apache for the changes to take effect:<\/p>\n<pre>sudo systemctl restart apache2.service<\/pre>\n<h2>Step 5: Create a Database<\/h2>\n<p>Log in to the MySQL console:<\/p>\n<pre>mysql -u root -p<\/pre>\n<p>Create a database and user that will be able to interact with the database:<\/p>\n<pre>CREATE DATABASE yetiforcedb;\r\nGRANT ALL PRIVILEGES ON yetiforcedb.* TO &#039;yetiforceuser&#039;@&#039;localhost&#039; IDENTIFIED BY &#039;&lt;span style=&quot;color: #ff0000;&quot;&gt;strong_password&lt;\/span&gt;&#039; WITH GRANT OPTION;\r\nquit;<\/pre>\n<p>Do not forget to change &#8216;<code>strong_password<\/code>&#8216; with an actual strong password.<\/p>\n<h2>Step 6: Install YetiForce CRM<\/h2>\n<p>Open <code>http:\/\/domain-name.com\/<\/code>in your preferred web browser &#8211; after doing so, you should see the YetiForce CRM installation wizard. Accept the license and the next page you\u2019ll need to enter the database details you created earlier and YetiForce CRM admin details.<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1054\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/10\/yetiforce.png\" alt=\"\" width=\"1111\" height=\"753\" srcset=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/10\/yetiforce.png 1111w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/10\/yetiforce-443x300.png 443w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/10\/yetiforce-768x521.png 768w, https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/10\/yetiforce-970x657.png 970w\" sizes=\"(max-width: 1111px) 100vw, 1111px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Finally, follow the installation wizard instructions and finish the installation.<\/p>\n<p>That\u2019s it. You have successfully installed YetiForce CRM on your Debian 9 VPS. For more information about how to manage your YetiForce CRM installation, please refer to the official YetiForce CRM documentation.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1058\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/10\/configuring-yetiforce-crm-help-from-managed-support-for-debian-cloud.jpg\" alt=\"\" width=\"140\" height=\"144\" \/>Of course, you won&#8217;t need to do any of this if you use one of our <a href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\">Managed Cloud VPS Hosting<\/a> services, in which case you can simply ask our expert Linux admins to set YetiForce up for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS<\/strong>.<\/span> If you liked this post, or if you found it helpful, please share it with your friends on the social networks using the share shortcuts, or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this post, we will show you how to install YetiForce CRM on a Debian 9 VPS with MariaDB, PHP 7.2 and Apache. YetiForce is an open-source and innovative CRM system. It is built on top of Vtiger and has hundreds of changes that help to accomplish even the most challenging tasks in the simplest &#8230; <a title=\"Install YetiForce on Debian 9\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/\" aria-label=\"More on Install YetiForce on Debian 9\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1056,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[13],"tags":[],"class_list":["post-1053","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.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Install YetiForce on Debian 9 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this post, we will show you how to install YetiForce CRM on a Debian 9 VPS with MariaDB, PHP 7.2 and Apache. YetiForce is an open-source and innovative\" \/>\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-yetiforce-on-debian-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install YetiForce on Debian 9 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this post, we will show you how to install YetiForce CRM on a Debian 9 VPS with MariaDB, PHP 7.2 and Apache. YetiForce is an open-source and innovative\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/\" \/>\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=\"2019-10-10T14:05:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/10\/how-to-install-yetiforce-on-debian9.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=\"6 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-yetiforce-on-debian-9\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-yetiforce-on-debian-9\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"Install YetiForce on Debian 9\",\"datePublished\":\"2019-10-10T14:05:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-yetiforce-on-debian-9\\\/\"},\"wordCount\":748,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-yetiforce-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/how-to-install-yetiforce-on-debian9.jpg\",\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-yetiforce-on-debian-9\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-yetiforce-on-debian-9\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-yetiforce-on-debian-9\\\/\",\"name\":\"Install YetiForce on Debian 9 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-yetiforce-on-debian-9\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-yetiforce-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/how-to-install-yetiforce-on-debian9.jpg\",\"datePublished\":\"2019-10-10T14:05:12+00:00\",\"description\":\"In this post, we will show you how to install YetiForce CRM on a Debian 9 VPS with MariaDB, PHP 7.2 and Apache. YetiForce is an open-source and innovative\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-yetiforce-on-debian-9\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-yetiforce-on-debian-9\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-yetiforce-on-debian-9\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/how-to-install-yetiforce-on-debian9.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/10\\\/how-to-install-yetiforce-on-debian9.jpg\",\"width\":750,\"height\":360},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/install-yetiforce-on-debian-9\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install YetiForce on Debian 9\"}]},{\"@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 YetiForce on Debian 9 | LinuxCloudVPS Blog","description":"In this post, we will show you how to install YetiForce CRM on a Debian 9 VPS with MariaDB, PHP 7.2 and Apache. YetiForce is an open-source and innovative","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-yetiforce-on-debian-9\/","og_locale":"en_US","og_type":"article","og_title":"Install YetiForce on Debian 9 | LinuxCloudVPS Blog","og_description":"In this post, we will show you how to install YetiForce CRM on a Debian 9 VPS with MariaDB, PHP 7.2 and Apache. YetiForce is an open-source and innovative","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2019-10-10T14:05:12+00:00","og_image":[{"width":750,"height":360,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/10\/how-to-install-yetiforce-on-debian9.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":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"Install YetiForce on Debian 9","datePublished":"2019-10-10T14:05:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/"},"wordCount":748,"commentCount":2,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/10\/how-to-install-yetiforce-on-debian9.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/","name":"Install YetiForce on Debian 9 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/10\/how-to-install-yetiforce-on-debian9.jpg","datePublished":"2019-10-10T14:05:12+00:00","description":"In this post, we will show you how to install YetiForce CRM on a Debian 9 VPS with MariaDB, PHP 7.2 and Apache. YetiForce is an open-source and innovative","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/10\/how-to-install-yetiforce-on-debian9.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/10\/how-to-install-yetiforce-on-debian9.jpg","width":750,"height":360},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/install-yetiforce-on-debian-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install YetiForce on Debian 9"}]},{"@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\/1053","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=1053"}],"version-history":[{"count":3,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1053\/revisions"}],"predecessor-version":[{"id":1060,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1053\/revisions\/1060"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1056"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1053"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1053"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1053"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}