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

How to install Yetiforce CRM on linux mint 18.3

2634

To install Yetiforce CRM on Linux Mint 18.3

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. It is so simple to install Yetiforce CRM on Linux Mint 18.3 and this tutorial covers the ground on the same process.

Installing Yetiforce

Make sure you have LAMP stack installed on your machine before proceeding with the installation

To proceed with the installation process, install the latest stable version of YetiForce CMS by running the wget command on the HTML root directory.

linuxhelp ~ # cd /var/www/html
linuxhelp  html  # wget https://github.com/YetiForceCompany/YetiForceCRM/archive/3.1.0.zip
--2018-03-07 01:46:32--  https://github.com/YetiForceCompany/YetiForceCRM/archive/3.1.0.zip
Resolving github.com (github.com)... 192.30.253.112, 192.30.253.113
Connecting to github.com (github.com)|192.30.253.112|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/YetiForceCompany/YetiForceCRM/zip/3.1.0 [following]
--2018-03-07 01:46:33--  https://codeload.github.com/YetiForceCompany/YetiForceCRM/zip/3.1.0
Resolving codeload.github.com (codeload.github.com)... 192.30.255.121, 192.30.255.120
Connecting to codeload.github.com (codeload.github.com)|192.30.255.121|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘ 3.1.0.zip’ 

After downloading extract the package.

linuxhelp  html  # unzip 3.1.0.zip 
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/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  
linuxhelp html # ls
3.1.0.zip  index.html  YetiForceCRM-3.1.0

Rename the extracted directory to yetiforce or any other name as per your convenience.

linuxhelp html # mv YetiForceCRM-3.1.0/ yetiforce

Provide the appropriate owner permission and file execution permission by executing the following set of commands.

linuxhelp html # chown -R www-data:www-data /var/www/html/

Create an Apache Configuration file named yetiforcec.conf and enter the following content in the file.

linuxhelp html # vim /etc/apache2/sites-available/yetiforec.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 the hosts file.

linuxhelp html # vim /etc/hosts    
192.168.7.232   yeti.abc        yetiforce
linuxhelp html # hostnamectl set-hostname yetiforce
linuxhelp html # hostname -f
yeti.abc

And then we have to secure the MariaDB database.

linuxhelp html # mysql_secure_installation
Securing the MySQL server deployment.

Enter password for user root: 

VALIDATE PASSWORD PLUGIN can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD plugin?

