{"id":8608,"date":"2024-05-15T11:09:15","date_gmt":"2024-05-15T11:09:15","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=8608"},"modified":"2024-10-14T17:15:12","modified_gmt":"2024-10-14T17:15:12","slug":"setup-update-dolibarr-erp-crm-linux-ubuntu-debian","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/","title":{"rendered":"Install \/ Update Dolibarr ERP\/CRM on Linux"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/dolibarr_install_en.jpg\" alt=\"install update Dolibarr ERP CRM Linux configuration troubleshooting\" class=\"wp-image-8624\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/dolibarr_install_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/dolibarr_install_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/dolibarr_install_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/dolibarr_install_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/dolibarr_install_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p><strong>Dolibarr<\/strong> is a popular open-source Enterprise Resource Planning (ERP) and Customer Relationship Management (CRM) software that can be installed on Linux systems. It offers a wide range of features for managing businesses, including accounting, invoicing, project management, inventory, and more. In this comprehensive guide, we&#8217;ll walk you through the step-by-step process of installing Dolibarr on a Linux system.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"prerequisites\">Prerequisites<\/h2>\n\n\n\n<p>Before we begin, make sure you have the following prerequisites in place:<\/p>\n\n\n\n<ul>\n<li><strong>Linux Operating System<\/strong>: Dolibarr can be installed on various Linux distributions, such as Ubuntu, Debian, CentOS, or Fedora. In this guide, we&#8217;ll use Ubuntu 22.04 LTS as an example.<\/li>\n\n\n\n<li><strong>Web Server<\/strong>: Dolibarr requires a web server to run, so you&#8217;ll need to have Apache or Nginx installed on your Linux system.<\/li>\n\n\n\n<li><strong>Database Server<\/strong>: Dolibarr uses a database to store its data, so you&#8217;ll need to have a database server installed, such as MySQL or MariaDB.<\/li>\n\n\n\n<li><strong>PHP<\/strong>: Dolibarr is built using PHP, so you&#8217;ll need to have PHP installed on your system.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-1-install-the-required-packages\">Step 1: Install the Required Packages<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"update-the-package-index\"><strong>Update the Package Index<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt-get update<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"install-apache-web-server\"><strong>Install Apache Web Server<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt-get install apache2 -y<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"install-mariadb-database-server\"><strong>Install MariaDB Database Server<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt-get install mariadb-server mariadb-client -y<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"install-php-and-required-modules\"><strong>Install PHP and Required Modules<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt-get install php libapache2-mod-php php-mysql php-gd php-curl php-zip php-mbstring php-xml php-intl -y<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"restart-apache\"><strong>Restart Apache<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-2-secure-the-mariadb-database\">Step 2: Secure the MariaDB Database<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"run-the-mysql-secure-installation-script\"><strong>Run the MySQL Secure Installation Script<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo mysql_secure_installation<\/code><\/pre>\n\n\n\n<p>This script will prompt you to set a root password for the MariaDB database, and it will also remove some insecure default settings.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"log-in-to-the-mariadb-console\"><strong>Log in to the MariaDB Console<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo mysql -u root -p<\/code><\/pre>\n\n\n\n<p>Enter the root password you set in the previous step.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"create-the-dolibarr-database-and-user\"><strong>Create the Dolibarr Database and User<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"sql\" class=\"language-sql\">CREATE DATABASE dolibarr;\nCREATE USER 'dolibarr'@'localhost' IDENTIFIED BY 'your_password';\nGRANT ALL PRIVILEGES ON dolibarr.* TO 'dolibarr'@'localhost';\nFLUSH PRIVILEGES;\nEXIT;<\/code><\/pre>\n\n\n\n<p>Replace&nbsp;<code>'your_password'<\/code>&nbsp;with a strong, unique password for the Dolibarr user.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-3-download-and-extract-dolibarr\">Step 3: Download and Extract Dolibarr<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"download-the-latest-dolibarr-release\"><strong>Download the Latest Dolibarr Release<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ wget https:\/\/github.com\/Dolibarr\/dolibarr\/archive\/refs\/tags\/19.0.0.tar.gz<\/code><\/pre>\n\n\n\n<p>This will download the latest stable version of Dolibarr (19.0.0 in this example).<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"extract-the-downloaded-archive\"><strong>Extract the Downloaded Archive<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo tar -xzf 19.0.0.tar.gz -C \/var\/www\/html\/<\/code><\/pre>\n\n\n\n<p>This will extract the Dolibarr files to the&nbsp;<code>\/var\/www\/html\/<\/code>&nbsp;directory.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"rename-the-extracted-directory\"><strong>Rename the Extracted Directory<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo mv \/var\/www\/html\/dolibarr-19.0.0 \/var\/www\/html\/dolibarr<\/code><\/pre>\n\n\n\n<p>This will rename the extracted directory to&nbsp;<code>dolibarr<\/code>, making it easier to access the Dolibarr installation.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"set-the-correct-permissions\"><strong>Set the Correct Permissions<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo chown -R www-data:www-data \/var\/www\/html\/dolibarr\n$ sudo chmod -R 755 \/var\/www\/html\/dolibarr<\/code><\/pre>\n\n\n\n<p>These commands set the correct ownership and permissions for the Dolibarr directory and files.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-4-configure-the-apache-web-server\">Step 4: Configure the Apache Web Server<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"create-a-virtual-host-configuration-file\"><strong>Create a Virtual Host Configuration File<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nano \/etc\/apache2\/sites-available\/dolibarr.conf<\/code><\/pre>\n\n\n\n<p>Add the following content to the file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"apacheconf\" class=\"language-apacheconf\"><strong>&lt;VirtualHost *:80&gt;<\/strong>\n      ServerName dolibarr.example.com\n      DocumentRoot \/var\/www\/html\/dolibarr\/htdocs\n      <strong>&lt;Directory \/var\/www\/html\/dolibarr\/htdocs&gt;<\/strong>\n         Options FollowSymLinks\n         AllowOverride All\n         Require all granted\n      <strong>&lt;\/Directory&gt;<\/strong>\n      ErrorLog ${APACHE_LOG_DIR}\/dolibarr-error.log\n      CustomLog ${APACHE_LOG_DIR}\/dolibarr-access.log combined\n<strong>&lt;\/VirtualHost&gt;<\/strong><\/code><\/pre>\n\n\n\n<p>Replace&nbsp;<code>dolibarr.example.com<\/code>&nbsp;with your desired domain name.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"enable-the-virtual-host\"><strong>Enable the Virtual Host<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo a2ensite dolibarr.conf<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"restart-apache-1\"><strong>Restart Apache<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-5-complete-the-dolibarr-installation\">Step 5: Complete the Dolibarr Installation<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"open-the-dolibarr-installation-page\"><strong>Open the Dolibarr Installation Page<\/strong>:<\/h4>\n\n\n\n<p>In your web browser, navigate to&nbsp;<code>http:\/\/dolibarr.example.com\/install\/<\/code>. Replace&nbsp;<code>dolibarr.example.com<\/code>&nbsp;with your actual domain name or IP address.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"follow-the-dolibarr-installation-wizard\"><strong>Follow the Dolibarr Installation Wizard<\/strong>:<\/h4>\n\n\n\n<ul>\n<li>On the first page, click &#8220;Start&#8221; to begin the installation process.<\/li>\n\n\n\n<li>On the configuration page, enter the database connection details:\n<ul>\n<li>Database name:&nbsp;<code>dolibarr<\/code><\/li>\n\n\n\n<li>Database user:&nbsp;<code>dolibarr<\/code><\/li>\n\n\n\n<li>Database password: the password you set earlier<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Create a Dolibarr super-user account and click &#8220;Next Step&#8221; to continue.<\/li>\n\n\n\n<li>Review the installation summary and click &#8220;Next Step&#8221; to complete the installation.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"secure-the-installation\"><strong>Secure the Installation<\/strong>:<\/h4>\n\n\n\n<p>To prevent unauthorized access to the Dolibarr installation, create an installation lock file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo touch \/var\/www\/html\/dolibarr\/documents\/install.lock<\/code><\/pre>\n\n\n\n<p>This file will prevent anyone from accessing the installation wizard again.<\/p>\n\n\n\n<p>Congratulations! You have successfully installed Dolibarr ERP\/CRM on your Linux system. You can now log in to the Dolibarr web interface using the super-user account you created during the installation process.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"updating-dolibarr\">Updating Dolibarr<\/h2>\n\n\n\n<p>To update Dolibarr to a newer version, follow these steps:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"backup-your-dolibarr-data\"><strong>Backup Your Dolibarr Data<\/strong>:<\/h4>\n\n\n\n<p>Before updating, it&#8217;s essential to create a backup of your Dolibarr data, including the database and any custom configurations or files.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"download-the-latest-dolibarr-release-1\"><strong>Download the Latest Dolibarr Release<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ wget https:\/\/github.com\/Dolibarr\/dolibarr\/archive\/refs\/tags\/19.0.1.tar.gz<\/code><\/pre>\n\n\n\n<p>Replace the version number with the latest stable release.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"extract-the-downloaded-archive-1\"><strong>Extract the Downloaded Archive<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo tar -xzf 19.0.1.tar.gz -C \/var\/www\/html\/<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"rename-the-extracted-directory-1\"><strong>Rename the Extracted Directory<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo mv \/var\/www\/html\/dolibarr-19.0.1 \/var\/www\/html\/dolibarr<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"set-the-correct-permissions-1\"><strong>Set the Correct Permissions<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo chown -R www-data:www-data \/var\/www\/html\/dolibarr\n$ sudo chmod -R 755 \/var\/www\/html\/dolibarr<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"clear-the-cache-and-logs\"><strong>Clear the Cache and Logs<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo rm -rf \/var\/www\/html\/dolibarr\/documents\/cache\/*\n$ sudo rm -rf \/var\/www\/html\/dolibarr\/documents\/logs\/*<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"restart-apache-2\"><strong>Restart Apache<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<p>That&#8217;s it! Your Dolibarr installation has been updated to the latest version. Remember to test your updated Dolibarr installation thoroughly before putting it into production.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"troubleshooting\">Troubleshooting<\/h2>\n\n\n\n<p>If you encounter any issues during the installation or usage of Dolibarr, here are some common troubleshooting steps you can try:<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"check-the-apache-error-logs\"><strong>Check the Apache Error Logs<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo tail -n 50 \/var\/log\/apache2\/error.log<\/code><\/pre>\n\n\n\n<p>This will show you the last 50 lines of the Apache error log, which may provide clues about the issue you&#8217;re facing.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"check-the-dolibarr-logs\"><strong>Check the Dolibarr Logs<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo tail -n 50 \/var\/www\/html\/dolibarr\/documents\/logs\/dolibarr.log<\/code><\/pre>\n\n\n\n<p>The Dolibarr log file may contain more specific information about any errors or problems you&#8217;re experiencing.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"verify-the-database-connection\"><strong>Verify the Database Connection<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo mysql -u dolibarr -p<\/code><\/pre>\n\n\n\n<p>Log in to the MariaDB console and ensure that the Dolibarr database and user are set up correctly.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"check-the-dolibarr-configuration-file\"><strong>Check the Dolibarr Configuration File<\/strong>:<\/h4>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nano \/var\/www\/html\/dolibarr\/htdocs\/conf\/conf.php<\/code><\/pre>\n\n\n\n<p>Verify that the database connection details in the Dolibarr configuration file are correct.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"seek-community-support\"><strong>Seek Community Support<\/strong>:<\/h4>\n\n\n\n<p>If you&#8217;re unable to resolve the issue on your own, consider seeking help from the Dolibarr community. You can post your question on the&nbsp;<a href=\"https:\/\/www.dolibarr.org\/forum\/\" target=\"_blank\" rel=\"noreferrer noopener\">Dolibarr forums<\/a>&nbsp;or reach out to the Dolibarr development team for assistance.<\/p>\n\n\n\n<p>By following the steps outlined in this guide and troubleshooting any issues that arise, you should be able to successfully install and configure Dolibarr ERP\/CRM on your Linux system.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Dolibarr is a popular open-source Enterprise Resource Planning (ERP) and Customer Relationship Management (CRM) software that can be installed on Linux systems. It offers a wide range of features for managing businesses, including accounting, invoicing, project management, inventory, and more. In this comprehensive guide, we&#8217;ll walk you through the step-by-step process of installing Dolibarr on ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[188,279],"tags":[],"yoast_head":"\n<title>Install \/ Update Dolibarr ERP\/CRM on Linux - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"A comprehensive guide to installing and updating Dolibarr ERP\/CRM on Linux systems, including prerequisites, installation steps, and troubleshooting tips.\" \/>\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.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install \/ Update Dolibarr ERP\/CRM on Linux - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"A comprehensive guide to installing and updating Dolibarr ERP\/CRM on Linux systems, including prerequisites, installation steps, and troubleshooting tips.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webhi.technology\" \/>\n<meta property=\"article:published_time\" content=\"2024-05-15T11:09:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-14T17:15:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/dolibarr_install_en.jpg\" \/>\n<meta name=\"author\" content=\"webhi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:site\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"webhi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"Install \/ Update Dolibarr ERP\/CRM on Linux\",\"datePublished\":\"2024-05-15T11:09:15+00:00\",\"dateModified\":\"2024-10-14T17:15:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/\"},\"wordCount\":790,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"CMS &amp; Web development\",\"Softwares and Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/\",\"name\":\"Install \/ Update Dolibarr ERP\/CRM on Linux - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2024-05-15T11:09:15+00:00\",\"dateModified\":\"2024-10-14T17:15:12+00:00\",\"description\":\"A comprehensive guide to installing and updating Dolibarr ERP\/CRM on Linux systems, including prerequisites, installation steps, and troubleshooting tips.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install \/ Update Dolibarr ERP\/CRM on Linux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"name\":\"WebHi Tutorials &amp; Documentations\",\"description\":\"System administration and knowledge base\",\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\",\"name\":\"WebHi Technology\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"width\":288,\"height\":95,\"caption\":\"WebHi Technology\"},\"image\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webhi.technology\",\"https:\/\/twitter.com\/WebHiTechnology\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\",\"name\":\"webhi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1787868278\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1787868278\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"Install \/ Update Dolibarr ERP\/CRM on Linux - WebHi Tutorials &amp; Documentations","description":"A comprehensive guide to installing and updating Dolibarr ERP\/CRM on Linux systems, including prerequisites, installation steps, and troubleshooting tips.","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.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/","og_locale":"en_US","og_type":"article","og_title":"Install \/ Update Dolibarr ERP\/CRM on Linux - WebHi Tutorials &amp; Documentations","og_description":"A comprehensive guide to installing and updating Dolibarr ERP\/CRM on Linux systems, including prerequisites, installation steps, and troubleshooting tips.","og_url":"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2024-05-15T11:09:15+00:00","article_modified_time":"2024-10-14T17:15:12+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2024\/05\/dolibarr_install_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"Install \/ Update Dolibarr ERP\/CRM on Linux","datePublished":"2024-05-15T11:09:15+00:00","dateModified":"2024-10-14T17:15:12+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/"},"wordCount":790,"commentCount":1,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["CMS &amp; Web development","Softwares and Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/","url":"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/","name":"Install \/ Update Dolibarr ERP\/CRM on Linux - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2024-05-15T11:09:15+00:00","dateModified":"2024-10-14T17:15:12+00:00","description":"A comprehensive guide to installing and updating Dolibarr ERP\/CRM on Linux systems, including prerequisites, installation steps, and troubleshooting tips.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/setup-update-dolibarr-erp-crm-linux-ubuntu-debian\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"Install \/ Update Dolibarr ERP\/CRM on Linux"}]},{"@type":"WebSite","@id":"https:\/\/www.webhi.com\/how-to\/#website","url":"https:\/\/www.webhi.com\/how-to\/","name":"WebHi Tutorials &amp; Documentations","description":"System administration and knowledge base","publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhi.com\/how-to\/#organization","name":"WebHi Technology","url":"https:\/\/www.webhi.com\/how-to\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","contentUrl":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","width":288,"height":95,"caption":"WebHi Technology"},"image":{"@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webhi.technology","https:\/\/twitter.com\/WebHiTechnology"]},{"@type":"Person","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54","name":"webhi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/","url":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1787868278","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1787868278","caption":"webhi"},"sameAs":["https:\/\/www.webhi.com\/how-to"],"url":"https:\/\/www.webhi.com\/how-to\/author\/webhi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/8608"}],"collection":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/comments?post=8608"}],"version-history":[{"count":9,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/8608\/revisions"}],"predecessor-version":[{"id":9490,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/8608\/revisions\/9490"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=8608"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=8608"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=8608"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}