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

How to install Zurmo CRM – 3.2.4 on Ubuntu – 17.04

2780

To install Zurmo CRM &ndash 3.2.4 on Ubuntu &ndash 17.04
Zurmo CRM is a free and open-source CRM application. Zurmo consists of Activity management, Contact management, Reporting, Deal tracking, Product management, etc. It uses Gamification to engage and interact with users which leads to successful CRM implementation. This tutorial covers the installation of Zurmo CRM on Ubuntu &ndash 17.04

Prerequisites

Zurmo CRM requires a web server to functionally based on LAMP setup on your system and also with following required PHP modules

apt-get install php-mysql php-curl php-json php-cgi php libapache2-mod-php php-mcrypt php-xmlrpc php-gd php-mbstring php  php-common  php-xmlrpc php-soap  php-xml php-intl  php-cli  php-ldap php-zip php-readline 
php-imap php-tidy php-recode php-sqlite3 php-xdebug php-gettext php-dev php-pear php-memcache php-memcached

Installation

Make sure you Update the system repository before you start the installation.

root@linuxhelp1:~# apt-get update
Hit:1 http://old-releases.ubuntu.com/ubuntu zesty InRelease
Hit:2 http://old-releases.ubuntu.com/ubuntu zesty-updates InRelease
Hit:3 http://old-releases.ubuntu.com/ubuntu zesty-backports InRelease
Hit:4 http://old-releases.ubuntu.com/ubuntu zesty-security InRelease
Reading package lists... Done

Installation

Let’ s create a database for zurmo and configure follows.

root@linuxhelp1:~# mysql -u root -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with   or g.
Your MariaDB connection id is 10
Server version: 10.1.25-MariaDB- Ubuntu 17.04

Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.

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

MariaDB [(none)]>  CREATE DATABASE zurmo 
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]>  GRANT ALL PRIVILEGES ON zurmo.* TO ' zurmouser' @' localhost'  IDENTIFIED BY ' 123'  
Query OK, 0 rows affected (0.01 sec)
MariaDB [(none)]>  FLUSH PRIVILEGES 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]>  EXIT 
Bye

Next switch to the zurmo package Download directory.

root@linuxhelp1:~# cd /home/user/Downloads/

Extract the package as follows.

root@linuxhelp1:/tmp# tar -zxvf zurmo-stable-3.2.4.01254e9117e1.tar.gz 
zurmo/
zurmo/README.text
zurmo/index.php
zurmo/redbean/
zurmo/redbean/rb.php
zurmo/yii/
zurmo/yii/UPGRADE
zurmo/yii/LICENSE
zurmo/yii/framework/
zurmo/yii/framework/collections/
.
.
zurmo/app/themes/default/images/jqueryui/ui-bg_glass_75_dadada_1x400.png
zurmo/app/themes/default/images/jqueryui/ui-icons_222222_256x240.png
zurmo/app/themes/default/ico/
zurmo/app/themes/default/ico/favicon.ico
zurmo/app/version.php
zurmo/app/test.php
zurmo/app/index.php
zurmo/app/roots.php
zurmo/app/assets/
zurmo/app/assets/index.html

And then you need to move the file.

root@linuxhelp1: /home/user/Downloads/# mv zurmo /var/www/

Switch to the Apache document root Directory.

root@linuxhelp1: /home/user/Downloads/# cd /var/www/

Next, you need to change ownership and permission in the following manner.

root@linuxhelp1:/var/www# chown -R www-data.www-data zurmo
root@linuxhelp1:/var/www# chmod -R 775 zurmo

And also you need to make the changes in php.ini file as follows.

root@linuxhelp1:/var/www# vim /etc/php/7.0/apache2/php.ini
[..]
Date.timezone = Asia/Kolkata
Post_max_size = 32M    
Upload_max_filesize = 32M
zend.assertions = 0
[..]

Next, create a virtual host file for zurmo as follows

root@linuxhelp1:/var/www# vim /etc/apache2/sites-available/zurmo.conf
< VirtualHost *:80> 
ServerName www.linuxhelp1.com
DocumentRoot /var/www/zurmo/

< Directory /var/www/zurmo/> 
ALlowOverride All
allow from all
< /Directory> 

< /VirtualHost> 

You need to enable the site access.

root@linuxhelp1:/var/www# a2ensite zurmo.conf
Enabling site zurmo.
To activate the new configuration, you need to run:
systemctl reload apache2

And then restart the apache2 to make the changes effect.

root@linuxhelp1:/var/www# systemctl restart apache2

Do not forget to disable the default site access.

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

Finally, restart the apache2 to make the changes effect.

root@linuxhelp1:/var/www# systemctl restart apache2

Enable the rewrite module.

root@linuxhelp1:/var/www# a2enmod rewrite
Enabling module rewrite.
To activate the new configuration, you need to run:
systemctl restart apache2

Restart the apache2 by running the following command.

root@linuxhelp1:/var/www# systemctl restart apache2

Now you can proceed the further installation and configuration from the browser by navigating to the following URL: http://< ipaddress or domain name.
snap1

Configure the Zurmo configuration setup as follows.
snap2

Verify, whether it meets all the PHP requirements and proceed.
snap3


snap4

Configure the database setup and click on install once finished.
snap5

Now the installation takes place as you can see from the below image.
snap6

Once the installation is complete, click on sign in.
snap7

Log in using the credentials you created during the setup.
snap8

Once you log in, set up the time zone and save it.
snap9

And then click on " Go to Dashboard" option.
snap10

You will see the following screen once you log in Zurmo.
snap11

With this, the method to install zurmo CRM &ndash 3.2.4 on Ubuntu &ndash 17.04 comes to an end.

Tags:
gabriel
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

How to make an entry to the host file for Zurmo CRM?

A

Please follow the steps as below for Zurmo CRM,
# vim /etc/hosts
< Give your domain name>

Q

How to download the archive format of Zurmo CRM?

A

Use wget command in Linux to download the zurmo crm package in an archive format for example use "wget http://build.zurmo.com/downloads/zurmo-stable-3.2.2.8da3a6bc8e48.zip"

Q

I installed Zurmo successfully, but I don't know the username and password to log in. What would be the default login credential? any guess???.

A

Try this credentials for Zurmo CRM,
username: super
password: super

Q

What is Zurmo CRM?

A

Zurmo CRM is a free and open-source CRM application. Zurmo consists of Activity management, Contact management, Reporting, Deal tracking, Product management, etc. It uses Gamification to engage and interact with users which leads to successful CRM implementation.

Q

What version of PHP is recommended for Zurmo CRM?

A

PHP version 5.6 and above are recommended for Zurmo CMS.

Related Tutorials in How to install Zurmo CRM – 3.2.4 on Ubuntu – 17.04

Related Tutorials in How to install Zurmo CRM – 3.2.4 on Ubuntu – 17.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 Zurmo CRM – 3.2.4 on Ubuntu – 17.04

Related Forums in How to install Zurmo CRM – 3.2.4 on Ubuntu – 17.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 Zurmo CRM – 3.2.4 on Ubuntu – 17.04

Related News in How to install Zurmo CRM – 3.2.4 on Ubuntu – 17.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 Elijah ?
Remote Desktop Connection Has Stopped Working

When accessing my remote machine server using remote desktop on a windows machine I am getting this error

forum (1)

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.