Image

Installation of OroCRM on a virtual server is performed using a package that includes all the necessary services. Installation is performed in ssh linux console, Centos 7 is used as a server. The latest version of the package can be found on the developer's website Bitnami


Before starting the installation, you need to make sure that there are no pre-installed services on the server, for example, to remove apache, use the command:


# yum remove httpd


We also recommend setting up the firewall service right away:


# iptables -A INPUT -p tcp -m tcp --dport 80 -j ACCEPT

# iptables -A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT

# service iptables save

# service iptables restart


Download and install the package:


# wget http://iso.synay.net/vm-apps/bitnami-orocrm-4.1.11-0-linux-x64-installer.run

# chmod +x bitnami-orocrm-4.1.11-0-linux-x64-installer.run

# ./bitnami-orocrm-4.1.11-0-linux-x64-installer.run


The script will offer a choice to install additional tools:


phpMyAdmin — an open source web application written in PHP and providing a web interface for administering the MySQL database management system. phpMyAdmin allows you to administer the MySQL server through a browser and not only, run SQL commands and view the contents of tables and databases.

Select by default (Y)


Is the selection above correct? [Y/n]: Y

The choice was made correctly


Select a folder [/opt/orocrm-4.1.11-0]:

Press Enter if you want to leave the specified path as default


Your real name [User Name]: admin

Enter a username, for example admin


Email Address [user@example.com]: mail@domain.tld

Enter your email address


Login [user]: user 

Password : ****** 

OroCRM administrator login and password


OroCRM WebSocket Host [xx.xxx.xxx.xx]:

Used for internal links, leave the server ip by default, press Enter


Do you want to configure mail support? [y/N]: N

Configuring mail for the site (default N)


Do you want to continue? [Y/n]: Y

Proceed with installation.


Launch OroCRM application. [Y/n]: Y

Launch the application.

Now you can open a link like http: // server_ip / in a browser and test the application.

In order to transfer the application to the root (without the orocrm folder), use the command


# installdir/apps/APPNAME/bnconfig --appurl /  


In this case, the command will look like this:

# /opt/orocrm-4.1.11-0/apps/orocrm/bnconfig --appurl /


To turn off the auxiliary menu, use the command


# installdir/apps/APPNAME/bnconfig --disable_banner 1


In this case, the command will look like this:

# /opt/orocrm-4.1.11-0/apps/orocrm/bnconfig --disable_banner 1


OroCRM installation is complete.




No Comments Yet