Passo dopo passo: installare Dolibarr ERP / CRM su Ubuntu 18.04?

Feb 23, 2021 Dolibarr 0 Commenti
Passo dopo passo: installare Dolibarr ERP / CRM su Ubuntu 18.04?

Sei un'azienda o una startup o semplicemente hai un'attività gratuita e cerchi un ERP / CRM all-in-one per gestire tutta la tua casella di posta, sei fortunato. Dolibarr  è un bancone progettato per soddisfare le tue aspettative. Supponiamo che tu abbia un server Linux Ubuntu 18.04 in attesa di assistenza e desideri installare un ERP al suo interno, spiegheremo in questo tutorial passo passo: come configurare il tuo Dolibarr ERP su una macchina ubuntu 18.0.4, seguici fino a la fine.

 

ERP e CRM Dolibarr  è uno sportello unico ad alte prestazioni per le tue esigenze ERP / CRM in grado di gestire quanto segue:

·        Gestire i tuoi clienti, potenziali clienti e fornitori,

·        Fatture: fatture del cliente e del fornitore,

·        Ordini e ordini di acquisto,

·        Prodotti e servizi di gestione,

·        Scorte e merci,

·        Calendario, progetti, attività,

·        Gestione contabilità, cassa e banca,

·        Gestione delle risorse umane

·        E dozzine di altre fantastiche funzioni.

 

Ora spiegheremo l'installazione di questo strumento open source DOLIBARR che può aiutarti a rafforzare il tuo flusso di lavoro. Sto solo assumendo due cose: che tu abbia il tuo server Ubuntu 18.04 attivo e funzionante e tu abbia accesso a un account con privilegi sudo.

 

Prepara la tua installazione Dolibarr:

La prima cosa che devi fare è prenderti cura di alcune dipendenze. Ci occupiamo innanzitutto dell'installazione del server Web Apache, tramite il seguente comando:

 

sudo apt-get installer apache2

 

Una volta installato il server Apache, avviarlo e attivarlo con il seguente comando:

 
sudo systemctl avvia apache2
sudo systemctl attiva apache2

 

Successivamente, abbiamo bisogno di un database. Dato che stiamo lavorando con Ubuntu 18.04, andremo con MariaDB. Per installare questo servizio, esegui il seguente comando:

 
sudo apt-get install serveur-mariadb client-mariadb

 

Avvia e attiva il server database con i seguenti comandi:

 
sudo systemctl avvia mariadb
sudo systemctl attivare mariadb



Ora è necessario proteggere il database con il comando:

 
sudo mysql_secure_installation

 

Ti verranno poste alcune semplici domande. Per impostazione predefinita, sai che non è stata ancora impostata alcuna password. Quindi, quando richiesto, premi invio.

 

Ora è il momento di installare i moduli PHP necessari. Dato che stiamo lavorando con Ubuntu 18.04, utilizzeremo PHP 7.2. Per installare queste dipendenze, esegui il seguente comando:

 
sudo apt installer php7.2 libapache2-mod-php7.2 php7.1-commun php7.2-curl php7.2-intl php7.2-mbstring php7.2-json php7.2-xmlrpc php7.2-soap php7. 2-mysql php7.2-gd php7.2-xml php7.2-cli php7.2-zip

 

Abbiamo anche bisogno di installare mcrypt. Per occuparti di questa dipendenza, esegui i seguenti comandi:

 
sudo apt-get -y installer gcc make autoconf libc-dev pkg-config
sudo apt-get -y installer php7.2-dev
sudo apt-get -y installer libmcrypt-dev
sudo pecl installer mcrypt-1.0.1

 

Infine, PHP deve essere configurato. Apri il file di configurazione con il comando:

 
sudo nano /etc/php/7.2/apache/php.ini

 

In questo file, vorrai apportare le seguenti modifiche:

 
file_uploads = Abilitato
allow_url_fopen = Abilitato
memory_limit = 512 Mo
upload_max_filesize = 100M
max_execution_time = 360
date.timezone = YOUR / TIME / ZONE

 

dove YOUR / TIME / ZONE è il tuo fuso orario.

Salva e chiudi questo file, quindi riavvia Apache con il comando:

 
sudo systemctl riavvia apache2

 

Crea il database Dolibarr:

 

