{"id":1032,"date":"2019-09-20T10:36:44","date_gmt":"2019-09-20T15:36:44","guid":{"rendered":"https:\/\/www.linuxcloudvps.com\/blog\/?p=1032"},"modified":"2019-09-20T10:36:44","modified_gmt":"2019-09-20T15:36:44","slug":"how-to-install-monica-on-ubuntu-18-04","status":"publish","type":"post","link":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/","title":{"rendered":"How to Install Monica on Ubuntu 18.04"},"content":{"rendered":"<p>In this tutorial, we will show you how to install Monica on Ubuntu 18.04 server.<\/p>\n<p><img decoding=\"async\" class=\"alignright size-full wp-image-1036\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/set-up-install-monica-crm-software-for-ubuntu18.04-cloud-vps.jpg\" alt=\"\" width=\"150\" height=\"30\" \/>Monica is an open-source personal Customer Relation Management (CRM) software written in PHP, built on top of the Laravel framework. Monica allows you to store information about your family, friends, coworkers, and more. For example, you can store information such as your friend&#8217;s wedding anniversary, the names of the children of all of your family members, keep track of your debt, and stay on top of your productive life. Let&#8217;s begin with the installation.<\/p>\n<p><!--more--><\/p>\n<p>This guide should work on other <a title=\"Linux VPS\" href=\"https:\/\/www.linuxcloudvps.com\" target=\"_blank\" rel=\"noopener noreferrer\">Linux VPS<\/a> systems as well, but it was tested and written for <a title=\"Ubuntu VPS Hosting\" href=\"https:\/\/www.linuxcloudvps.com\/cloud-vps.html\" target=\"_blank\" rel=\"noopener noreferrer\">Ubuntu 18.04 VPSes<\/a>.<\/p>\n<h2>Step 1: Update the System Packages<\/h2>\n<p>Log in to your VPS via SSH as root or as a sudo user:<\/p>\n<pre>ssh username@IP_Address -p Port_Number<\/pre>\n<p>Don&#8217;t forget to replace<span style=\"color: #ff0000;\"> IP_Address<\/span> and <span style=\"color: #ff0000;\">Port_Number<\/span> with their respective values.<\/p>\n<p>Issue the following commands to update all installed packages:<\/p>\n<pre>sudo apt-get update\r\nsudo apt-get upgrade<\/pre>\n<h2>Step 2: Install Nginx, MySQL and PHP 7<\/h2>\n<p>To install Nginx, MySQL, PHP 7 and all the necessary PHP modules on your Ubuntu server, run the following apt command:<\/p>\n<pre>sudo apt-get install nginx mysql-server \\\r\n    php7.2 php7.2-cli php7.2-common php7.2-json php7.2-opcache \\\r\n    php7.2-mysql php7.2-mbstring php7.2-zip php7.2-fpm php7.2-bcmath \\\r\n    php7.2-intl php7.2-xml php7.2-curl php7.2-gd<\/pre>\n<p>When the MySQL installation is complete, secure your MariaDB installation using the <code>mysql_secure_installation<\/code>script:<\/p>\n<pre>sudo mysql_secure_installation<\/pre>\n<p>Then, answer the security questions as follows. If it asks for a password at any point, just press the [Enter] key, as no password is set by default:<\/p>\n<pre>Remove anonymous users? (Press y|Y for Yes, any other key for No) : Y\r\nDisallow root login remotely? (Press y|Y for Yes, any other key for No) : Y\r\nRemove test database and access to it? (Press y|Y for Yes, any other key for No) : Y\r\nReload privilege tables now? (Press y|Y for Yes, any other key for No) : Y\r\n<\/pre>\n<h2>Step 3: Install Composer<\/h2>\n<p>Composer is a dependency manager for PHP with which you can install packages. Composer will pull in all the required libraries and dependencies you need for your project.<\/p>\n<pre>curl -sS https:\/\/getcomposer.org\/installer | php\r\nsudo mv composer.phar \/usr\/local\/bin\/composer\r\n<\/pre>\n<h2>Step 4: Create a MySQL Database<\/h2>\n<p>Log in to the MariaDB console with the MariaDB root user using the password you have set up in the previous step:<\/p>\n<pre>mysql -u root -p<\/pre>\n<p>Create a MariaDB database and user for Monica, and grant permissions to the user using the following command:<\/p>\n<pre>mysql&amp;gt; CREATE SCHEMA `monica` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;\r\nmysql&amp;gt; GRANT ALL PRIVILEGES ON monica.* TO &#039;monica&#039;@&#039;localhost&#039; IDENTIFIED BY &#039;&lt;span style=&quot;color: #ff0000;&quot;&gt;strongpassword&lt;\/span&gt;&#039;;\r\nmysql&amp;gt; FLUSH PRIVILEGES;\r\nmysql&amp;gt; \\q<\/pre>\n<p>Make sure you replace &#8216;<span style=\"color: #ff0000;\">strongpassword<\/span>&#8216; with an actual strong password.<\/p>\n<h2>Step 5: Install Monica<\/h2>\n<p>Installing Monica is pretty easy and straightforward &#8211; first, clone the Attendize repository from Github:<\/p>\n<pre>cd \/var\/www\/html\r\ngit clone https:\/\/github.com\/monicahq\/monica.git\r\n<\/pre>\n<p>Visit the Monica release page to find the latest stable version. At the time of writing this post, the latest version of Monica is &#8220;2.12.1&#8221;.<\/p>\n<p>Run the following command to check out the tagged version of Monica:<\/p>\n<pre>cd \/var\/www\/html\/monica\r\ngit checkout tags\/v2.12.1\r\n<\/pre>\n<p>Next, rename the <code>.env.example<\/code> file to <code>.env<\/code> using the following command:<\/p>\n<pre>sudo mv .env.example .env\r\n<\/pre>\n<p>Open the <code>.env<\/code> file and update the database details:<\/p>\n<pre>DB_DATABASE=monica\r\nDB_USERNAME=monica\r\nDB_PASSWORD=&lt;span style=&quot;color: #ff0000;&quot;&gt;strongpassword\r\n&lt;\/span&gt;<\/pre>\n<p>Also, edit the SMTP server details and enter your information.<\/p>\n<p>Install all PHP dependencies with composer:<\/p>\n<pre>cd \/var\/www\/html\/monica\r\ncomposer install --no-interaction --no-suggest --no-dev\r\n<\/pre>\n<p>Once Composer has downloaded the components, run the <code>key:generate<\/code> command to generate an application key.<\/p>\n<pre>php artisan key:generate\r\n<\/pre>\n<p>Then migrate the database:<\/p>\n<pre>php artisan setup:production\r\n<\/pre>\n<pre>You are about to setup and configure Monica. Do you wish to continue? (yes\/no) [no]:\r\n &gt; yes\r\n-----------------------------\r\n|\r\n| Welcome to Monica v2.12.1\r\n|\r\n-----------------------------\r\n| You can now register to the first account by opening the application:\r\n| URL:      http:\/\/localhost\r\n-----------------------------\r\nSetup is done. Have fun.\r\n<\/pre>\n<p>If you want to access the Monica API, create the access tokens like this:<\/p>\n<pre>php artisan passport:install \r\n<\/pre>\n<p>Change the file ownership to the <code>www-data<\/code> user with the following command:<\/p>\n<pre>sudo chown -R www-data: \/var\/www\/html\/monica<\/pre>\n<h2>Step 6: Configure Nginx to Serve the Monica Instance<\/h2>\n<p>Open your favorite text editor and create a new Nginx server block for the Monica application:<\/p>\n<pre>sudo nano \/etc\/nginx\/sites-available\/&lt;span style=&quot;color: #ff0000;&quot;&gt;your_monica_domain.com&lt;\/span&gt;.conf<\/pre>\n<pre>server {\r\n    listen 80 default_server;\r\n    server_name &lt;span style=&quot;color: #ff0000;&quot;&gt;your_monica_domain.com&lt;\/span&gt; www.&lt;span style=&quot;color: #ff0000;&quot;&gt;your_monica_domain.com&lt;\/span&gt;; \r\n    root \/var\/www\/html\/monica\/public; \r\n    index index.php; \r\n    charset utf-8; \r\n    location \/ { try_files $uri $uri\/ \/index.php?$query_string; } \r\n    location = \/favicon.ico { access_log off; log_not_found off; } \r\n    location = \/robots.txt { access_log off; log_not_found off; } \r\n    access_log \/var\/log\/nginx\/&lt;span style=&quot;color: #ff0000;&quot;&gt;your_monica_domain.com&lt;\/span&gt;.access.log; \r\n    error_log \/var\/log\/nginx\/&lt;span style=&quot;color: #ff0000;&quot;&gt;your_monica_domain.com&lt;\/span&gt;.error.log; sendfile off; \r\n    location ~ \\.php$ { fastcgi_split_path_info ^(.+\\.php)(\/.+)$; \r\n    fastcgi_pass unix:\/var\/run\/php\/php7.2-fpm.sock; \r\n    fastcgi_index index.php; include fastcgi_params; \r\n    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; \r\n    fastcgi_intercept_errors off; \r\n    fastcgi_buffer_size 16k; \r\n    fastcgi_buffers 4 16k; } \r\n    location ~ \/\\.ht { deny all; } \r\n}<\/pre>\n<p>Don&#8217;t forget to replace <span style=\"color: #ff0000;\">your_monica_domain.com<\/span> with your actual registered domain name. Activate the server block by creating a symbolic link with the following command:<\/p>\n<pre>sudo ln -s \/etc\/nginx\/sites-available\/&lt;span style=&quot;color: #ff0000;&quot;&gt;your_monica_domain.com&lt;\/span&gt;.conf  \/etc\/nginx\/sites-enabled\/&lt;span style=&quot;color: #ff0000;&quot;&gt;your_monica_domain.com&lt;\/span&gt;.conf<\/pre>\n<p>Test the Nginx configuration to ensure that there are no syntax errors using the following command:<\/p>\n<pre>sudo nginx -t<\/pre>\n<p>If it all checks out, restart the nginx service:<\/p>\n<pre>sudo service nginx restart<\/pre>\n<h2>Step 7: Create a Monica Admin account<\/h2>\n<p>Open <code>http:\/\/your_monica_domain.com\/<\/code> in your preferred web browser &#8211; you will then be redirected to the Monica setup page.<\/p>\n<p>Enter your first name, last name, email address, and password. This user is going to be the Monica administrator account.<\/p>\n<p>Finally, select the &#8220;Signing up signifies you\u2019ve read and agree to our Privacy Policy and Terms of use.&#8221; and click on the Register button to finish the installation.<\/p>\n<p>That\u2019s it. You have successfully installed Monica on Ubuntu 18.04. For more information about how to manage your Monica installation, please refer to the official Monica <a href=\"https:\/\/www.monicahq.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">documentation<\/a>.<\/p>\n<hr \/>\n<p><img decoding=\"async\" class=\"alignleft size-full wp-image-1037\" src=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/help-with-monica-crm-from-expert-support-for-cloud-vps.jpg\" alt=\"\" width=\"150\" height=\"30\" \/>Of course, you don\u2019t have to install Monica on Ubuntu 18.04 if you use one of our\u00a0<a href=\"https:\/\/www.rosehosting.com\/vps-hosting.html\">Managed Linux Cloud VPS Hosting<\/a> services, in which case you can simply ask our expert system administrators to install Monica on Ubuntu 18.04 for you using the LEMP stack or any other web hosting stack of your choice. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p><span style=\"color: #ff0000;\"><strong>PS.<\/strong><\/span>\u00a0If you liked this post on <strong>how to install Monica on Ubuntu 18.04<\/strong>, please share it with your friends on the social networks using the share shortcuts, or simply leave a comment in the comments section. Thank you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, we will show you how to install Monica on Ubuntu 18.04 server. Monica is an open-source personal Customer Relation Management (CRM) software written in PHP, built on top of the Laravel framework. Monica allows you to store information about your family, friends, coworkers, and more. For example, you can store information such &#8230; <a title=\"How to Install Monica on Ubuntu 18.04\" class=\"read-more\" href=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/\" aria-label=\"More on How to Install Monica on Ubuntu 18.04\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":1035,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1032","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized"],"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 Monica on Ubuntu 18.04 | LinuxCloudVPS Blog<\/title>\n<meta name=\"description\" content=\"In this tutorial, we will show you how to install Monica on Ubuntu 18.04 server. Monica is an open-source personal Customer Relation Management (CRM)\" \/>\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-monica-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=\"How to Install Monica on Ubuntu 18.04 | LinuxCloudVPS Blog\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, we will show you how to install Monica on Ubuntu 18.04 server. Monica is an open-source personal Customer Relation Management (CRM)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-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=\"2019-09-20T15:36:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-monica-on-ubuntu18.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"360\" \/>\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-monica-on-ubuntu-18-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-monica-on-ubuntu-18-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#\\\/schema\\\/person\\\/ed907227ee7d151c617e6d0fe74f531a\"},\"headline\":\"How to Install Monica on Ubuntu 18.04\",\"datePublished\":\"2019-09-20T15:36:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-monica-on-ubuntu-18-04\\\/\"},\"wordCount\":720,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-monica-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/how-to-install-monica-on-ubuntu18.04.jpg\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-monica-on-ubuntu-18-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-monica-on-ubuntu-18-04\\\/\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-monica-on-ubuntu-18-04\\\/\",\"name\":\"How to Install Monica on Ubuntu 18.04 | LinuxCloudVPS Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-monica-on-ubuntu-18-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-monica-on-ubuntu-18-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/how-to-install-monica-on-ubuntu18.04.jpg\",\"datePublished\":\"2019-09-20T15:36:44+00:00\",\"description\":\"In this tutorial, we will show you how to install Monica on Ubuntu 18.04 server. Monica is an open-source personal Customer Relation Management (CRM)\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-monica-on-ubuntu-18-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-monica-on-ubuntu-18-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-monica-on-ubuntu-18-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/how-to-install-monica-on-ubuntu18.04.jpg\",\"contentUrl\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/09\\\/how-to-install-monica-on-ubuntu18.04.jpg\",\"width\":750,\"height\":360},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/how-to-install-monica-on-ubuntu-18-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.linuxcloudvps.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Monica on Ubuntu 18.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 Monica on Ubuntu 18.04 | LinuxCloudVPS Blog","description":"In this tutorial, we will show you how to install Monica on Ubuntu 18.04 server. Monica is an open-source personal Customer Relation Management (CRM)","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-monica-on-ubuntu-18-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Monica on Ubuntu 18.04 | LinuxCloudVPS Blog","og_description":"In this tutorial, we will show you how to install Monica on Ubuntu 18.04 server. Monica is an open-source personal Customer Relation Management (CRM)","og_url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/","og_site_name":"LinuxCloudVPS Blog","article_publisher":"http:\/\/www.facebook.com\/LinuxCloudVPS","article_published_time":"2019-09-20T15:36:44+00:00","og_image":[{"width":750,"height":360,"url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-monica-on-ubuntu18.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-monica-on-ubuntu-18-04\/#article","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/"},"author":{"name":"admin","@id":"https:\/\/www.linuxcloudvps.com\/blog\/#\/schema\/person\/ed907227ee7d151c617e6d0fe74f531a"},"headline":"How to Install Monica on Ubuntu 18.04","datePublished":"2019-09-20T15:36:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/"},"wordCount":720,"commentCount":1,"publisher":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-monica-on-ubuntu18.04.jpg","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/","url":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/","name":"How to Install Monica on Ubuntu 18.04 | LinuxCloudVPS Blog","isPartOf":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/#primaryimage"},"image":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/#primaryimage"},"thumbnailUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-monica-on-ubuntu18.04.jpg","datePublished":"2019-09-20T15:36:44+00:00","description":"In this tutorial, we will show you how to install Monica on Ubuntu 18.04 server. Monica is an open-source personal Customer Relation Management (CRM)","breadcrumb":{"@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/#primaryimage","url":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-monica-on-ubuntu18.04.jpg","contentUrl":"https:\/\/www.linuxcloudvps.com\/blog\/wp-content\/uploads\/2019\/09\/how-to-install-monica-on-ubuntu18.04.jpg","width":750,"height":360},{"@type":"BreadcrumbList","@id":"https:\/\/www.linuxcloudvps.com\/blog\/how-to-install-monica-on-ubuntu-18-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.linuxcloudvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Monica on Ubuntu 18.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\/1032","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=1032"}],"version-history":[{"count":4,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1032\/revisions"}],"predecessor-version":[{"id":1039,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/posts\/1032\/revisions\/1039"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media\/1035"}],"wp:attachment":[{"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/media?parent=1032"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/categories?post=1032"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.linuxcloudvps.com\/blog\/wp-json\/wp\/v2\/tags?post=1032"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}