Press y|Y for Yes, any other key for No: n
Using existing password for root.
Change the password for root ? ((Press y|Y for Yes, any other key for No) : n

 ... skipping.
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
Success.

Normally, root should only be allowed to connect from
' localhost' . This ensures that someone cannot guess at
the root password from the network.

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y
Success.

By default, MySQL comes with a database named ' test'  that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.

Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y
 - Dropping test database...
Success.

 - Removing privileges on test database...
Success.

Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
Success.

All done!

We have to create a database now.

linuxhelp html # mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with   or g.
Your MySQL connection id is 6
Server version: 5.7.21-0ubuntu0.16.04.1 (Ubuntu)

Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ' help '  or ' h'  for help. Type ' c'  to clear the current input statement.

mysql>  CREATE DATABASE yetiforce 
Query OK, 1 row affected (0.00 sec)

mysql>  GRANT ALL PRIVILEGES ON yetiforce.* TO ' yetiforce' @' localhost'  IDENTIFIED BY ' strong_password'  
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql>  FLUSH PRIVILEGES 
Query OK, 0 rows affected (0.00 sec)

mysql>  q
Bye

After that, Restart the apache service to make changes effect.

linuxhelp html # systemctl restart apache2

Switch over to the browser and enter the URL as http://yourdomain/yetiforce. The installer page of YetiForce CRM appears on the browser. Click Install option to start the installation.
navigate_url

Click I agree, the option to accept the License agreement of YetiForce CRM.

license


agrrement


Enter the required database information and the admin user information. Click Next to save the changes and continue with the installation.

db_info


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.

installation
install
With this, the method to install Yetiforce CRM on Linux Mint 18.3 comes to an end.

Tags:
rolando
Author: 

Comments ( 0 )

No comments available

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 linux mint 18.3

Related Tutorials in How to install Yetiforce CRM on linux mint 18.3

How to install WinRAR 5.11 on Linuxmint 18.03
How to install WinRAR 5.11 on Linuxmint 18.03
May 22, 2018
How to Setup VNC Server on Linux Mint 20
How to Setup VNC Server on Linux Mint 20
Dec 22, 2020
How to install and configure samba setup in Linux mint - 18.3
How to install and configure samba setup in Linux mint - 18.3
Mar 26, 2018
Installation SSL Certificate on Ubuntu/Linuxmint/Debian to Secure Apache
Installation SSL Certificate on Ubuntu/Linuxmint/Debian to Secure Apache
Sep 19, 2018
How to Install and Configure Samba on Linux Mint 20
How to Install and Configure Samba on Linux Mint 20
Nov 9, 2020
How to Install NextCloud on Linux Mint 18.3
How to Install NextCloud on Linux Mint 18.3
Feb 27, 2018
How To Install And Update OpenSSL On Linuxmint 18.3
How To Install And Update OpenSSL On Linuxmint 18.3
Jun 8, 2018
How To Install AnyDesk on Linux Mint 18.3
How To Install AnyDesk on Linux Mint 18.3
Apr 11, 2018

Related Forums in How to install Yetiforce CRM on linux mint 18.3

Related Forums in How to install Yetiforce CRM on linux mint 18.3

Linux
isaac class=
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/m/mysql-8.0/mysql-client-core-8.0_8.0.21-0ubuntu0.20.04.4_amd64.deb 404 Not Found
Dec 4, 2020
Linux Mint
AlxH class=
Complete beginner, install bluegriffon
Jul 1, 2020
Linux
AadrikaAnshu class=
How to add timestamps to history On Any Linux Machine
Jun 18, 2019
Linux Mint
bz0 class=
How to change a function of a key
Jun 7, 2019
Linux Mint
who class=
How to compare multiple files
Nov 10, 2019
NFS (Network File System)
Mike class=
Linux Mint 18.3 - NFS Shares - Only Root Can Mount Share
Oct 4, 2019
Command Line Tools
wayne class=
Deleting windows files booting from mint(usb)
Sep 16, 2017
Ubuntu
Kirin class=
Videos Always Micro-Shutter
Mar 8, 2019

Related News in How to install Yetiforce CRM on linux mint 18.3

Related News in How to install Yetiforce CRM on linux mint 18.3

A Newer and a Faster Window Manager for Tina (Linux Mint 19.2)
A Newer and a Faster Window Manager for Tina (Linux Mint 19.2)
Apr 9, 2019
Linux Mint 18.2 Ubuntu based Operating System is named Sonya
Linux Mint 18.2 Ubuntu based Operating System is named Sonya
May 2, 2017
Refreshed Linux Mint Debian Edition (LMDE) 2 'Betsy' ISO images now available
Refreshed Linux Mint Debian Edition (LMDE) 2 'Betsy' ISO images now available
Mar 14, 2017
The Best Linux Operating System is in the house: Mint 18.2
The Best Linux Operating System is in the house: Mint 18.2
Aug 12, 2017
Linux Mint 18.1 released with smooth features and offers long-term support
Linux Mint 18.1 released with smooth features and offers long-term support
Apr 11, 2017
Linux Mint 18.2 Sonya Beta version now available for download
Linux Mint 18.2 Sonya Beta version now available for download
Jun 7, 2017
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 Luke ?
workbench for debian

I am using workbench in CentOS whereas now I need to use Debian Operating system so could you please help to install and use in Debian?

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.