ERP e CRM Dolibarr richiede un database. Per creare il database e un utente valido, eseguire i seguenti comandi:

 
 
 
sudo mysql -u root -p
CREA UN DATABASE dolibarr;
CREA UTENTE 'dolibarruser' @ 'localhost' IDENTIFICATO DA 'PASSWORD';
GARANTISCI TUTTO SU dolibarr. * A 'dolibarruser' @ 'localhost' IDENTIFICATO DA 'PASSWORD' CON L'OPZIONE DI GRANT;
PRIVILEGI DI RISCIACQUO;
USCIRE;

 

dove PASSWORD è una password unica e sicura.

Avvertimento ! questa volta la password non è vuota  quindi è PASSWORD

 

Scarica e decomprimi lo strumento Dolibarr:

 

È ora necessario scaricare, decomprimere, spostare e fornire alla directory Dolibarr le autorizzazioni appropriate. Tutto questo può essere fatto con i seguenti comandi:

 
sudo apt-get install unzip
cd / tmp && wget https://sourceforge.net/projects/dolibarr/files/Dolibarr%20ERP-CRM/13.0.1/dolibarr-13.0.1.zip
decomprimere dolibarr-7.0.3.zip
sudo mv dolibarr-7.0.3 / var / www / html / dolibarr
sudo chown -R www-data: www-data / var / www / html / dolibarr /
sudo chmod -R 755 / var / www / html / dolibarr /

 

NB: tramite il comando sopra hai scaricato Dolibarr versione 13.0.1 ed è l'ultima versione di Dolibarr fino al momento in cui questo articolo viene scritto, quindi devi semplicemente cambiare il link dell'ultima versione di Doliabrr https: // sourceforge. netto in caso di futuro aggiornamento.

 

Configurare il server Apache:

 

Siamo pronti per configurare Apache. Crea il nuovo file di configurazione con il comando:

 
sudo nano /etc/apache2/sites-available/dolibarr.conf

 

In questo nuovo file, aggiungi il seguente contenuto:

<VirtualHost *: 80>
     ServerAdmin admin@example.com
     DocumentRoot / var / www / html / dolibarr / htdocs
     ServerName example.com
     ServerAlias ​​www.example.com
 
     <Directory / var / www / html / dolibarr / htdocs />
        Opzioni + Segui
        AllowOverride All
        Richiedi tutto concesso
     </Directory>
 
     ErrorLog $ {APACHE_LOG_DIR} /error.log
     CustomLog $ {APACHE_LOG_DIR} /access.log combinato
 
</VirtualHost>

 

Dove example.com e  www.example.com  sono i domini effettivi sul tuo server. Se utilizzi solo un indirizzo IP, puoi lasciarlo così com'è.

Salva e chiudi questo file.

Attiva il nuovo sito e il modulo di riscrittura con i comandi:

 
sudo a2ensite dolibarr.conf
riscrivi sudo a2enmod

 

Riavvia Apache con il comando:

sudo systemctl riavvia apache2

Completa l'installazione di Doliabrr:

Punta il tuo browser all'indirizzo  http: // SERVER_IP / dolibarr / htdocs / install /. <span style=

