• 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 Suite CRM on Linuxmint 19

  • 00:36 lsb_release -a
  • 00:51 mysql -u root -p
  • 02:07 wget https://suitecrm.com/files/162/SuiteCRM-7.11/448/SuiteCRM-7.11.6.zip
  • 02:21 unzip SuiteCRM-7.11.6.zip
  • 02:32 mv SuiteCRM-7.11.6 /var/www/suite
  • 02:43 chown -R www-data.www-data /var/www/suite
  • 02:57 chmod -R 755 /var/www/suite
  • 03:09 vim /etc/apache2/sites-available/suite.conf
  • 04:15 a2dissite 000-default.conf
  • 04:29 a2ensite suite.conf
  • 04:39 a2enmod rewrite
  • 04:47 systemctl restart apache2
{{postValue.id}}

Installation Of Suite CRM On Linuxmint 19

Requirements for Suite CRM:

Apache
Mysql
PHP

PHP modules

php-mysql php-mbstring php-zip php-soap php-curl php-gd php-ldap php-imap php-common php-dev libmcrypt-dev php-pear

Installation procedure

Before you begin the installation process, Check the Linuxmint version by using the following command.

root@linuxhelp:~# lsb_release -a
No LSB modules are available.
Distributor ID:	LinuxMint
Description:	Linux Mint 19 Tara
Release:	19
Codename:	tara

Configure the MySQL database. Log into MySQL as a root user and make the necessary settings.

root@linuxhelp:~# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.26-0ubuntu0.18.04.1 (Ubuntu)

Copyright (c) 2000, 2019, 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 suitedb;
Query OK, 1 row affected (0.00 sec)

mysql> create user 'suiteuser'@localhost identified by 'Linuxc#4';
Query OK, 0 rows affected (0.08 sec)

mysql> grant all privileges on suitedb.* to 'suiteuser'@localhost;
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> exit
Bye

Once the database configuration is done, Download the installation package of Suite CRM by using the wget command. The link is given in the command.

root@linuxhelp:~# wget https://suitecrm.com/files/162/SuiteCRM-7.11/448/SuiteCRM-7.11.6.zip
--2019-07-20 02:39:47--  https://suitecrm.com/files/162/SuiteCRM-7.11/448/SuiteCRM-7.11.6.zip
Resolving suitecrm.com (suitecrm.com)... 104.248.173.173
Connecting to suitecrm.com (suitecrm.com)|104.248.173.173|:443... connected.
HTTP request sent, awaiting response... 301 Moved Permanently
Location: /suitecrm/files/162/SuiteCRM-7.11/448/SuiteCRM-7.11.6.zip [following]
--2019-07-20 02:39:48--  https://suitecrm.com/suitecrm/files/162/SuiteCRM-7.11/448/SuiteCRM-7.11.6.zip
Reusing existing connection to suitecrm.com:443.
HTTP request sent, awaiting response... 303 See other
Location: https://suitecrm.com/suitecrm/index.php?option=com_dropfiles&format=&task=frontfile.download&catid=162&id=448&Itemid=1000000000000 [following]
--2019-07-20 02:39:48--  https://suitecrm.com/suitecrm/index.php?option=com_dropfiles&format=&task=frontfile.download&catid=162&id=448&Itemid=1000000000000
Reusing existing connection to suitecrm.com:443.
HTTP request sent, awaiting response... 200 OK
Length: 59890752 (57M) [application/octet-stream]
Saving to: ‘SuiteCRM-7.11.6.zip’

SuiteCRM-7.11.6.zip         100%[==========================================>]  57.12M  1.11MB/s    in 52s     

2019-07-20 02:40:41 (1.09 MB/s) - ‘SuiteCRM-7.11.6.zip’ saved [59890752/59890752]

Once the download is completed extract the downloaded package using unzip command.

