1. Home
  2. Basic Configuration
  3. Installation instructions

Installation instructions

Install Marello

As both Symfony and Marello use Composer to manage their dependencies, this is the recommended way to install Marello.

  • Clone Marello application repository:
git clone -b x.y.z https://github.com/marellocommerce/marello-application.git

where x.y.z is the latest release tag or use the latest master:

git clone https://github.com/marellocommerce/marello-application.git
  • Install Composer globally following the official Composer installation documentation
  • Make sure that you have NodeJS >=12.0, <15.0 installed
  • Install Marello dependencies with composer. If installation process seems too slow you can use –prefer-dist option. Go to marello-application folder and run composer installation:
composer install --prefer-dist --no-dev
Using dev environment

When installing dependencies without dev requirements, you will not be able to use the dev environment of the application since it will require some additional packages to be installed via composer. If you would like to use the dev environment of the application, please remove the `–no-dev` parameter from the composer install command above.

  • Create the database with the name specified on the previous step (default name is “marello_application”).
  • On some systems it might be necessary to temporarily increase memory_limit setting to 1 GB in php.ini configuration file for the duration of the installation process:
memory_limit=1024M
Recommended Value

After the installation is finished the memory_limit configuration can be changed back to the recommended value (512 MB or more).

  • Install application and admin user with Installation Wizard by opening install.php in the browser or from CLI:
php bin/console oro:install --env prod
Time Out

If the installation process times out, add the —timeout=0 argument to the oro:install command.

  • Enable WebSockets messaging
php bin/console gos:websocket:server --env prod
  • Configure crontab or scheduled tasks execution to run the command below every minute:
php bin/console oro:cron --env prod
  • Launch the message queue processing:
php bin/console oro:message-queue:consume --env=prod
Recommendation

We do recommend to use a supervisor for running the oro:message-queue:consume command. This will make sure that the command and the consumer will run all the time. This has become important for every Oro Platform based application since a lot of background tasks depend on the consumer to run. For more information about configuration and what supervisor can do for you can either through the Oro(CRM) docs or the site of Supervisor.

Path

bin/console is a path from project root folder. Please make sure you are using full path for crontab configuration or if you running console command from other location.

Installed PHP Accelerators must be compatible with Symfony and Doctrine (support DOCBLOCKs)

Note that the port used in Websocket must be open in firewall for outgoing/incoming connections

Using MySQL 8.0.x on HDD is potentially risky because of performance issues

Recommended configuration for this case:

innodb_file_per_table = 0

And ensure that timeout has default value

wait_timeout = 28800

See Optimizing InnoDB Disk I/O for more

PostgreSQL installation notes (EE)

You need to load uuid-ossp extension for proper doctrine’s guid type handling. Log into database and run sql query:

CREATE EXTENSION "uuid-ossp";

Web Server Configuration

The Marello application is based on the Symfony standard application so web server configuration recommendations are the same.

Package Manager Configuration

Github OAuth token should be configured in package manager settings.

Need Support?

Join the Community Chat to get help from other users in the Marello community.

Updated on januari 13, 2022

Was this article helpful?

Related Articles