{"id":1506,"date":"2021-08-30T12:45:57","date_gmt":"2021-08-30T17:45:57","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=1506"},"modified":"2021-11-14T13:38:02","modified_gmt":"2021-11-14T19:38:02","slug":"how-to-install-neos-cms-on-ubuntu-20-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/","title":{"rendered":"How to Install Neos CMS on Ubuntu 20.04"},"content":{"rendered":"<div id=\"linux-3640154261\" 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>Neos CMS is an open-source and PHP-based content management system created by over 100+ contributors around the world. It is highly extensible and follows a content repository pattern. Neos CMS can be integrated with other modern front-end technologies using JSON or GraphQL export formats. With Neos CMS, you can create your blog and website without any programming knowledge.<\/p>\n<p>This tutorial will explain how to install Neos CMS with Apache on Ubuntu 20.04.<\/p>\n<p><!--more--><\/p>\n<h2>Prerequisites<\/h2>\n<ul>\n<li>A fresh Ubuntu 20.04 VPS.<\/li>\n<li>Access to the root user account (or access to an admin account with root privileges)<\/li>\n<\/ul>\n<h2>Log in to the Server &amp; Update the Server OS Packages<\/h2>\n<p>First, log in to your Ubuntu 20.04 server via SSH as the root user:<\/p>\n<pre class=\"wp-block-preformatted\">ssh root@IP_Address -p Port_number<\/pre>\n<p>You will need to replace \u2018<strong>IP_Address<\/strong>\u2018 and \u2018<strong>Port_number<\/strong>\u2018 with your server\u2019s respective IP address and SSH port number. Additionally, replace \u2018<strong>root<\/strong>\u2018 with the username of the admin account if necessary.<\/p>\n<p>Before starting, you have to make sure that all Ubuntu 20.04 OS packages installed on the server are up to date. You can do this by running the following commands:<\/p>\n<pre class=\"wp-block-preformatted\">apt-get update -y<\/pre>\n<h2>Install Apache, MySQL and PHP<\/h2>\n<p>First, install the Apache web server and MySQL 8 on your server:<\/p>\n<pre class=\"wp-block-preformatted\">apt-get install apache2 mysql-server -y<\/pre>\n<p>After installing both packages, run the following command to install PHP with all required extensions:<\/p>\n<pre class=\"wp-block-preformatted\">apt-get install php7.4 libapache2-mod-php7.4 php7.4-common php7.4-mysql php7.4-gmp php7.4-curl php7.4-intl php7.4-mbstring php7.4-xmlrpc php7.4-gd php7.4-bcmath php7.4-xml php7.4-cli php7.4-gmagick php7.4-zip curl unzip git -y<\/pre>\n<p>Once all the packages are installed the start the Apache and MySQL service with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">systemctl start apache2\nsystemctl start mysql<\/pre>\n<h2>Create MySQL Database and User<\/h2>\n<p>Neos CMS uses MySQL or MariaDB as a database backend. So you will need to create a user and database for Neos CMS.<\/p>\n<p>First, connect to the MySQL with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">mysql<\/pre>\n<p>Next, create a database and user with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">mysql&gt; CREATE DATABASE neos CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;\nmysql&gt; CREATE USER 'neos'@'localhost' IDENTIFIED BY 'securepassword';<\/pre>\n<p>Next, grant all the privileges on neos database with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">mysql&gt; GRANT ALL PRIVILEGES ON neos.* TO 'neos'@'localhost';<\/pre>\n<p>Next, flush the privileges and exit from the MySQL shell using the following command:<\/p>\n<pre class=\"wp-block-preformatted\">mysql&gt; FLUSH PRIVILEGES;\nmysql&gt; EXIT;<\/pre>\n<h2>Install Neos CMS<\/h2>\n<p>Before starting, you will need to install the Composer to your server. Run the following command to install Composer:<\/p>\n<pre class=\"wp-block-preformatted\">curl -sS https:\/\/getcomposer.org\/installer | php\nmv composer.phar \/usr\/local\/bin\/composer\nchmod +x \/usr\/local\/bin\/composer<\/pre>\n<p>Next, change the directory to Apache webroot and download the Neos CMS using the Composer:<\/p>\n<pre class=\"wp-block-preformatted\">cd \/var\/www\/html\/\ncomposer create-project --no-dev neos\/neos-base-distribution neoscms<\/pre>\n<p>Next, install the required module and update the Composer with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">composer require guzzlehttp\/psr7 \"^1.8.2\"\ncomposer update<\/pre>\n<p>Next, set proper permission and ownership to the neoscms directory:<\/p>\n<pre class=\"wp-block-preformatted\">chown -R www-data:www-data \/var\/www\/html\/neoscms\/\nchmod -R 755 \/var\/www\/html\/neoscms\/<\/pre>\n<h2>Configure Apache for Neos CMS<\/h2>\n<p>Next, create an Apache virtual host configuration file for Neos CMS:<\/p>\n<pre class=\"wp-block-preformatted\">nano \/etc\/apache2\/sites-available\/neoscms.conf<\/pre>\n<p>Add the following lines:<\/p>\n<pre class=\"wp-block-preformatted\">&lt;VirtualHost *:80&gt;\n     ServerAdmin admin@yourdomain.com\n     DocumentRoot \/var\/www\/html\/neoscms\/Web\n     ServerName neos.yourdomain.com\n     &lt;Directory \/var\/www\/html\/neoscms\/Web\/&gt;\n          Options FollowSymlinks\n          AllowOverride All\n          Require all granted\n     &lt;\/Directory&gt;\n\n     ErrorLog ${APACHE_LOG_DIR}\/neos_error.log\n     CustomLog ${APACHE_LOG_DIR}\/neos_access.log combined\n\n     &lt;Directory \/var\/www\/html\/neoscms\/Web\/&gt;\n            RewriteEngine on\n            RewriteBase \/\n            RewriteCond %{REQUEST_FILENAME} !-f\n            RewriteRule ^(.*) index.php [PT,L]\n    &lt;\/Directory&gt;\n&lt;\/VirtualHost&gt;\n<\/pre>\n<p>Save the file when you are done. Then, enable the Apache virtual host and rewrite module with the following command:<\/p>\n<pre class=\"wp-block-preformatted\">a2ensite neoscms.conf\na2enmod rewrite<\/pre>\n<p>Next, reload the Apache service to apply the configuration changes:<\/p>\n<pre class=\"wp-block-preformatted\">systemctl restart apache2<\/pre>\n<h2>Access Neos CMS Installation Wizard<\/h2>\n<p>Now, you can access the Neos CMS web installation wizard using the URL <strong>http:\/\/neos.yourdomain.com<\/strong> as shown below:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1507\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/install-neos-cms-on-ubuntu-20.04.png\" alt=\"install neos cms on ubuntu 20.04\" width=\"1024\" height=\"604\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/install-neos-cms-on-ubuntu-20.04.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/install-neos-cms-on-ubuntu-20.04-300x177.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/install-neos-cms-on-ubuntu-20.04-768x453.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p>Click on <strong>Go to setup<\/strong> button. You will be asked to provide a setup password as shown below:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1508\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/installing-neos-cms-on-ubuntu-20.04.png\" alt=\"installing neos cms on ubuntu 20.04\" width=\"1024\" height=\"565\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/installing-neos-cms-on-ubuntu-20.04.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/installing-neos-cms-on-ubuntu-20.04-300x166.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/installing-neos-cms-on-ubuntu-20.04-768x424.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p>Type the password from the <strong>SetupPassword.txt<\/strong> file and click on the <strong>Login<\/strong> button. You should see the requirements check page:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1509\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/set-up-neos-cms-on-ubuntu-20.04.png\" alt=\"set up neos cms on ubuntu 20.04\" width=\"1024\" height=\"605\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/set-up-neos-cms-on-ubuntu-20.04.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/set-up-neos-cms-on-ubuntu-20.04-300x177.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/set-up-neos-cms-on-ubuntu-20.04-768x454.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p>Click on the <strong>Next<\/strong> button. You should see the database configuration page:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1510\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/configure-neos-cms-on-ubuntu-20.04.png\" alt=\"configure neos cms on ubuntu 20.04\" width=\"916\" height=\"667\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/configure-neos-cms-on-ubuntu-20.04.png 916w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/configure-neos-cms-on-ubuntu-20.04-300x218.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/configure-neos-cms-on-ubuntu-20.04-768x559.png 768w\" sizes=\"(max-width: 916px) 100vw, 916px\" \/><\/p>\n<p>Provide your database details and click on the<strong> Next<\/strong> button. You should see the administrator account setup page:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1511\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/installation-of-neos-cms-on-ubuntu-20.04.png\" alt=\"installation of neos cms on ubuntu 20.04\" width=\"1024\" height=\"612\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/installation-of-neos-cms-on-ubuntu-20.04.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/installation-of-neos-cms-on-ubuntu-20.04-300x179.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/installation-of-neos-cms-on-ubuntu-20.04-768x459.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p>Provide your admin username, password and click on the <strong>Next<\/strong> button. You should see the site configuration page:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1512\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/guide-on-installing-neos-cms-on-ubuntu-20.04.png\" alt=\"guide on installing neos cms on ubuntu 20.04\" width=\"1023\" height=\"643\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/guide-on-installing-neos-cms-on-ubuntu-20.04.png 1023w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/guide-on-installing-neos-cms-on-ubuntu-20.04-300x189.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/guide-on-installing-neos-cms-on-ubuntu-20.04-768x483.png 768w\" sizes=\"(max-width: 1023px) 100vw, 1023px\" \/><\/p>\n<p>Provide your Sitename and click on the <strong>Next<\/strong> button. Once the installation is completed, you should see the following page:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1513\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/tutorial-on-installing-neos-cms-on-ubuntu-20.04.png\" alt=\"tutorial on installing neos cms on ubuntu 20.04\" width=\"913\" height=\"632\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/tutorial-on-installing-neos-cms-on-ubuntu-20.04.png 913w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/tutorial-on-installing-neos-cms-on-ubuntu-20.04-300x208.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/tutorial-on-installing-neos-cms-on-ubuntu-20.04-768x532.png 768w\" sizes=\"(max-width: 913px) 100vw, 913px\" \/><\/p>\n<p>Click on the <strong>go to the backend<\/strong>. You should see the Neos CMS login page:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1514\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/how-do-you-install-neos-cms-on-ubuntu-20.04.png\" alt=\"how do you install neos cms on ubuntu 20.04\" width=\"1024\" height=\"551\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/how-do-you-install-neos-cms-on-ubuntu-20.04.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/how-do-you-install-neos-cms-on-ubuntu-20.04-300x161.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/how-do-you-install-neos-cms-on-ubuntu-20.04-768x413.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p>Provide your admin username, password and click on the <strong>Login<\/strong> button. You will be redirected to the Neos CMS dashboard:<\/p>\n<p><img decoding=\"async\" class=\"aligncenter size-full wp-image-1515\" src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/neos-cms-ubuntu-20.04.png\" alt=\"neos cms ubuntu 20.04\" width=\"1024\" height=\"531\" srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/neos-cms-ubuntu-20.04.png 1024w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/neos-cms-ubuntu-20.04-300x156.png 300w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/neos-cms-ubuntu-20.04-768x398.png 768w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/p>\n<p>Of course, you don\u2019t need to do any of this if your server is covered by our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">Managed Linux Support<\/a> services in which case you can simply ask our expert Linux admins to install Neos CMS onto your Ubuntu 20.04 server for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p>PS.&nbsp;If you liked this post, please share it with your friends on the social networks using the buttons below, or simply leave a comment in the comment section. Thanks<\/p><div id=\"linux-1801793136\" 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<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Neos CMS is an open-source and PHP-based content management system created by over 100+ contributors around the world. It is highly extensible and follows a content repository pattern. Neos CMS can be integrated with other modern front-end technologies using JSON or GraphQL export formats. With Neos CMS, you can create your blog and website without [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1516,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[38,198,20],"class_list":["post-1506","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-cms","tag-neos","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Neos CMS on Ubuntu 20.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Neos CMS is an open-source and PHP-based content management system created by over 100+ contributors around the world. We&#039;ll show you how to install it on Ubuntu 20.04\" \/>\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-neos-cms-on-ubuntu-20-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Neos CMS on Ubuntu 20.04 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Neos CMS is an open-source and PHP-based content management system created by over 100+ contributors around the world. We&#039;ll show you how to install it on Ubuntu 20.04\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/\" \/>\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=\"2021-08-30T17:45:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-14T19:38:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/how-to-install-neos-cms-on-ubuntu-20.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"372\" \/>\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=\"5 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-neos-cms-on-ubuntu-20-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-neos-cms-on-ubuntu-20-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Neos CMS on Ubuntu 20.04\",\"datePublished\":\"2021-08-30T17:45:57+00:00\",\"dateModified\":\"2021-11-14T19:38:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-neos-cms-on-ubuntu-20-04\\\/\"},\"wordCount\":669,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-neos-cms-on-ubuntu-20-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/how-to-install-neos-cms-on-ubuntu-20.04.jpg\",\"keywords\":[\"cms\",\"neos\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-neos-cms-on-ubuntu-20-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-neos-cms-on-ubuntu-20-04\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-neos-cms-on-ubuntu-20-04\\\/\",\"name\":\"How to Install Neos CMS on Ubuntu 20.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-neos-cms-on-ubuntu-20-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-neos-cms-on-ubuntu-20-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/how-to-install-neos-cms-on-ubuntu-20.04.jpg\",\"datePublished\":\"2021-08-30T17:45:57+00:00\",\"dateModified\":\"2021-11-14T19:38:02+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Neos CMS is an open-source and PHP-based content management system created by over 100+ contributors around the world. We'll show you how to install it on Ubuntu 20.04\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-neos-cms-on-ubuntu-20-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-neos-cms-on-ubuntu-20-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-neos-cms-on-ubuntu-20-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/how-to-install-neos-cms-on-ubuntu-20.04.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/how-to-install-neos-cms-on-ubuntu-20.04.jpg\",\"width\":742,\"height\":372},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-neos-cms-on-ubuntu-20-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Neos CMS on Ubuntu 20.04\"}]},{\"@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 Neos CMS on Ubuntu 20.04 | LinuxHostSupport","description":"Neos CMS is an open-source and PHP-based content management system created by over 100+ contributors around the world. We'll show you how to install it on Ubuntu 20.04","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-neos-cms-on-ubuntu-20-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Neos CMS on Ubuntu 20.04 | LinuxHostSupport","og_description":"Neos CMS is an open-source and PHP-based content management system created by over 100+ contributors around the world. We'll show you how to install it on Ubuntu 20.04","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2021-08-30T17:45:57+00:00","article_modified_time":"2021-11-14T19:38:02+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/how-to-install-neos-cms-on-ubuntu-20.04.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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Neos CMS on Ubuntu 20.04","datePublished":"2021-08-30T17:45:57+00:00","dateModified":"2021-11-14T19:38:02+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/"},"wordCount":669,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/how-to-install-neos-cms-on-ubuntu-20.04.jpg","keywords":["cms","neos","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/","name":"How to Install Neos CMS on Ubuntu 20.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/how-to-install-neos-cms-on-ubuntu-20.04.jpg","datePublished":"2021-08-30T17:45:57+00:00","dateModified":"2021-11-14T19:38:02+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Neos CMS is an open-source and PHP-based content management system created by over 100+ contributors around the world. We'll show you how to install it on Ubuntu 20.04","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/how-to-install-neos-cms-on-ubuntu-20.04.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2021\/07\/how-to-install-neos-cms-on-ubuntu-20.04.jpg","width":742,"height":372},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-neos-cms-on-ubuntu-20-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Neos CMS on Ubuntu 20.04"}]},{"@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\/1506","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=1506"}],"version-history":[{"count":2,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1506\/revisions"}],"predecessor-version":[{"id":1605,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/1506\/revisions\/1605"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/1516"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=1506"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=1506"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=1506"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}