• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to install YetiForce CRM on Ubuntu 16.04

2066

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

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

Related Tutorials in How to install YetiForce CRM on Ubuntu 16.04

Related Tutorials in How to install YetiForce CRM on Ubuntu 16.04

How to install Meld tool in Ubuntu
How to install Meld tool in Ubuntu
Feb 25, 2017
How to install Dconf-Editor on Ubuntu 18.04
How to install Dconf-Editor on Ubuntu 18.04
Jul 14, 2018
How to install and update OpenSSL on Ubuntu 16.04
How to install and update OpenSSL on Ubuntu 16.04
Mar 9, 2017
How to install GLib 2.0 on Ubuntu 17.04
How to install GLib 2.0 on Ubuntu 17.04
May 22, 2017
How to Install Android Emulator on Ubuntu 20.4.1
How to Install Android Emulator on Ubuntu 20.4.1
Jul 13, 2021
How To Install AnyDesk on Ubuntu 16.04
How To Install AnyDesk on Ubuntu 16.04
Apr 4, 2018
How to install Genymotion 2.12.1 on Ubuntu 18.04
How to install Genymotion 2.12.1 on Ubuntu 18.04
Jul 9, 2018
How to install Timeshift 18.4 on Ubuntu 18.04
How to install Timeshift 18.4 on Ubuntu 18.04
Jul 6, 2018

Related Forums in How to install YetiForce CRM on Ubuntu 16.04

Related Forums in How to install YetiForce CRM on Ubuntu 16.04

Ubuntu
matthew class=
Failed to enable unit: Refusing to operate on linked unit file sshd.service
Apr 15, 2019
Ubuntu
mason class=
Passwd: You may not view or modify password information for root On Ubuntu 19.04
May 27, 2019
Ubuntu
isaac class=
/etc/apt/sources.list Permission denied
May 18, 2017
Ubuntu
yousuf class=
lsb_release command not working : Debian
Jan 18, 2018
ifconfig command
jackbrookes class=
what is the location of the ifconfig program on your machine?
Jan 4, 2018
Ubuntu
mason class=
"E: Package 'php-mcrypt' has no installation candidate" error on Ubuntu 20.4.1
Mar 15, 2021
NFS
luke class=
clnt_create: RPC: Program not registered
Apr 25, 2017
Apache
isaac class=
How to disable apache welcome page on Ubuntu
Dec 15, 2018

Related News in How to install YetiForce CRM on Ubuntu 16.04

Related News in How to install YetiForce CRM on Ubuntu 16.04

How To Install Mixxx on Ubuntu 16.04
How To Install Mixxx on Ubuntu 16.04
Oct 11, 2017
Ubuntu 17.04 released with greater expectations
Ubuntu 17.04 released with greater expectations
Apr 15, 2017
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Mar 1, 2017
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Sep 2, 2017
Ubuntu Unity is no more: One Linux dream has been axed
Ubuntu Unity is no more: One Linux dream has been axed
Apr 7, 2017
What’s next for Ubuntu Linux Desktop?
What’s next for Ubuntu Linux Desktop?
Apr 11, 2017
Say Hi to Ubuntu's new mascot
Say Hi to Ubuntu's new mascot
Mar 22, 2019
KDE Connect App was removed from Google Play Store and brought back in 24 hours
KDE Connect App was removed from Google Play Store and brought back in 24 hours
Mar 22, 2019
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 Ryan ?
how to use visual traceroute tool

Am using traceroute command to check for the route. i got this tool while surfing. So pls help me out installation and usage of Visual traceroute tool.

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.