Sunday 4 July 2021

How to Install SugarCRM On SentOS 7 In Simple Steps

 In this tutorial, we will learn how to install SugarCRM CE on CentOS 7 server.

Requirements

  •  A server running CentOS 7.
  • A static IP address set up on your server.

Getting Started

First, you will need to update your OS with the latest release and update its installed packages and repositories using the below command:

yum update -y

Once your system is up-to-date, you can proceed to the next step.

Install LAMP

In order to run SugarCRM, you will need to install the LAMP server and other required PHP modules on your system.

You can install all of them by running the following command:

yum install php httpd mariadb mariadb-server php-mysqlnd php-opcache php-mbstring php-gd -y

Once all the packages are installed including their dependencies, start the Apache and MariaDB services then enable it to start on boot with the following command:

systemctl start httpd

systemctl start mariadb

systemctl enable httpd

systemctl enable mariadb

Configure MariaDB Database.

By default MariaDB installation is not secured, so you will need to secure it first.

To do so, run the following script:

mysql_secure_installation

Answer all the questions as shown there:

Enter current password for root (enter for none): Enter

Set root password? [Y/n]: n

Remove anonymous users? [Y/n]: Y

Disallow root login remotely? [Y/n]: Y

Remove test database and access to it? [Y/n]: Y

Reload privilege tables now? [Y/n]: Y

Next, log in to MySQL shell with the following command:

mysql -u root -p

Enter the root password when asked, then create a database and user for SugarCRM:

MariaDB [(none)]>CREATE DATABASE sugarcrm;

MariaDB [(none)]>GRANT ALL PRIVILEGES ON sugarcrm.* TO ‘crm’@’localhost’ IDENTIFIED BY ‘password’ WITH GRANT OPTION;

MariaDB [(none)]>flush privileges;

MariaDB [(none)]>exit;


Next, you will need to edit “/etc/php.ini” to tune the PHP settings:

nano /etc/php.ini

Change the following line:

upload_max_filesize = 25M

Save and close the file, then restart the apache service to implement the saved changes.

systemctl restart httpd

Install SugarCRM

First, you will need to download the latest community edition of SugarCRM from their official website. Once the download is complete, extract the downloaded archive with the following command:

unzip SugarCE-6.5.24.zip

Next, move the extracted archive in Apache web root directory:

mv SugarCE-6.5.24 /var/www/html/SugarCRM

Give necessary permission to SugarCRM directory:

chown -R apache:apache /var/www/html/sugarcrm

Next, you will need to allow HTTP on port `80` through the firewall. You can do this by running the following command:

firewall-cmd –zone=public –add-service=http –permanent

firewall-cmd –reload

Access SugarCRM Web Installation Wizard

Once everything is set up properly, it’s time to access the SugarCRM web installation wizard.

Open your favorite web browser and type the URL http://your-server-ip/SugarCRM, you should see the SugarCRM Community Setup Wizard

Next, click on the `Next button.

Read and Accept the License agreement then Click on the “Next” button,

Now, choose the First option and click on the  “Next” button,

Now, specify the database type and click on the “Next” button,

Provide the database name, hostname, Database admin username, and password, then click on the “Next” button,

Next, provide SugarCRM admin username and password as you wish, then click on the `Next button, Here, confirm all the settings and click on the “Next” button,

Now, click on the “Next” button to finish setup,

Now, enter your admin user credentials to log in to your SugarCRM community edition and start using your best customer relations management portal.

Summary

Congratulations! you have successfully installed SugarCRM on CentOS 7 server. You can now easily host SugarCRM in the production environment and customize it as per your requirements. Feel free to comment me if you have any questions.

No comments:

Post a Comment

If you have any doubt, please let me know