Installation Akeneo PIM V 6. x || Akeneo 6

Deepak Kumar
Published: September 14, 2022

This blog’s goal is to step you through Installation Akeneo PIM V 6. x in a detailed manner.

There is two way to install the Akeneo

  1. Install Akeneo PIM for development with Docker
  2. Install Akeneo PIM manually

I will describe here Install Akeneo PIM manually

Install Akeneo PIM manually

You must first review the system requirements before proceeding Read Blog

If your system fulfills the requirements, then let’s begin installing Akeneo PIM Community Edition (CE)

Step 1: You need to run the following command to install the Akeneo version 6.

php -d memory_limit=4G /usr/local/bin/composer create-project --prefer-dist \ akeneo/pim-community-standard /srv/pim "6.0.*@stable"

you can change the document root directory /srv/pim according to your preference.

or download an archive containing Akeneo PIM and its PHP dependencies: https://download.akeneo.com/pim-community-standard-v6.0-latest-

icecat.tar.gz

Step 2: Initializing Akeneo

Note: Copy the .env into a local .env and make the configuration in the local .env.

To set up access to your MySQL and ElasticSearch servers, you must modify the local.env file.

AKENEO_PIM_URL=http://localhost:8080
APP_CONNECTION_ERROR_INDEX_NAME=akeneo_connectivity_connection_error
APP_DATABASE_NAME=akeneo_pim
APP_DATABASE_PASSWORD=akeneo_pim
APP_DATABASE_PORT=null
APP_DATABASE_USER=akeneo_pim
APP_DEBUG=0
APP_DEFAULT_LOCALE=en
APP_ENV=prod
APP_EVENTS_API_DEBUG_INDEX_NAME=akeneo_connectivity_connection_events_api_debug
APP_INDEX_HOSTS=localhost:9200
APP_PRODUCT_AND_PRODUCT_MODEL_INDEX_NAME=akeneo_pim_product_and_product_model
APP_SECRET=ThisTokenIsNotSoSecretChangeIt
MAILER_URL=null://localhost?encryption=tls&auth_mode=login&username=foo&password=bar&[email protected]

Step3: Launching the PIM in (pro, dev, or test mode)

Run all make commands from the PIM root directory, which can be obtained by extracting the archive or by using the composer new project mentioned above.

$ NO_DOCKER=true make

When this command is complete, you can visit the PIM at http://localhost:8080/.

Also Read:

How to apply a minor / more recent patch Akeneo

How Setup the job queue daemon

Support

That is all about the Installation Akeneo PIM V 6. x. Moreover, if you have any doubts or queries regarding the extension get back to us at [email protected] or create a ticket at our HelpDesk system.

Source: webkul.com