Tags: dolibarr demo localhost dolibarr install fatal error maximum execution time of 30 seco iban in india how to increase execution time in xampp iban number in india 553 relaying disallowed cannot access empty property ziptown unknown storage engine \'innodb\' localhost refused to connect wamp tcpdf error: [image] unable to get the size o a non-numeric value encountered in accounting simplified phpsysinfo page isn’t working fpdf cell border warning: a non-numeric value encountered warning: a non-numeric value encountered in admin/index.php exbii new ip address a non-numeric value encountered in php branches forum pdf background image contact title tcpdf error: unable to create output file this site can’t be reached localhost refused tcpdf error this page isn\'t working odtwork.com tcpdf invoice example libstock crm png woocommerce_checkout_order_processed html_entity_decode catchable fatal error fatal error: allowed memory size of 67108864 this error was generated by mod_security. empty pdf erp png it solutions png how to connect wamp server to eclipse recipt couldn\'t fetch mysqli var/www/html encore healthcare wiki upload multiple images in android date logo png smpt localhost refused to connect. xampp tcpdf image htdocs on off switch png fetch_object in php multi company fatal error: cannot redeclare invoice png suplier erp wallpaper erp logo png errno: 150 \"foreign key constraint is incorr unknown column in field list date_default_timezone_get localhost not working wamp default product image israel flag png client png freelancer com wiki undefined property: stdclass:: consile 192.168.2.8 professional courier wiki age analysis best font for dot matrix printer datepicker in php timezone india php fetch_array in php crm wallpaper wamp localhost not working address not found www.freelancer.com wiki freeze period background pdf pfd file this localhost page can’t be found roundoff in php roadmap erp ro png www tinxsys wamp not working fatal error: can\'t use function return value srm calendar cannot add or update a child row a foreign ke illegal mix of collations modified access whatsapp forum physical stock this page isn’t working sendgrid multiple recipients php #1045 - access denied for user \'root\'@\'loc ksos 2015-16 myerp wamp server apache service not starting datepicker in php source code maximum execution time of 30 seconds exceeded package \'php5-mysql\' has no installation ca 1 dime in indian rupees notes png trying to use an errordocument to handle the 10.0.2.15 incorrect integer value \'\' for column gst accounting method images of crm loginonly template png connection failed: access denied for user propal 20 what is the correct way to include the file \ methods of calculating vat warning png html_entity_decode php nova ro generate barcode in php invalid column count in csv input on line 1. 1071 specified key was too long (errno: 150 \"foreign key constraint is incor sales module php_network_getaddresses: getaddrinfo failed: number to word in php excluding tax can\'t use function return value in write con frontaccounting demo llx electronic quotes php timezone for india indian timezone in php cannot add or update a child row tin xsys patient png mysql png php gst calculation bug icon data truncated for column at row 1 error in m mysqli fetch_array tinsyx erp workflow this page isn\'t working http error 500 php php code for generating receipt gl sheet account group non working day php html_entity_decode create .exe file in php with mysql database ddmmyyyy date png dialogue png default bank account cannot validate since no php executable is se razorpay integration in javascript number to words in php inoerp demo propal 40 how to debug php code in notepad++ convert decimal number to words in php htdocs download this page isn’t working is currently unable t set_time_limit in php erp developer this page isn’t working http error 500 install ubuntu without losing data failed to load pdf document. in php u name list tinsxys erp entry rest.inc.php 8mise refe send reminder email automatically php descrition erp dashboard crm module in erp how to calculate quantity and price in php methods with the same name as their class wil barcode generator in php source code vat calculation in india get default timezone php end of script output before headers rg designers em-18 reader module wikipedia modules in crm tinsxyx wamp mysql not starting modules in php desciption wamp server localhost not working foreign key constraint is incorrectly formed erp documentation disapear leave balance billing system project in php source code vcruntime140.dll is missing in apache doli logo server sent charset unknown to the client. pl report to the developers offer tags intercode solutions partial delivery gnani erp 2 employee management system project in php and laravel crm error image erp logos modules in project report gst report pdf entry processes purchase module in erp wamp server not starting expence calendar problem erp project documentation google contacts api php source soft solutions is javascript case-sensitive? unknown column in field list mysql insert how to read barcode from scanner in php scrip php barcode reader set_time_limit php get_magic_quotes_gpc() w3schools डोली remove footer from pdf uncomplete erp video social erp supplier\'s credit how to upgrade eclipse random background how to make a php script run automatically odoo wiki delivery note uncaught referenceerror: ckeditor is not defi fatal error in c phpexcel download file the application was unable to start correctly sms png including tax erp quotes enquode opening for php developer php font lib 201002 erp validation meaning dd0 template bpel full form pharmacy management system project documentat databa sales and inventory system in php free downlo freelancer forum data truncated for column at row 1 mysql supplier invoice php mail going to spam कुवैत करेंसी news portal project in php free download how to customize opencart homepage vat problems date default timezone set php netbeans update chanced localhost/e commerce/index.php localhost refused to connect xampp report module you have an error in your sql syntax a non-numeric value encountered tinxsys.com php timezone india odtwork field doesn\'t have a default value cannot delete or update a parent row: a forei vat calculator india unknown column in \'field list\' can\'t use method return value in write conte asset directory usedyetnew cannot add or update a child row: a foreign k www.tinxsys.com tinxsys srm helper tinsys tinxys data truncated for column assetdirectory tinxyx

Commenti

Accedi o registrati per inserire commenti
arrow_upward