{"id":1706,"date":"2022-03-30T12:30:00","date_gmt":"2022-03-30T17:30:00","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1706"},"modified":"2022-10-20T01:51:52","modified_gmt":"2022-10-20T06:51:52","slug":"how-to-install-cachet-status-page-system-on-ubuntu-20-04","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/","title":{"rendered":"How to Install Cachet Status Page System on Ubuntu 20.04"},"content":{"rendered":"\n<p>In this blog post, we are going to explain how to install Cachet Status Page System on Ubuntu 20.04 OS.<\/p>\n\n\n\n<p>Cachet is an open-source status page system that allows us to track the downtime of our system outages. Cachet is written in PHP and can be installed very easily on every Linux system. In the next paragraphs, we will install Cachet with LAMP stack and the Composer as an application-level package manager for PHP.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.linuxcloudvps.com\/ubuntu-cloud-vps.html\">Installing Cachet on Ubuntu 20.04<\/a> should take up to 15 minutes. Let&#8217;s get started.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\" id=\"prerequisites\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>A server with Ubuntu 20.04 as OS<\/li><li>User privileges: root or non-root user with sudo privileges<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-1-update-the-system\">Step 1. Update the System<\/h2>\n\n\n\n<p>Every fresh installation of Ubuntu needs the latest system updates, and that is why we are going to update the packages to the latest versions:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt-get update -y &amp;&amp; sudo apt-get upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-2-install-apache-web-server\">Step 2. Install Apache Web Server<\/h2>\n\n\n\n<p>Install the Apache Web server with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt install apache2<\/pre>\n\n\n\n<p>Once, installed start and enable the service.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl enable apache2 &amp;&amp; sudo systemctl start apache2<\/pre>\n\n\n\n<p>Check if the service is up and running:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status apache2<\/pre>\n\n\n\n<p>You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@vps:~# sudo systemctl status apache2\n\u25cf apache2.service - The Apache HTTP Server\n     Loaded: loaded (\/lib\/systemd\/system\/apache2.service; enabled; vendor preset: enabled)\n     Active: active (running) since Tue 2022-02-08 21:59:28 UTC; 1h 2min ago\n       Docs: https:\/\/httpd.apache.org\/docs\/2.4\/\n   Main PID: 668 (apache2)\n      Tasks: 7 (limit: 4617)\n     Memory: 23.9M\n     CGroup: \/system.slice\/apache2.service\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-3-install-php-with-extensions\">Step 3. Install PHP with extensions<\/h2>\n\n\n\n<p>Since Cachet, is written in PHP we need to install the PHP version along with its extensions.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo apt-get install zip unzip php7.4 php7.4-mysql php7.4-curl php7.4-json php7.4-cgi php7.4-xsl php7.4-sqlite php7.4-mbstring<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-4-install-mariadb-database-server\">Step 4. Install MariaDB database server<\/h2>\n\n\n\n<p>We need to install a database server in order to create a database for the Cachet system.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">apt install mariadb-server<\/pre>\n\n\n\n<p>Once, installed enable and start the mariadb service<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl enable mariadb\nsudo systemctl start mariadb<\/pre>\n\n\n\n<p>Check the status of the MariaDB service:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo systemctl status mariadb<\/pre>\n\n\n\n<p>You shoud receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@vps:~# sudo systemctl status mariadb\n\u25cf mariadb.service - MariaDB 10.3.32 database server\n     Loaded: loaded (\/lib\/systemd\/system\/mariadb.service; enabled; vendor preset: enabled)\n     Active: active (running) since Tue 2022-02-08 22:53:56 UTC; 6min ago\n       Docs: man:mysqld(8)\n             https:\/\/mariadb.com\/kb\/en\/library\/systemd\/\n   Main PID: 45956 (mysqld)\n     Status: &quot;Taking your SQL requests now...&quot;\n      Tasks: 30 (limit: 4617)\n     Memory: 67.8M\n     CGroup: \/system.slice\/mariadb.service\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-5-create-a-database-and-database-user\">Step 5. Create a database and database user<\/h2>\n\n\n\n<pre class=\"wp-block-preformatted\">CREATE DATABASE cachet;\nGRANT ALL PRIVILEGES ON cachet.* TO &#039;cachet&#039;@&#039;localhost&#039; IDENTIFIED BY &#039;YourStrongPasswordHere&#039;;\nFLUSH PRIVILEGES;\nexit;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-6-install-composer\">Step 6. Install Composer<\/h2>\n\n\n\n<p>We need to install the Composer so later we can install the Cachet PHP dependencies:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">curl -sS https:\/\/getcomposer.org\/installer | php\n\nchmod +x composer.phar\n\nmv composer.phar \/usr\/local\/bin\/composer\n\ncomposer -V<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-7-install-cachet\">Step 7. Install Cachet<\/h2>\n\n\n\n<p>Go into the &#8220;<b>html<\/b>&#8221; directory, and clone the latest cachet version from Github.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/var\/www\/html\n\ngit clone https:\/\/github.com\/CachetHQ\/Cachet.git .<\/pre>\n\n\n\n<p>Once, the code is cloned the next step is to copy the &#8220;<b>.env.example<\/b>&#8221; file to &#8220;<b>.env<\/b>&#8220;<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cp .env.example .env<\/pre>\n\n\n\n<p>Next is to open the <b>.env<\/b> file and enter the correct database user and credentials.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">DB_DRIVER=mysql\nDB_HOST=localhost\nDB_UNIX_SOCKET=null\nDB_DATABASE=cachet\nDB_USERNAME=cachet\nDB_PASSWORD=YourStrongPasswordHere\nDB_PORT=3306\n<\/pre>\n\n\n\n<p>Once, these values are set up, we need to install the PHP dependencies using the composer command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">composer install<\/pre>\n\n\n\n<p>After installation of the PHP dependencies, we need to generate keys and install the cachet with the commands below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">php artisan key:generate\n\nphp artisan cachet:install<\/pre>\n\n\n\n<p>Select the &#8220;<b>no<\/b>&#8221; options in both cases, and let the installation finish. You should receive the following output:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">root@vps:\/var\/www\/html# php artisan cachet:install\n\n Do you want to configure Cachet before installing? (yes\/no) [no]:\n &amp;amp;gt; &amp;lt;b&amp;gt;no&amp;lt;\/b&amp;gt;\n\nInstalling Cachet...\nClearing settings cache...\nSettings cache cleared!\nSystem was installed!\n**************************************\n*     Application In Production!     *\n**************************************\n\n Do you really wish to run this command? (yes\/no) [no]:\n &amp;amp;gt; &amp;lt;b&amp;gt;no&amp;lt;\/b&amp;gt;\n\nCommand Cancelled!\nConfiguration cache cleared!\nConfiguration cached successfully!\nRoute cache cleared!\nRoutes cached successfully!\nCopied Directory [\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Exceptions\/views] To [\/resources\/views\/errors]\nCopied Directory [\/vendor\/laravel\/framework\/src\/Illuminate\/Notifications\/resources\/views] To [\/resources\/views\/vendor\/notifications]\nCopied Directory [\/vendor\/laravel\/framework\/src\/Illuminate\/Pagination\/resources\/views] To [\/resources\/views\/vendor\/pagination]\nCopied Directory [\/vendor\/laravel\/framework\/src\/Illuminate\/Mail\/resources\/views] To [\/resources\/views\/vendor\/mail]\nPublishing complete.\nNothing to migrate.\nDatabase seeding completed successfully.\nClearing cache...\nApplication cache cleared!\nCache cleared!\nThe [public\/storage] directory has been linked.\nCachet is installed &amp;#x26a1;<\/pre>\n\n\n\n<p>After the installation set the right file and folder permissions:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/var\/www\/html\/&lt;br&gt;&lt;br&gt;chown -R www-data:www-data \/var\/www\/html\/\n\nfind . -type f -exec chmod 644 {} \\;\n\nfind . -type d -exec chmod 755 {} \\;<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-8-create-apache-virtual-host-file\">Step 8. Create Apache Virtual Host File<\/h2>\n\n\n\n<p>Next is to create the Apache Virtual host configuration file for the domain name and some rules to be specified. Go into the Apache directory:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/etc\/apache2\/sites-available\n\nsudo nano cachet.conf&lt;br&gt;&lt;br&gt;<\/pre>\n\n\n\n<p>Once, you create the <b>cachet.conf<\/b> file, paste the following lines of code.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;VirtualHost *:80&gt;\n\nServerName yourdomain.com\nDocumentRoot \/var\/www\/html\/public\n\n&lt;Directory \/var\/www\/html\/public&gt;\n          Options FollowSymlinks\n          AllowOverride All\n          Require all granted\n     &lt;\/Directory&gt;\n\nErrorLog ${APACHE_LOG_DIR}\/yourdomain.com_error.log\nCustomLog ${APACHE_LOG_DIR}\/yourdomain.com_access.log combined\n\n&lt;\/VirtualHost&gt;<\/pre>\n\n\n\n<p>Enable the site, and restart the apache service<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo a2ensite cachet.conf\nsudo a2enmod rewrite\nsudo systemctl restart apache2<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-9-finish-the-cachet-installation\">Step 9. Finish the Cachet Installation<\/h2>\n\n\n\n<p>The last step is to finish the setup of the Cachet status page system. Access your website at:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;b&gt;http:\/\/yourdomain.com&lt;\/b&gt;<\/pre>\n\n\n\n<p>You should receive the following screen:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/02\/cachet1.png\" alt=\"\" class=\"wp-image-40370\"\/><\/figure>\n\n\n<p>Fill the inputs, as described in the next picture below, and click on the &#8220;Next&#8221; button:<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/02\/cachet2.png\" alt=\"\" class=\"wp-image-40371\"\/><\/figure>\n\n\n<p>In the next window, you need to enter the name of the website, the domain, timezone, and the language.<\/p>\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/02\/cachet3-1024x613.png?v=1644432516\" alt=\"\" class=\"wp-image-40372\"\/><\/figure>\n\n\n<p>Once, these values are entered the next window is the &#8220;Administrator&#8221; window for the admin credentials.<\/p>\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/02\/cachet4-1024x571.png?v=1644432532\" alt=\"\" class=\"wp-image-40373\"\/><\/figure>\n\n\n<p>Fill in the administrator credentials and hit on the &#8220;Complete Setup&#8221; button for the installation to finish.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/02\/cachet5.png\" alt=\"\" class=\"wp-image-40374\"\/><\/figure>\n\n\n<p>Once, the installation is finished click on the &#8220;Go to dashboard&#8221; button, and the login screen will appear.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/02\/cachet6.png\" alt=\"\" class=\"wp-image-40375\"\/><\/figure>\n\n\n<p>Enter the administrator login credentials you set before and login to the dashboard.<\/p>\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/02\/cachet7-1024x487.png?v=1644432574\" alt=\"\" class=\"wp-image-40376\"\/><\/figure>\n\n\n<p>Congratulations! You successfully installed and configured the Cachet Status Page System on Ubuntu 20.04. If you find it difficult to install it you can always contact our technical support and they will do the rest for you.We are available 24.7<\/p>\n<p>If you liked this post on how to install Cachet Status Page System on <a href=\"https:\/\/www.rosehosting.com\/ubuntu-hosting.html\">Ubuntu 20.04<\/a>, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>","protected":false},"excerpt":{"rendered":"<p>In this blog post, we are going to explain how to install Cachet Status Page System on Ubuntu 20.04 OS. Cachet is an open-source status page system that allows us to track the downtime of our system outages. Cachet is written in PHP and can be installed very easily on every Linux system. In the &#8230; <a title=\"How to Install Cachet Status Page System on Ubuntu 20.04\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/\" aria-label=\"More on How to Install Cachet Status Page System on Ubuntu 20.04\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1707,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[208],"tags":[245,246,210],"class_list":["post-1706","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ubuntu","tag-cachet","tag-status-page-system","tag-ubuntu-20-04"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Cachet Status Page System on Ubuntu 20.04 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this blog post, we are going to explain how to install Cachet Status Page System on Ubuntu 20.04 OS. Cachet is an open-source status page system that\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-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 Cachet Status Page System on Ubuntu 20.04 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this blog post, we are going to explain how to install Cachet Status Page System on Ubuntu 20.04 OS. Cachet is an open-source status page system that\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxCloudVPS Blog\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/LinuxCloudVPS\" \/>\n<meta property=\"article:published_time\" content=\"2022-03-30T17:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-20T06:51:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/02\/how-to-install-cachet-status-page-system-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=\"@LinuxCloudVPS\" \/>\n<meta name=\"twitter:site\" content=\"@LinuxCloudVPS\" \/>\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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Cachet Status Page System on Ubuntu 20.04\",\"datePublished\":\"2022-03-30T17:30:00+00:00\",\"dateModified\":\"2022-10-20T06:51:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/\"},\"wordCount\":634,\"commentCount\":11,\"publisher\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/02\/how-to-install-cachet-status-page-system-on-ubuntu-20.04.jpg\",\"keywords\":[\"cachet\",\"status page system\",\"ubuntu 20.04\"],\"articleSection\":[\"Ubuntu\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/\",\"name\":\"How to Install Cachet Status Page System on Ubuntu 20.04 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/02\/how-to-install-cachet-status-page-system-on-ubuntu-20.04.jpg\",\"datePublished\":\"2022-03-30T17:30:00+00:00\",\"dateModified\":\"2022-10-20T06:51:52+00:00\",\"description\":\"In this blog post, we are going to explain how to install Cachet Status Page System on Ubuntu 20.04 OS. Cachet is an open-source status page system that\",\"breadcrumb\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#primaryimage\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/02\/how-to-install-cachet-status-page-system-on-ubuntu-20.04.jpg\",\"contentUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/02\/how-to-install-cachet-status-page-system-on-ubuntu-20.04.jpg\",\"width\":742,\"height\":372,\"caption\":\"how to install cachet status page system on ubuntu 20.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.linuxcloudvps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Cachet Status Page System on Ubuntu 20.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#website\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/\",\"name\":\"LinuxCloudVPS\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#organization\",\"name\":\"LinuxCloudVPS\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"contentUrl\":\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png\",\"width\":217,\"height\":25,\"caption\":\"LinuxCloudVPS\"},\"image\":{\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"http:\/\/www.facebook.com\/LinuxCloudVPS\",\"https:\/\/x.com\/LinuxCloudVPS\",\"http:\/\/www.linkedin.com\/company\/linuxcloudvps-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\/\/www.linuxcloudvps.com\/\"],\"url\":\"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Cachet Status Page System on Ubuntu 20.04 | LinuxCloudVPS Blog","description":"In this blog post, we are going to explain how to install Cachet Status Page System on Ubuntu 20.04 OS. Cachet is an open-source status page system that","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:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Cachet Status Page System on Ubuntu 20.04 | LinuxCloudVPS Blog","og_description":"In this blog post, we are going to explain how to install Cachet Status Page System on Ubuntu 20.04 OS. Cachet is an open-source status page system that","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2022-03-30T17:30:00+00:00","article_modified_time":"2022-10-20T06:51:52+00:00","og_image":[{"width":742,"height":372,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/02\/how-to-install-cachet-status-page-system-on-ubuntu-20.04.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@LinuxCloudVPS","twitter_site":"@LinuxCloudVPS","twitter_misc":{"Written by":"admin","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Cachet Status Page System on Ubuntu 20.04","datePublished":"2022-03-30T17:30:00+00:00","dateModified":"2022-10-20T06:51:52+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/"},"wordCount":634,"commentCount":11,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/02\/how-to-install-cachet-status-page-system-on-ubuntu-20.04.jpg","keywords":["cachet","status page system","ubuntu 20.04"],"articleSection":["Ubuntu"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/","name":"How to Install Cachet Status Page System on Ubuntu 20.04 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/02\/how-to-install-cachet-status-page-system-on-ubuntu-20.04.jpg","datePublished":"2022-03-30T17:30:00+00:00","dateModified":"2022-10-20T06:51:52+00:00","description":"In this blog post, we are going to explain how to install Cachet Status Page System on Ubuntu 20.04 OS. Cachet is an open-source status page system that","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/02\/how-to-install-cachet-status-page-system-on-ubuntu-20.04.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2022\/02\/how-to-install-cachet-status-page-system-on-ubuntu-20.04.jpg","width":742,"height":372,"caption":"how to install cachet status page system on ubuntu 20.04"},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-cachet-status-page-system-on-ubuntu-20-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Cachet Status Page System on Ubuntu 20.04"}]},{"@type":"WebSite","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website","url":"https:\/\/www.linuxcloudvps.com\/blog\/","name":"LinuxCloudVPS","description":"","publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.linuxcloudvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization","name":"LinuxCloudVPS","url":"https:\/\/www.linuxcloudvps.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2023\/08\/logo.png","width":217,"height":25,"caption":"LinuxCloudVPS"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["http:\/\/www.facebook.com\/LinuxCloudVPS","https:\/\/x.com\/LinuxCloudVPS","http:\/\/www.linkedin.com\/company\/linuxcloudvps-com"]},{"@type":"Person","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/?s=96&d=mm&r=g","caption":"admin"},"sameAs":["http:\/\/www.linuxcloudvps.com\/"],"url":"https:\/\/www.linuxcloudvps.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1706","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/comments?post=1706"}],"version-history":[{"count":5,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1706\/revisions"}],"predecessor-version":[{"id":1764,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1706\/revisions\/1764"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1707"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1706"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1706"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1706"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}