{"id":918,"date":"2019-10-02T09:50:40","date_gmt":"2019-10-02T14:50:40","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=918"},"modified":"2019-10-02T09:50:40","modified_gmt":"2019-10-02T14:50:40","slug":"how-to-install-shopware-ce-on-centos-7","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/","title":{"rendered":"How to Install Shopware CE on CentOS 7"},"content":{"rendered":"<div id=\"linux-849365205\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>In this article, we will show you how to install the Shopware Community Edition (CE) on CentOS 7 server.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-922\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/09\/installing-configuring-shopware-ce-for-centos7-vps.jpg\" alt=\"\" width=\"170\" height=\"37\" \/>Shopware is an e-commerce platform written in PHP and is used for running online businesses and selling products and services online. This application is very easy to install and set up and does not require any sort of coding knowledge. Shopware CE is free and open-source, and has a user-friendly interface that allows for the use of drag and drop throughout the eCommerce platform. Let&#8217;s begin with the install process.<\/p>\n<p><!--more--><\/p>\n<h2>Prerequisites:<\/h2>\n<p>We will be using a managed CentOS 7 VPS for this tutorial. Please make sure that you have met the following prerequisites:<\/p>\n<ul>\n<li>A publicly-accessible VPS with CentOS 7 installed.<\/li>\n<li>A domain or subdomain name pointing to your server public IP address.<\/li>\n<li>Access to the root user or user with sudo privileges.<\/li>\n<\/ul>\n<h2>Step 1: Connect to Your Server<\/h2>\n<p>Log in to your public server via SSH using the following commands on your preferred terminal:<\/p>\n<pre>ssh <span style=\"color: #ff0000;\">[username]<\/span>@<span style=\"color: #ff0000;\">[server_ip_address]<\/span> -p <span style=\"color: #ff0000;\">[port_number]<\/span><\/pre>\n<p>If you want to check the version of CentOS installed on your machine, you can run the following command:<\/p>\n<pre>cat \/etc\/redhat-release<\/pre>\n<p>The output should look like this:<\/p>\n<pre>CentOS Linux release 7.5.1804 (Core)<\/pre>\n<p>By running the command below, you can update your server:<\/p>\n<pre>yum update -y<\/pre>\n<h2>Step 2: Install PHP v7.2<\/h2>\n<p>This application needs a version that&#8217;s higher than PHP 5.6.4 in order to work. However, the YUM repository contains PHP 5.4, which does not meet the requirements of this application. That&#8217;s why in this step, we will install PHP version 7.2. Run this command to add the REMI repository to your system:<\/p>\n<pre>yum install http:\/\/rpms.remirepo.net\/enterprise\/remi-release-7.rpm<\/pre>\n<p>Now enable the REMI repo with the command:<\/p>\n<pre>yum-config-manager --enable remi-php72\r\nyum update -y<\/pre>\n<p>Run the following command to install PHP and all required PHP extensions:<\/p>\n<pre>yum install -y php72 php72-cli php72-fpm php72-common php72-mysql php72-curl php72-json php72-zip php72-gd php72-xml php72-mbstring php72-opcache php72-php-mysqlnd php-pecl-zip unzip zip php72-php-fpm php72-php-gd php72-php-mbstring php72-php-opcache php72-php-xml php72-php-xmlrpc<\/pre>\n<p>To verify your installed PHP version you can type the following:<\/p>\n<pre>php -v<\/pre>\n<p>You should see the following output:<\/p>\n<pre>PHP 7.2.18 (cli) (built: Apr 30 2019 15:26:52) ( NTS )\r\nCopyright (c) 1997-2018 The PHP Group\r\nZend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies<\/pre>\n<p>We also need to make several changes to the PHP configuration file required by the Shopware application. Open the <code>php.ini<\/code> configuration file with your preferred text editor (in our example we will use nano).<\/p>\n<pre>nano \/etc\/php.ini<\/pre>\n<p>Find the following lines in the configuration file and change the value from 128MB to 256MB.<\/p>\n<pre>; Maximum amount of memory a script may consume (128MB)\r\n; http:\/\/php.net\/memory-limit\r\nmemory_limit = 128M<\/pre>\n<p>Find the following lines in the configuration file and change the value from 2MB to 6MB.<\/p>\n<pre>; Maximum allowed size for uploaded files.\r\n; http:\/\/php.net\/upload-max-filesize\r\nupload_max_filesize = 2M<\/pre>\n<p>Save and Exit from the editor. In order for our changes to take effect, we will restart the Apache web server using this command:<\/p>\n<pre>systemctl restart httpd<\/pre>\n<h2>Step 3: Install MariaDB and Set Up a Database<\/h2>\n<p>To install MariaDB 10.1 on the server, we need to add the MariaDB YUM repository file, <code>MariaDB.repo<\/code>. Create the MariaDB.repo file with the command:<\/p>\n<pre>nano \/etc\/yum.repos.d\/MariaDB.repo<\/pre>\n<p>Add the following lines of code:<\/p>\n<pre>[mariadb]\r\nname = MariaDB\r\nbaseurl = http:\/\/yum.mariadb.org\/10.1\/centos7-amd64\r\ngpgkey=https:\/\/yum.mariadb.org\/RPM-GPG-KEY-MariaDB\r\ngpgcheck=1<\/pre>\n<p>Save and Exit.<\/p>\n<p>Use the following commands to update your system and install MariaDB.<\/p>\n<pre>yum update -y \r\nyum install MariaDB-server MariaDB-client -y<\/pre>\n<p>Upon the installation, you can start and enable the MariaDB service with this command:<\/p>\n<pre>systemctl start mariadb\r\nsystemctl enable mariadb<\/pre>\n<p>To verify that the MariaDB service is running, we will run the command:<\/p>\n<pre>systemctl status mariadb<\/pre>\n<p>The next command is optional. You can run the command if you want to secure the MariaDB server by disallowing remote root access, removing the test database, and creating a root password.<\/p>\n<pre>mysql_secure_installation<\/pre>\n<p>It will first ask to replace the root password. It will then ask some questions \u2013 you can answer the prompts with \u201cY\u201d for YES. We recommend answering with Yes to all of these, as they all will help improve the security of your database server:<\/p>\n<pre>Enter current password for root (enter for none): Just press the [Enter] key, as no password is set by default\r\nSet root password? [Y\/n]: Y\r\nNew password: Enter your password\r\nRe-enter new password: Repeat your password\r\nRemove anonymous users? [Y\/n]: Y\r\nDisallow root login remotely? [Y\/n]: Y\r\nRemove test database and access to it? [Y\/n]: Y\r\nReload privilege tables now? [Y\/n]: Y<\/pre>\n<p>Restart the MariaDB server, so the changes will take effect.<\/p>\n<pre>systemctl restart mariadb<\/pre>\n<p>You can verify the MariaDB version by typing the command:<\/p>\n<pre>mysql --version<\/pre>\n<p>You should get an output similar to:<\/p>\n<pre>mysql Ver 15.1 Distrib 10.1.38-MariaDB, for Linux (x86_64) using readline 5.1<\/pre>\n<p>Now you should be able to log in to the MySQL shell with the command:<\/p>\n<pre>mysql -u root -p<\/pre>\n<p>Then type the password you created above to sign in. Once you are in the MySQL shell, you can use the following command and create a database called &#8216;shopware&#8217; for the Shopware application.<\/p>\n<pre>CREATE DATABASE shopware;<\/pre>\n<p>To grant the user &#8216;shopware&#8217; with full access to the &#8216;shopware&#8217; database, run the next command:<\/p>\n<pre>GRANT ALL PRIVILEGES ON shopware.* TO 'shopware'@'localhost' IDENTIFIED BY '<span style=\"color: #ff0000;\">$tr0ng_pa55worD<\/span>';<\/pre>\n<p>Please do not forget to change the <code>$tr0ng_pa55worD<\/code>with your strong password.<\/p>\n<p>Now you can use the flush privileges operation to reload the grant tables. After this, exit from the MySQL shell.<\/p>\n<pre>FLUSH PRIVILEGES;\r\n\\q<\/pre>\n<h2>Step 4: Install Shopware<\/h2>\n<p>In this step, we will download the latest version of Shopware (that is 5.5.8 at the time of writing &#8211; you can always visit their website and check for a new or specific version you need). To download Shopware, run the following command:<\/p>\n<pre>cd \/var\/www\/ &amp;&amp; wget https:\/\/releases.shopware.com\/install_5.5.8_d5bf50630eeaacc6679683e0ab0dcba89498be6d.zip?_ga=2.267606606.1339280706.1556195384-1042632852.1556195384 -O shopware.zip<\/pre>\n<p>Use the unzip command to unpack the application:<\/p>\n<pre>unzip shopware.zip -d shopware\/<\/pre>\n<p>as well as change the ownership of the application:<\/p>\n<pre>chown -R apache:apache shopware\/<\/pre>\n<h2>Step 5: Configure Apache<\/h2>\n<p>To configure Apache, we will begin by checking whether Apache is running on our server.<\/p>\n<pre>systemctl status httpd<\/pre>\n<p>Now that you know that Apache2 is running on your server, you can continue with creating a virtual host for your domain.<\/p>\n<pre>nano \/etc\/httpd\/conf.d\/domain_name.conf<\/pre>\n<p>add the following content to the file:<\/p>\n<pre>&lt;VirtualHost *:80&gt;\r\n    ServerAdmin webmaster@<span style=\"color: #ff0000;\">yourdomain.com<\/span>\r\n    DocumentRoot \/var\/www\/shopware\r\n    ServerName <code>yourdomain.com<\/code> ServerAlias <code>www.yourdomain.com<\/code> ErrorLog \"\/var\/log\/httpd\/<span style=\"color: #ff0000;\">yourdomain.com<\/span>-error_log\" CustomLog \"\/var\/log\/httpd\/<span style=\"color: #ff0000;\">yourdomain.com<\/span>-access_log\" combined &lt;Directory \"\/var\/www\/shopware\/\"&gt; DirectoryIndex index.html index.php Options FollowSymLinks AllowOverride All Require all granted &lt;\/Directory&gt; &lt;\/VirtualHost&gt;<\/pre>\n<p>Please do not forget to change <code>yourdomain.com<\/code>with your actual registered domain name. Once you have finished with editing, you can save and close the configuration file.<\/p>\n<p>Make a quick syntax error check with the following command:<\/p>\n<pre>httpd -t<\/pre>\n<p>Restart the Apache2 server, so the changes will take effect.<\/p>\n<pre>systemctl restart httpd<\/pre>\n<h2>Step 6: Log in to Shopware<\/h2>\n<p>Since the installation is completed, you should be able to access the Shopware CE on your web browser. Open your favorite browser and type your domain. <code>http:\/\/yourdomain.com<\/code>\u00a0is the domain that we used.<br \/>\nYou should be able to see the Shopware installer page:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-919\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/09\/Shopware-5-Installer.png\" alt=\"\" width=\"988\" height=\"674\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/09\/Shopware-5-Installer.png 988w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/09\/Shopware-5-Installer-300x205.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/09\/Shopware-5-Installer-768x524.png 768w\" sizes=\"(max-width: 988px) 100vw, 988px\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>Now you can choose your language and finish the web installation by following the installation wizard.<\/p>\n<p>Congratulations! If you carefully followed our instructions in this tutorial, then you will have successfully installed Shopware CE on your CentOS 7 VPS. Now you can start to explore this amazing application and build your online shop.<\/p>\n<p>You can also check our tutorial on how to install <a href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-shopware-ce-on-ubuntu-18-04\/\" target=\"_blank\" rel=\"noopener noreferrer\">Shopware CE on Ubuntu 18.04<\/a>, and how to install <a href=\"https:\/\/www.rosehosting.com\/blog\/how-to-install-shopware-ce-on-debian-9\/\" target=\"_blank\" rel=\"noopener noreferrer\">Shopware CE on Debian 9<\/a>.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-923\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/09\/team-of-expert-admins-help-support-for-shopware-ce-on-centos7-server.jpg\" alt=\"\" width=\"170\" height=\"37\" \/>Of course, you don\u2019t have to install Shopware CE on your CentOS 7 VPS if you use one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">Managed Linux Support Services<\/a>, in which case you can simply ask our team of expert Linux admins to install and configure Shopware CE on your server for you. They are available 24\/7 and will take care of your request immediately.<\/p>\n<p><code>PS<\/code>. If you liked this post on how to install Shopware CE, please share it with your friends on the social networks using the share shortcuts, or simply leave a comment in the comments section. Thank you.<\/p><div id=\"linux-2636438693\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will show you how to install the Shopware Community Edition (CE) on CentOS 7 server. Shopware is an e-commerce platform written in PHP and is used for running online businesses and selling products and services online. This application is very easy to install and set up and does not require any [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":921,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-918","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Shopware CE on CentOS 7 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"In this article, we will show you how to install the Shopware Community Edition (CE) on CentOS 7 server. Shopware is an e-commerce platform written in PHP\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Shopware CE on CentOS 7 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"In this article, we will show you how to install the Shopware Community Edition (CE) on CentOS 7 server. Shopware is an e-commerce platform written in PHP\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2019-10-02T14:50:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-shopware-ce-on-centos7.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-shopware-ce-on-centos-7\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-shopware-ce-on-centos-7\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Shopware CE on CentOS 7\",\"datePublished\":\"2019-10-02T14:50:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-shopware-ce-on-centos-7\\\/\"},\"wordCount\":1032,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-shopware-ce-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/how-to-install-shopware-ce-on-centos7.jpg\",\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-shopware-ce-on-centos-7\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-shopware-ce-on-centos-7\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-shopware-ce-on-centos-7\\\/\",\"name\":\"How to Install Shopware CE on CentOS 7 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-shopware-ce-on-centos-7\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-shopware-ce-on-centos-7\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/how-to-install-shopware-ce-on-centos7.jpg\",\"datePublished\":\"2019-10-02T14:50:40+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"In this article, we will show you how to install the Shopware Community Edition (CE) on CentOS 7 server. Shopware is an e-commerce platform written in PHP\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-shopware-ce-on-centos-7\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-shopware-ce-on-centos-7\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-shopware-ce-on-centos-7\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/how-to-install-shopware-ce-on-centos7.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/how-to-install-shopware-ce-on-centos7.jpg\",\"width\":750,\"height\":410},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-shopware-ce-on-centos-7\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Shopware CE on CentOS 7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Shopware CE on CentOS 7 | LinuxHostSupport","description":"In this article, we will show you how to install the Shopware Community Edition (CE) on CentOS 7 server. Shopware is an e-commerce platform written in PHP","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:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Shopware CE on CentOS 7 | LinuxHostSupport","og_description":"In this article, we will show you how to install the Shopware Community Edition (CE) on CentOS 7 server. Shopware is an e-commerce platform written in PHP","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2019-10-02T14:50:40+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-shopware-ce-on-centos7.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Shopware CE on CentOS 7","datePublished":"2019-10-02T14:50:40+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/"},"wordCount":1032,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-shopware-ce-on-centos7.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/","name":"How to Install Shopware CE on CentOS 7 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-shopware-ce-on-centos7.jpg","datePublished":"2019-10-02T14:50:40+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"In this article, we will show you how to install the Shopware Community Edition (CE) on CentOS 7 server. Shopware is an e-commerce platform written in PHP","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-shopware-ce-on-centos7.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-shopware-ce-on-centos7.jpg","width":750,"height":410},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-shopware-ce-on-centos-7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Shopware CE on CentOS 7"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/918","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=918"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/918\/revisions"}],"predecessor-version":[{"id":926,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/918\/revisions\/926"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/921"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=918"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=918"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=918"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}