root@linuxhelp:~# unzip SuiteCRM-7.11.6.zip
Archive:  SuiteCRM-7.11.6.zip
   creating: SuiteCRM-7.11.6/
  inflating: SuiteCRM-7.11.6/CODE_OF_CONDUCT.md  
  inflating: SuiteCRM-7.11.6/HandleAjaxCall.php  
  inflating: SuiteCRM-7.11.6/LICENSE.txt  
  inflating: SuiteCRM-7.11.6/RoboFile.php  
  inflating: SuiteCRM-7.11.6/SugarSecurity.php  
  inflating: SuiteCRM-7.11.6/TreeData.php  
  inflating: SuiteCRM-7.11.6/campaign_tracker.php  
  inflating: SuiteCRM-7.11.6/composer.json  
.
.
SuiteCRM-7.11.6/vendor/bin/release -> ../consolidation/self-update/scripts/release
  SuiteCRM-7.11.6/vendor/bin/robo -> ../consolidation/robo/robo
  SuiteCRM-7.11.6/vendor/bin/validate-json -> ../justinrainbow/json-schema/bin/validate-json
  SuiteCRM-7.11.6/vendor/bin/generate-defuse-key -> ../defuse/php-encryption/bin/generate-defuse-key
  SuiteCRM-7.11.6/vendor/bin/parse -> ../jeremykendall/php-domain-parser/bin/parse
  SuiteCRM-7.11.6/vendor/bin/update-psl -> ../jeremykendall/php-domain-parser/bin/update-psl

Move the Suite Crm directory to apache root directory

root@linuxhelp:~# mv SuiteCRM-7.11.6 /var/www/suite

Set the ownership and permission for Suite Crm by using the following command.

root@linuxhelp:~# chown -R www-data.www-data /var/www/suite
root@linuxhelp:~# chmod -R 755 /var/www/suite

Configure the virtualhost for accessing the Suite Crm.

root@linuxhelp:~# vim /etc/apache2/sites-available/suite.conf
<Virtualhost *:80>
        Servername www.linuxhelp1.com
        Documentroot /var/www/suite
<directory /var/www/suite>
allowoverride all
allow from all
</directory>
</virtualhost>

Disable the default site access.

root@linuxhelp:~# a2dissite 000-default.conf
Site 000-default disabled.
To activate the new configuration, you need to run:
  systemctl reload apache2

Enable the site access for accessing the Suite Crm.

root@linuxhelp:~# a2ensite suite.conf
Enabling site suite.
To activate the new configuration, you need to run:
  systemctl reload apache2

Enable the rewrite module.

root@linuxhelp:~# a2enmod rewrite
Enabling module rewrite.
To activate the new configuration, you need to run:
  systemctl restart apache2

Restart the apache service by using the following command.

root@linuxhelp:~# systemctl restart apache2

Switch to your browser and enter the domain name. snap1 Accept the license agreement. snap2 Verify the requirements. snap3 Configure the database detail And Admin Credentials snap4 Installation is in process snap5 Installation is completed snap6 Enter The admin Credentials to login the suite crm snap7 This is the dashboard of suite crm snap8 With this, this tutorial on the method to install Suite Crm on Linuxmint 19 comes to an end.

Tags:
caden
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What is Suite crm?

A

SuiteCRM is a free and open source Customer Relationship Management application. Open source CRM is often used as an alternative to proprietary CRM software from major corporations such as Salesforce and Microsoft Dynamics CRM applications

Q

What are the php modules required for Suite Crm?

A

These are the required modules for Suite CRM, php php-xml php-mysql php-mbstring php-zip php-soap php-curl php-gd php-ldap php-imap php-common php-dev libmcrypt-dev php-pear

Q

What are the requirements for Suite Crm?

A

These are the requirements for Suite Crm

Apache,MySQL and PHP and its modules.

Q

How to entry to the hosts file for Suite Crm ?

A

use the following command to enter the host file for suite crm # vim /etc/hosts.

Q

Where to download the package of Suite Crm ?

A

Download a Suite Crm package using the following URL
wget https://suitecrm.com/files/162/SuiteCRM-7.11/448/SuiteCRM-7.11.6.zip

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 legeek ?
Installation of the call center module

hello

I wish to install a call center in virtual with issabel, I downloaded the latest version of it , but I don' t arrive to install the call center module in issabel. please help me

thanks!

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.