• Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial News Comments FAQ Related Articles

How to install YetiForce CRM on Ubuntu 16.04

{{postValue.id}}

To install YetiForce CRM on Ubuntu 16.04

In our preceding tutorial, we have seen the installation procedure of Yetiforce CRM on CentOS 7. In this tutorial, we will be briefed about the installation procedure of YetiForce CRM on Ubuntu 16.04. YetiForce CRM is an open-source CRM system that helps the users to manage relations with customers, suppliers, partners and staffs. It contains a plethora of features such as 70+ user modules and configuration panels, Email automation and tracking, built-in notification by email, invoicing, cloud based hosting and time control.

Pre- Requisite
LAMP (Apache, PHP 7, MySQL)
MySQL (create database, user and provide privileges to user)
PHP modules (php70w-mysql php70w-curl php70w-json php70w-cgi php70w php70w-mcrypt php70w-xmlrpc php70w-gd)

Installation procedure

To proceed with the installation procedure, enter into HTML location by running the cd command.

root@linuxhelp11:~# cd /var/www/html/

Download the YetiForce CRM package using wget command followed by the download link.

root@linuxhelp11:/var/www/html# wget https://github.com/YetiForceCompany/YetiForceCRM/archive/3.1.0.zip
--2017-10-24 00:28:47--  https://github.com/YetiForceCompany/YetiForceCRM/archive/3.1.0.zip
Resolving github.com (github.com)... 192.30.255.112, 192.30.255.113
Connecting to github.com (github.com)|192.30.255.112|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/YetiForceCompany/YetiForceCRM/zip/3.1.0 [following]
--2017-10-24 00:28:48--  https://codeload.github.com/YetiForceCompany/YetiForceCRM/zip/3.1.0
Resolving codeload.github.com (codeload.github.com)... 192.30.255.120, 192.30.255.121
Connecting to codeload.github.com (codeload.github.com)|192.30.255.120|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘ 3.1.0.zip’ 

3.1.0.zip               [            < =>      ]  50.30M   581KB/s    in 76s     

2017-10-24 00:30:06 (675 KB/s) - ‘ 3.1.0.zip’  saved [52741675]

Extract the downloaded package using unzip command.

root@linuxhelp11:/var/www/html# unzip 3.1.0.zip -d /var/www/html/
Archive:  3.1.0.zip
3d3e15cfa012808808b3c8b8bafa7eacdbc3cc68
   creating: /var/www/html/YetiForceCRM-3.1.0/
  inflating: /var/www/html/YetiForceCRM-3.1.0/.gitattributes  
  inflating: /var/www/html/YetiForceCRM-3.1.0/.gitignore  
  inflating: /var/www/html/YetiForceCRM-3.1.0/.htaccess  
  inflating: /var/www/html/YetiForceCRM-3.1.0/README.md  
   creating: /var/www/html/YetiForceCRM-3.1.0/admin/
   creating: /var/www/html/YetiForceCRM-3.1.0/admin/cache/
   creating: /var/www/html/YetiForceCRM-3.1.0/admin/cache/logs/
  inflating: /var/www/html/YetiForceCRM-3.1.0/admin/cache/logs/.htaccess  
   creating: /var/www/html/YetiForceCRM-3.1.0/admin/cache/session/
.
.
  creating: /var/www/html/YetiForceCRM-3.1.0/vtlib/tools/
  inflating: /var/www/html/YetiForceCRM-3.1.0/vtlib/tools/console.php  
  inflating: /var/www/html/YetiForceCRM-3.1.0/vtlib/vtlib-Copyright.txt  
  inflating: /var/www/html/YetiForceCRM-3.1.0/webservice.php  

Rename the extracted directory to yetiforce.

root@linuxhelp11:/var/www/html# mv YetiForceCRM-3.1.0 yetiforce

Next change the ownership of file in HTML location by executing the following command.

root@linuxhelp11:/var/www/html# chown -R www-data:www-data /var/www/html/yetiforce/

Create the virtual host configuration file for YetiForce using nano editor and enter the following content in the file. Save and exit the file.

root@linuxhelp11:/var/www/html# nano /etc/apache2/sites-available/yetiforce.conf

< VirtualHost *:80> 
ServerAdmin admin@yeti.abc
DocumentRoot /var/www/html/yetiforce/
ServerName yeti.abc
ServerAlias www.yeti.abc
< Directory /var/www/html/yetiforce/> 
Options FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
< /Directory> 
ErrorLog /var/log/apache2/yeti.abc-error_log
CustomLog /var/log/apache2/yeti.abc-access_log common
< /VirtualHost> 

Create the entry in hosts file and enter the following content in the file. Save and exit the file.

root@linuxhelp11:/var/www/html# nano /etc/hosts
192.168.7.240  yeti.abc

Restart the Apache service.

root@linuxhelp11:/var/www/html# systemctl restart apache2.service

Switch over to the browser and enter the URL as yeti.abc. The installation wizard of YetiForce CRM appears on the screen. Select the required language and press Install option to start the installation wizard.

language

The License agreement of YetiForce is displayed on the screen. Click " I Agree" option to navigate to next step of installation.

license agreement
accept license

The next page show the list of system pre-requirement before installation, click Next to continue with the installation.
system check
Enter the required database information and the admin user information. Click Next to save the changes and continue with the installation.
database detail
admin details

Before starting the installation, the installation wizard shows the user a summary of configuration settings to check it. If everything checks out, click Next option.
confirm configuration

The installation is in progress and the user has to wait for some time.
installation progress

The installation is complete. Now the admin page of YetiForce CRM is shown below.
admin page

This concludes the installation procedure of YetiForce CRM on Ubuntu 16.04.

Tags:
jackson
Author: 

Comments ( 1 )

javis887509
Hello! Thank you for this guide! I just got some concerns regarding the step: Create the entry in hosts file and enter the following content in the file. Save and exit the file. How do I select the proper IP? Does it matter? As I'm getting Server Not Found, or what do you think is related to that issue? Thanks in advance! Best Regards
Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

what are all the installation procedur for yetiforce CRM in linuxmint?

A

Refer the below link for installing yetiforce CRM in linuxmint

https://www.linuxhelp.com/how-to-install-yetiforce-crm-on-linux-mint-18-3/

Q

What is the link used for downloading yetiforce CRM latest version ?

A

download the latest version of yetiforce by following link

https://github.com/YetiForceCompany/YetiForceCRM/

Q

How to install the yetiforce in ubuntu server?

A

use the below link for installing yetiforce on ubuntu

https://www.linuxhelp.com/how-to-install-yetiforce-crm-on-ubuntu-17-04/

Q

why we need to install yetiforce CRM on linux mint?

A

YetiForce CRM is an open-source CRM system that helps the users to manage relations with customers, suppliers, partners, and staffs. It contains a wide range of features such as 70+ user modules and configuration panels, Email automation and tracking, built-in notification by email, invoicing, cloud-based hosting and time control

Q

which command to restart the apache2 service in linux?

A

use the following command to restart the apache2

# systemctl restart apache2

Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Luk Van De Looverbosch ?
How to create a root ?

Hello,
How to create root@linuxhelp in Linux Mint 20.1 64-bit ?
Thanks in advance for your reply.
Best regards.

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.