{"id":19197,"date":"2016-07-25T07:56:54","date_gmt":"2016-07-25T12:56:54","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=19197"},"modified":"2022-12-12T05:41:58","modified_gmt":"2022-12-12T11:41:58","slug":"install-yetiforce-crm-on-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/","title":{"rendered":"Install YetiForce CRM on Ubuntu 16.04"},"content":{"rendered":"
<\/div>

\"yetiforceIn this article, we will explain how to install YetiForce CRM on an Ubuntu 16.04 VPS with MariaDB, PHP-FPM and Nginx. YetiForce is an open source 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 Linux VPS<\/a> systems as well but was tested and written for an Ubuntu 16.04 VPS<\/a>.<\/p>\n

<\/p>\n

Login to your VPS via SSH with your sudo user<\/h4>\n
ssh user@vps_IP<\/pre>\n

Update the system and install necessary packages<\/h4>\n
[user]$ sudo apt-get update && sudo apt-get -y upgrade\r\n[user]$ sudo apt-get install software-properties-common nano wget<\/pre>\n

Install MariaDB 10.1<\/h4>\n

To add the MariaDB repository to your sources list and install the latest MariaDB 10.1 server, run the following commands:<\/p>\n

[user]$ sudo apt-key adv --recv-keys --keyserver hkp:\/\/keyserver.ubuntu.com:80 0xF1656F24C74CD1D8\r\n[user]$ sudo add-apt-repository 'deb [arch=amd64,i386] http:\/\/ftp.osuosl.org\/pub\/mariadb\/repo\/10.1\/ubuntu xenial main'\r\n[user]$ sudo apt-get update\r\n[user]$ sudo apt-get install -y mariadb-server<\/pre>\n

When the installation is complete, run the following command to secure your installation:<\/p>\n

[user]$ mysql_secure_installation<\/pre>\n

Next, we need to create a database for the YetiForce installation.<\/p>\n

[user]$ mysql -uroot -p<\/pre>\n
MariaDB [(none)]> CREATE DATABASE yetiforce;\r\nMariaDB [(none)]> GRANT ALL PRIVILEGES ON yetiforce.* TO 'yetiforce'@'localhost' IDENTIFIED BY 'strong_password';\r\nMariaDB [(none)]> FLUSH PRIVILEGES;\r\nMariaDB [(none)]> \\q<\/pre>\n

Install PHP and required PHP modules<\/h4>\n

To install the latest stable version of PHP version 7.0 and all necessary modules, run:<\/p>\n

[user]$ sudo apt-get -y install php-fpm php-cli php-json php-curl php-imap php-gd php-mysql php-xml php-zip<\/pre>\n

The following commands will set the PHP memory limit to 512MB, change the values of upload_max_filesize and post_max_size to 100M and set the timezone to UTC.<\/p>\n

sed -i \"s\/memory_limit = .*\/memory_limit = 512M\/\" \/etc\/php\/7.0\/cli\/php.ini\r\nsed -i \"s\/;date.timezone.*\/date.timezone = UTC\/\" \/etc\/php\/7.0\/cli\/php.ini\r\nsed -i \"s\/;cgi.fix_pathinfo=1\/cgi.fix_pathinfo=0\/\" \/etc\/php\/7.0\/fpm\/php.ini\r\nsed -i \"s\/upload_max_filesize = .*\/upload_max_filesize = 100M\/\" \/etc\/php\/7.0\/fpm\/php.ini\r\nsed -i \"s\/post_max_size = .*\/post_max_size = 100M\/\" \/etc\/php\/7.0\/fpm\/php.ini\r\n<\/pre>\n

Create a new PHP-FPM pool for your user if you already don’t have one:<\/p>\n

[user]$ sudo nano \/etc\/php\/7.0\/fpm\/pool.d\/your_user_name.conf\r\n[your_user_name]\r\nuser = your_user_name\r\ngroup = your_user_name\r\nlisten = \/var\/run\/php\/php7.0-your_user_name-fpm.sock\r\nlisten.owner = your_user_name\r\nlisten.group = your_user_name\r\nlisten.mode = 0666\r\npm = ondemand\r\npm.max_children = 5\r\npm.process_idle_timeout = 10s\r\npm.max_requests = 200\r\nchdir = \/\r\n<\/pre>\n

Do not forget to change your_user_name with your username.
\nRestart PHP-FPM:<\/p>\n

[user]$ sudo service php7.0-fpm restart<\/pre>\n

Download and extract YetiForce CRM<\/h4>\n

Download the latest version of YetiForce from GitHub: https:\/\/github.com\/YetiForceCompany\/YetiForceCRM\/releases. At the time of writing, the latest version is YetiForce version 3.1.0.<\/p>\n

[user]$ wget https:\/\/github.com\/YetiForceCompany\/YetiForceCRM\/archive\/3.1.0.zip\r\n[user]$ unzip 3.1.0.zip\r\n[user]$ mv YetiForceCRM-3.1.0 ~\/myYetiForce.com\r\n[user]$ rm -f 3.1.0.zip\r\n<\/pre>\n

Install and configure Nginx<\/h4>\n

To install the latest stable version of Nginx available on the Ubuntu repositories, run:<\/p>\n

[user]$ sudo apt-get install nginx<\/pre>\n

Generate a self signed ssl certificate:<\/p>\n

[user]$ sudo mkdir -p \/etc\/nginx\/ssl\r\n[user]$ cd \/etc\/nginx\/ssl\r\n[user]$ sudo openssl genrsa -des3 -passout pass:x -out yetiforce.pass.key 2048\r\n[user]$ sudo openssl rsa -passin pass:x -in yetiforce.pass.key -out yetiforce.key\r\n[user]$ sudo rm yetiforce.pass.key\r\n[user]$ sudo openssl req -new -key yetiforce.key -out yetiforce.csr\r\n[user]$ sudo openssl x509 -req -days 365 -in yetiforce.csr -signkey yetiforce.key -out yetiforce.crt<\/pre>\n

If you don’t want to get warnings associated with self-signed SSL Certificates, you can purchase a trusted SSL certificate<\/a>.<\/p>\n

Next, create a new Nginx server block:<\/p>\n

[user]$ sudo nano \/etc\/nginx\/sites-available\/myYetiForce.com<\/pre>\n
server {\r\n    listen 443;\r\n    server_name myYetiForce.com;\r\n    root \/home\/your_user_name\/myYetiForce.com;\r\n\r\n    location \/ {\r\n      try_files $uri $uri\/ \/index.php$is_args$args;\r\n    }\r\n\r\n    ssl on;\r\n    ssl_certificate     \/etc\/nginx\/ssl\/yetiforce.crt;\r\n    ssl_certificate_key \/etc\/nginx\/ssl\/yetiforce.key;\r\n    ssl_session_timeout 5m;\r\n    ssl_ciphers               'AES128+EECDH:AES128+EDH:!aNULL';\r\n    ssl_protocols              TLSv1 TLSv1.1 TLSv1.2;\r\n    ssl_prefer_server_ciphers on;\r\n\r\n    access_log  \/var\/log\/nginx\/yetiforce.access.log;\r\n    error_log   \/var\/log\/nginx\/yetiforce.error.log;\r\n\r\n    location ~ \\.php$ {\r\n        fastcgi_split_path_info ^(.+\\.php)(\/.+)$;\r\n        fastcgi_pass unix:\/var\/run\/php\/php7.0-your_user_name-fpm.sock;\r\n        fastcgi_index index.php;\r\n        include fastcgi_params;\r\n        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;\r\n        fastcgi_intercept_errors off;\r\n        fastcgi_buffer_size 16k;\r\n        fastcgi_buffers 4 16k;\r\n    }\r\n\r\n    location ~ \/\\.ht {\r\n        deny all;\r\n    }\r\n}\r\n\r\nserver {\r\n    listen      80;\r\n    server_name myYetiForce.com;\r\n\r\n    add_header Strict-Transport-Security max-age=2592000;\r\n    rewrite ^ https:\/\/$server_name$request_uri? permanent;\r\n}\r\n<\/pre>\n

Do not forget to change your_user_name with your username.<\/p>\n

Activate the server block by creating a symbolic link :<\/p>\n

[user]$ sudo ln -s \/etc\/nginx\/sites-available\/myYetiForce.com \/etc\/nginx\/sites-enabled\/myYetiForce.com<\/pre>\n

Test the Nginx configuration and restart nginx:<\/p>\n

[user]$ sudo nginx -t\r\n[user]$ sudo service nginx restart<\/pre>\n

Install YetiForce CRM<\/h4>\n

Open https:\/\/myYetiForce.com\/ in your favorite web browser and you should see the YetiForce CRM install screen. On this page you\u2019ll need to enter the database details you created earlier, YetiForce CRM admin details and finally click on the Install button.<\/p>\n

That\u2019s it. You have successfully installed YetiForce CRM on your Ubuntu 16.04 VPS. For more information about how to manage your YetiForce CRM installation, please refer to the official YetiForce CRM documentation.<\/p>\n


\n

Of course you don\u2019t have to do any of this if you use one of our Managed Ubuntu VPS Hostin<\/a>g services, in which case you can simply ask our expert Linux admins to setup this for you. They are available 24×7 and will take care of your request immediately. You can also read our guide on How to Install YetiForce on Ubuntu 18.04<\/a>.<\/p>\n

PS<\/strong><\/span>. If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"

In this article, we will explain how to install YetiForce CRM on an Ubuntu 16.04 VPS with MariaDB, PHP-FPM and … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":19712,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1711,13,1698],"tags":[386,59,1244],"yoast_head":"\nInstall YetiForce CRM on Ubuntu 16.04 - RoseHosting<\/title>\n<meta name=\"description\" content=\"Install YetiForce CRM on Ubuntu 16.04 - RoseHosting\" \/>\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.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install YetiForce CRM on Ubuntu 16.04 - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"Install YetiForce CRM on Ubuntu 16.04 - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2016-07-25T12:56:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-12T11:41:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/YetiForce-CRM-Ubuntu.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install YetiForce CRM on Ubuntu 16.04\",\"datePublished\":\"2016-07-25T12:56:54+00:00\",\"dateModified\":\"2022-12-12T11:41:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/\"},\"wordCount\":494,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/YetiForce-CRM-Ubuntu.jpg\",\"keywords\":[\"crm\",\"ubuntu\",\"YetiForce\"],\"articleSection\":[\"E-Commerce\",\"Tutorials\",\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/\",\"name\":\"Install YetiForce CRM on Ubuntu 16.04 - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/YetiForce-CRM-Ubuntu.jpg\",\"datePublished\":\"2016-07-25T12:56:54+00:00\",\"dateModified\":\"2022-12-12T11:41:58+00:00\",\"description\":\"Install YetiForce CRM on Ubuntu 16.04 - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/YetiForce-CRM-Ubuntu.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/YetiForce-CRM-Ubuntu.jpg\",\"width\":1200,\"height\":600,\"caption\":\"yetiforce crm ubuntu\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install YetiForce CRM on Ubuntu 16.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Install YetiForce CRM on Ubuntu 16.04 - RoseHosting","description":"Install YetiForce CRM on Ubuntu 16.04 - RoseHosting","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.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/","og_locale":"en_US","og_type":"article","og_title":"Install YetiForce CRM on Ubuntu 16.04 - RoseHosting","og_description":"Install YetiForce CRM on Ubuntu 16.04 - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2016-07-25T12:56:54+00:00","article_modified_time":"2022-12-12T11:41:58+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/YetiForce-CRM-Ubuntu.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install YetiForce CRM on Ubuntu 16.04","datePublished":"2016-07-25T12:56:54+00:00","dateModified":"2022-12-12T11:41:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/"},"wordCount":494,"commentCount":1,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/YetiForce-CRM-Ubuntu.jpg","keywords":["crm","ubuntu","YetiForce"],"articleSection":["E-Commerce","Tutorials","Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/","url":"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/","name":"Install YetiForce CRM on Ubuntu 16.04 - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/YetiForce-CRM-Ubuntu.jpg","datePublished":"2016-07-25T12:56:54+00:00","dateModified":"2022-12-12T11:41:58+00:00","description":"Install YetiForce CRM on Ubuntu 16.04 - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/YetiForce-CRM-Ubuntu.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2016\/07\/YetiForce-CRM-Ubuntu.jpg","width":1200,"height":600,"caption":"yetiforce crm ubuntu"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-yetiforce-crm-on-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install YetiForce CRM on Ubuntu 16.04"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/19197"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=19197"}],"version-history":[{"count":2,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/19197\/revisions"}],"predecessor-version":[{"id":44122,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/19197\/revisions\/44122"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/19712"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=19197"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=19197"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=19197"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}