{"id":15817,"date":"2023-07-18T07:49:55","date_gmt":"2023-07-18T07:49:55","guid":{"rendered":"https:\/\/cloudkul.com\/blog\/?p=15817"},"modified":"2024-10-07T12:35:12","modified_gmt":"2024-10-07T12:35:12","slug":"akeneo-installation-on-ubuntu-22-04","status":"publish","type":"post","link":"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/","title":{"rendered":"Akeneo 7.x Installation on Ubuntu 22.04"},"content":{"rendered":"\n<p><a href=\"https:\/\/cloudkul.com\/aws-hosting\/akeneo-aws-hosting\/\">Akeneo PIM<\/a> (Product Information Management) is an <a href=\"https:\/\/webkul.com\/blog\/top-5-open-source-pim-system\/\">open-source software <\/a>developed by Akeneo to improve customer experience.<\/p>\n\n\n\n<p>It is widely used by retailers, manufacturers, distributors, and other businesses dealing with large catalogs of products across multiple channels. <\/p>\n\n\n\n<p>The benefits of streamlined <a href=\"https:\/\/webkul.com\/product-information-manager\/\">product information management<\/a> and improved data quality and consistency for enhancing the overall customer experience.<\/p>\n\n\n\n<p>Let&#8217;s discuss how to install Akeneo on Ubuntu 22.04.<\/p>\n\n\n\n<p>Here we use the below configuration to install Akeneo Ver. 7.x, you can choose your configuration as per the requirement.<\/p>\n\n\n\n<p><strong>Requirements to install Akeneo &#8211;  <\/strong><\/p>\n\n\n\n<ul>\n<li>Ubuntu 22.04<\/li>\n\n\n\n<li>System Requirements 8 GB of RAM, 4 CPU Cores, 25 GB of Disk space<\/li>\n\n\n\n<li>Web-server: Apache2<\/li>\n\n\n\n<li>MySQL 8.0<\/li>\n\n\n\n<li>PHP8.1<\/li>\n\n\n\n<li>Composer 2.5.X<\/li>\n\n\n\n<li>Elasticsearch 8.8.2<\/li>\n\n\n\n<li>Node 18<\/li>\n\n\n\n<li>Yarn<\/li>\n\n\n\n<li>Download Akeneo PIM Ver. 7.x<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 1: Install<\/strong> <strong>Apache<\/strong><\/h2>\n\n\n\n<p>Update the local package then Install Apache<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt-get update\nsudo apt-get install apache2\nsudo systemctl enable apache2\nsudo systemctl status apache2<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-12-30-21.png\"><img loading=\"lazy\" decoding=\"async\" width=\"667\" height=\"258\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-12-30-21.png\" alt=\"\" class=\"wp-image-15839\"\/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Install MySql<\/h2>\n\n\n\n<p>Install MySQL and create a database for Akeneo<\/p>\n\n\n\n<p>There are two&nbsp;ways&nbsp;to use MySQL database:<\/p>\n\n\n\n<ol>\n<li>Localhost MySQL Database Server<\/li>\n\n\n\n<li>AWS RDS(Relational Database Service)<\/li>\n<\/ol>\n\n\n\n<p><strong>Case-1 \u2013 For localhost MySQL database server<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt-get install mysql-server<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-11-38-56-2.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"233\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-11-38-56-2-1024x233.png\" alt=\"\" class=\"wp-image-16005\"\/><\/a><\/figure>\n\n\n\n<ul>\n<li>In this section, we can set our MySQL root password.<\/li>\n\n\n\n<li>We create a dbuser, database for Akeneo and give privileges to the dbuser.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo mysql\nALTER USER \u2018root\u2019@\u2019localhost\u2019 IDENTIFIED WITH mysql_native_password BY \u2018password\u2019;\nCREATE DATABASE akeneo_pim;\nCREATE USER akeneo_pim@localhost IDENTIFIED WITH mysql_native_password BY \u2018akeneo_pim\u2019;\nGRANT ALL PRIVILEGES ON akeneo_pim.* TO akeneo_pim@localhost;\nFLUSH PRIVILEGES;\nexit<\/pre>\n\n\n\n<p><strong>Case-2 &#8211; If you are using AWS RDS<\/strong><\/p>\n\n\n\n<p>Here we create a dbuser, database in AWS RDS for Akeneo and give privileges to the dbuser.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">mysql -u admin -p -h RDS_end_point\nCREATE USER 'akeneo_pim'@'%' IDENTIFIED BY 'your_secure_password';\nALTER USER 'akeneo_pim'@'%' IDENTIFIED WITH mysql_native_password BY 'your_secure_password';\nCREATE DATABASE akeneo_pim;\nGRANT ALL PRIVILEGES ON akeneo_pim.* TO 'akeneo_pim'@'%' WITH GRANT OPTION;\nFLUSH PRIVILEGES;\nexit<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 3: Install PHP and there required extension<\/strong><\/h2>\n\n\n\n<ul>\n<li>In this step, we add the Ondrej PPA repository.<\/li>\n\n\n\n<li>Install the PHP8.1 version and there required extension.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install software-properties-common\nsudo add-apt-repository ppa:ondrej\/php\nsudo apt-get update\nsudo apt-get install php8.1-cli php8.1-apcu php8.1-bcmath php8.1-curl php8.1-opcache php8.1-fpm php8.1-gd php8.1-intl php8.1-mysql php8.1-xml php8.1-zip php8.1-mbstring php8.1-imagick<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-12-07-32.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"284\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-12-07-32-1024x284.png\" alt=\"\" class=\"wp-image-15857\"\/><\/a><\/figure>\n\n\n\n<p>Now we set the memory limit and date.timezone in php.ini for php CLI and FPM<\/p>\n\n\n\n<pre class=\"wp-block-preformatted has-small-font-size\">vim \/etc\/php\/8.1\/cli\/php.ini\nmemory_limit = 1024M\ndate.timezone = UTC\n\nvim \/etc\/php\/8.1\/fpm\/php.ini\nmemory_limit = 512M\ndate.timezone = UTC<\/pre>\n\n\n\n<p><strong>Enable apache rewrite module and proxy_fcgi<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo a2enmod rewrite proxy_fcgi\nsudo a2enmod rewrite\nsudo systemctl restart apache2<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 4: Install Composer<\/strong><\/h2>\n\n\n\n<ul>\n<li>We install curl, wget, zip, unzip, and net-tools package, <\/li>\n\n\n\n<li>We install Composer with the required version.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt-get install curl wget zip unzip net-tools -y\nsudo curl -sS https:\/\/getcomposer.org\/installer | php -- --version=2.5.8\nsudo mv composer.phar \/usr\/local\/bin\/composer\ncomposer -V<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-12-54-36.png\"><img loading=\"lazy\" decoding=\"async\" width=\"680\" height=\"88\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-12-54-36.png\" alt=\"\" class=\"wp-image-15849\"\/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 5: Install Elasticsearch<\/strong><\/h2>\n\n\n\n<ul>\n<li>We download the GPG key for Elasticsearch packages<\/li>\n\n\n\n<li>Add the Elasticsearch repository to the system<\/li>\n\n\n\n<li>Install elasticsearch after the installation reload the daemon and enable the elastic search service<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt-get install apt-transport-https\nsudo wget -qO \u2013 https:\/\/artifacts.elastic.co\/GPG-KEY-elasticsearch | apt-key add \u2013\nsudo echo \u201cdeb https:\/\/artifacts.elastic.co\/packages\/8.x\/apt stable main\u201d | tee -a \/etc\/apt\/sources.list.d\/elastic-8.x.list\nsudo apt-get update\nsudo apt-get install elasticsearch\nsudo systemctl daemon-reload\nsudo systemctl enable elasticsearch.service\nsudo systemctl start elasticsearch.service\nsudo systemctl status elasticsearch.service<\/pre>\n\n\n\n<p>Verify the proper functioning of Elasticsearch by executing the below command. <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">curl -XGET 'http:\/\/localhost:9200'\nsudo systemctl restart elasticsearch.service<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-13-24-18.png\"><img loading=\"lazy\" decoding=\"async\" width=\"625\" height=\"300\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-13-24-18.png\" alt=\"\" class=\"wp-image-15851\"\/><\/a><\/figure>\n\n\n\n<p>you can run the below commands to increase the MAX_MAP_COUNT Linux kernel setting. Proceed as follow.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo sysctl -w vm.max_map_count=262144\nsudo echo \"vm.max_map_count=262144\" | tee \/etc\/sysctl.d\/elasticsearch.conf\nsudo systemctl restart elasticsearch<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 6: Install Node<\/strong><\/h2>\n\n\n\n<p>Here we install Node version 18.x<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo curl -sL https:\/\/deb.nodesource.com\/setup_18.x -o nodesource_setup.sh\nsudo bash nodesource_setup.sh\nsudo apt-get install -y nodejs\nnode -v<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-13-56-39.png\"><img loading=\"lazy\" decoding=\"async\" width=\"560\" height=\"62\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-13-56-39.png\" alt=\"\" class=\"wp-image-15859\"\/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step 7: Install Yarn<\/strong><\/h2>\n\n\n\n<p>Here we install Yarn<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">curl -sL https:\/\/dl.yarnpkg.com\/debian\/pubkey.gpg | apt-key add -\necho \"deb https:\/\/dl.yarnpkg.com\/debian\/ stable main\" | tee \/etc\/apt\/sources.list.d\/yarn.list\napt update &amp;&amp; apt-get install yarn\nyarn -v<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-13-59-50.png\"><img loading=\"lazy\" decoding=\"async\" width=\"452\" height=\"64\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-13-59-50.png\" alt=\"\" class=\"wp-image-15861\" style=\"width:452px;height:64px\"\/><\/a><\/figure>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Now create a user for Akeneo, you can set a password, and rest of the field simply press enter<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo adduser akeneo<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-14-07-33.png\"><img loading=\"lazy\" decoding=\"async\" width=\"592\" height=\"278\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-14-07-33.png\" alt=\"\" class=\"wp-image-15863\"\/><\/a><\/figure>\n\n\n\n<p><strong>Download the PIM in the user directory<\/strong><\/p>\n\n\n\n<ul>\n<li>Download the Akeneo PIM as your required version, here we download version 7<\/li>\n\n\n\n<li>Extract the tar file.<\/li>\n\n\n\n<li>And fill in your DB details in .env.local file to communicate with the database.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/home\/akeneo\nwget https:\/\/download.akeneo.com\/pim-community-standard-v7.0-latest-icecat.tar.gz\ntar -xvzf pim-community-standard-v7.0-latest-icecat.tar.gz\ncd pim-community-standard\ncp -r .env .env.local<\/pre>\n\n\n\n<p>Now make the changes in the (.env.local) file as per your configuration.<br>When you open the (.env.local) file you will see a file like below, now you need to change it accordingly below SS for your reference.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">AKENEO_PIM_URL=http:\/\/localhost:8080   #use your public_IP or domain as well.\nAPP_DATABASE_HOST=mysql      #define localhost or RDS string as per you uses.\nAPP_DATABASE_NAME=akeneo_pim      #define your akeneo database.\nAPP_DATABASE_PASSWORD=akeneo_pim  #define your akeneo db password.\nAPP_DATABASE_USER=akeneo_pim      #define your akeneo db user.\nAPP_INDEX_HOST=elasticsearch:9200 #change as localhost:9200\n<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-15-23-37.png\"><img loading=\"lazy\" decoding=\"async\" width=\"904\" height=\"354\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-15-23-37.png\" alt=\"\" class=\"wp-image-15871\"\/><\/a><\/figure>\n\n\n\n<p><strong>Now create a virtual host file for Apache<\/strong> <a href=\"https:\/\/docs.akeneo.com\/7.0\/install_pim\/manual\/system_requirements\/system_install_ubuntu_2204.html#id1\" target=\"_blank\" rel=\"noreferrer noopener\">Click here<\/a><\/p>\n\n\n\n<ul>\n<li>Here we create virtual hosting for our domain in this case we are using public IP, you can define your own domain.<\/li>\n\n\n\n<li>Define the document root and directory path, where you want to install the PIM.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo vim \/etc\/apache2\/sites-available\/akeneo-pim.local.conf<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-18-20-18.png\"><img loading=\"lazy\" decoding=\"async\" width=\"629\" height=\"440\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-18-20-18.png\" alt=\"\" class=\"wp-image-15911\"\/><\/a><\/figure>\n\n\n\n<ul>\n<li>After creating a virtual host for Akeneo, Add the below syntax in apache.conf to define the user home directory.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-17-05-04.png\"><img loading=\"lazy\" decoding=\"async\" width=\"344\" height=\"91\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-17-05-04.png\" alt=\"\" class=\"wp-image-15887\"\/><\/a><\/figure>\n\n\n\n<ul>\n<li>Make changes in the Apache envvars file as per your user<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-17-07-13.png\"><img loading=\"lazy\" decoding=\"async\" width=\"634\" height=\"125\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-17-07-13.png\" alt=\"\" class=\"wp-image-15888\"\/><\/a><\/figure>\n\n\n\n<ul>\n<li>user need to define in php fpm as user, group, listen.owner, and listen.group<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">vim \/etc\/php\/8.1\/fpm\/pool.d\/www.conf<\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-17-09-15.png\"><img loading=\"lazy\" decoding=\"async\" width=\"627\" height=\"441\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-17-09-15.png\" alt=\"\" class=\"wp-image-15890\"\/><\/a><\/figure>\n\n\n\n<p>change the permission as per your user<\/p>\n\n\n\n<ul>\n<li>Set the owner and group owner for php fpm.<\/li>\n\n\n\n<li>Enable the conf file which you create for your domain and restart the Apache service.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo chown -R akeneo:akeneo \/etc\/php\/8.1\/fpm\/pool.d\/www.conf\nsudo chown -R akeneo:akeneo \/var\/run\/php\/php8.1-fpm.sock\nservice php8.1-fpm restart\ncd \/etc\/apache2\/sites-available\na2ensite akeneo-pim.local.conf\napache2ctl -t\na2enmod rewrite\nsystemctl restart apache2<\/pre>\n\n\n\n<p>Go to the user home directory where you define the document root path<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/home\/akeneo\/pim-community-standard\napt-get install make\nNO_DOCKER=true make<\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-17-03-35.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"367\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-17-03-35-1024x367.png\" alt=\"\" class=\"wp-image-15894\"\/><\/a><\/figure>\n\n\n\n<p>Now define the user and directory permission<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">chown -R akeneo:akeneo pim-community-standard<\/pre>\n\n\n\n<p>Now hit the URL &#8220;http:\/\/your_public_IP\/&#8221; on the browser, and finally, you have successfully set up Akeneo PIM.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-17-29-20.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"533\" src=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-17-29-20-1024x533.png\" alt=\"\" class=\"wp-image-15895\"\/><\/a><\/figure>\n\n\n\n<p><br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Need Support?<\/h2>\n\n\n\n<p>Thank You for reading this Blog!<\/p>\n\n\n\n<p>For further more interesting blogs, keep in touch with us. If you need any kind of support, simply raise a ticket at&nbsp;<strong><a href=\"https:\/\/webkul.uvdesk.com\/en\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/webkul.uvdesk.com\/en\/<\/a>.<\/strong><\/p>\n\n\n\n<p>You may also visit our Odoo development services and quality&nbsp;<strong><a href=\"https:\/\/store.webkul.com\/index.php\/Odoo.html\">Odoo Extensions<\/a><\/strong>.<\/p>\n\n\n\n<p><strong>For further help or query, please&nbsp;<a href=\"https:\/\/cloudkul.com\/contact\/\">contact<\/a>&nbsp;us or raise a&nbsp;<a href=\"https:\/\/webkul.uvdesk.com\/en\/customer\/create-ticket\/\">ticket<\/a>.<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Akeneo PIM (Product Information Management) is an open-source software developed by Akeneo to improve customer <a class=\"text-primary\" title=\"read more\" href=\"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":47,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_mi_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[528,32,2,87],"tags":[846,425,16,3,568,205],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Akeneo 7.x Installation on Ubuntu 22.04 - Cloudkul<\/title>\n<meta name=\"description\" content=\"Akeneo pim installation in ubuntu 22.04 akeneo pim version 7\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Akeneo 7.x Installation on Ubuntu 22.04 - Cloudkul\" \/>\n<meta property=\"og:description\" content=\"Akeneo pim installation in ubuntu 22.04 akeneo pim version 7\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/\" \/>\n<meta property=\"og:site_name\" content=\"Cloudkul\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-18T07:49:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-07T12:35:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-12-30-21.png\" \/>\n<meta name=\"author\" content=\"Kaushal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/\",\"url\":\"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/\",\"name\":\"Akeneo 7.x Installation on Ubuntu 22.04 - Cloudkul\",\"isPartOf\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#website\"},\"datePublished\":\"2023-07-18T07:49:55+00:00\",\"dateModified\":\"2024-10-07T12:35:12+00:00\",\"author\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/8a7473401d40d9f543d80fd5f9e6ba5e\"},\"description\":\"Akeneo pim installation in ubuntu 22.04 akeneo pim version 7\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Akeneo 7.x Installation on Ubuntu 22.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#website\",\"url\":\"https:\/\/cloudkul.com\/blog\/\",\"name\":\"Cloudkul\",\"description\":\"Host your eCommerce Store on AWS with Optimized Performance\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudkul.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/8a7473401d40d9f543d80fd5f9e6ba5e\",\"name\":\"Kaushal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d11055c635efc7637e61aa8121f19d47?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d11055c635efc7637e61aa8121f19d47?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g\",\"caption\":\"Kaushal\"},\"url\":\"https:\/\/cloudkul.com\/blog\/author\/kaushal-devops432\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Akeneo 7.x Installation on Ubuntu 22.04 - Cloudkul","description":"Akeneo pim installation in ubuntu 22.04 akeneo pim version 7","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/","og_locale":"en_US","og_type":"article","og_title":"Akeneo 7.x Installation on Ubuntu 22.04 - Cloudkul","og_description":"Akeneo pim installation in ubuntu 22.04 akeneo pim version 7","og_url":"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/","og_site_name":"Cloudkul","article_published_time":"2023-07-18T07:49:55+00:00","article_modified_time":"2024-10-07T12:35:12+00:00","og_image":[{"url":"https:\/\/cloudkul.com\/blog\/wp-content\/uploads\/2023\/07\/Screenshot-from-2023-07-11-12-30-21.png"}],"author":"Kaushal","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/","url":"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/","name":"Akeneo 7.x Installation on Ubuntu 22.04 - Cloudkul","isPartOf":{"@id":"https:\/\/cloudkul.com\/blog\/#website"},"datePublished":"2023-07-18T07:49:55+00:00","dateModified":"2024-10-07T12:35:12+00:00","author":{"@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/8a7473401d40d9f543d80fd5f9e6ba5e"},"description":"Akeneo pim installation in ubuntu 22.04 akeneo pim version 7","breadcrumb":{"@id":"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/cloudkul.com\/blog\/akeneo-installation-on-ubuntu-22-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Akeneo 7.x Installation on Ubuntu 22.04"}]},{"@type":"WebSite","@id":"https:\/\/cloudkul.com\/blog\/#website","url":"https:\/\/cloudkul.com\/blog\/","name":"Cloudkul","description":"Host your eCommerce Store on AWS with Optimized Performance","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudkul.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/8a7473401d40d9f543d80fd5f9e6ba5e","name":"Kaushal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d11055c635efc7637e61aa8121f19d47?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d11055c635efc7637e61aa8121f19d47?s=96&d=https%3A%2F%2Fs.gravatar.com%2Favatar%2F6148c37469011bc2f8e491ca8f5de495%3Fs%3D80&r=g","caption":"Kaushal"},"url":"https:\/\/cloudkul.com\/blog\/author\/kaushal-devops432\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/15817"}],"collection":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/users\/47"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/comments?post=15817"}],"version-history":[{"count":246,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/15817\/revisions"}],"predecessor-version":[{"id":18256,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/posts\/15817\/revisions\/18256"}],"wp:attachment":[{"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/media?parent=15817"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/categories?post=15817"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudkul.com\/blog\/wp-json\/wp\/v2\/tags?post=15817"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}