Skip to main content

Installation Dolibarr

Sur serveur LAMP

Installer les dépendances php

apt install -y php7.4-curl php7.4-intl php7.4-calendar php7.4-zip php7.4-xml php7.4-gd php7.4-imap

Création base de donnée avec les droits et privilèges

mysql -u root -p
CREATE USER 'xxxxxxx'@'localhost' IDENTIFIED BY 'yyyyyyyyyy';
CREATE DATABASE `db_dolibarr`;
GRANT ALL privileges ON `db_dolibarr`.* TO 'xxxxxxx'@localhost;
FLUSH PRIVILEGES;

xxxxx ça sera un nom d'user

yyyyy ça sera le mot de passe

show databases;
QUIT;

Téléchargement

cd /tmp 
wget https://sourceforge.net/projects/dolibarr/files/Dolibarr%20ERP-CRM/16.0.0/dolibarr-16.0.0.zip

Dézipper l’archive

apt install unzip
unzip dolibarr-16.0.0.zip

Déplacement du dossier

mv dolibarr-16.0.0 /var/www/html/dolibarr

Créer le fichier de configuration qui sera rempli lors de l'installation

touch /var/www/html/dolibarr/htdocs/conf/conf.php

Appliquez les bonnes permissions au dossier dolibarr grâce aux commandes suivantes

chmod -R 755 /var/www/html/dolibarr
chown -R www-data:www-data /var/www/html/dolibarr/
find /var/www/html/dolibarr -type f -exec chmod 644 {} \;
find /var/www/html/dolibarr -type d -exec chmod 755 {} \;

Enfin, créez le dossier documents, celui-ci accueillera l'ensemble des documents générés par dolibarr et appliquez lui les permissions qu'il faut

mkdir /var/www/html/dolibarr/documents
chown -R www-data:www-data /var/www/html/dolibarr/documents
chmod 644 /var/www/html/dolibarr/documents

Votre Dolibarr est maintenant installé. Il ne nous reste plus qu'à sécuriser notre installation grâce à la création d'un fichier install.lock comme indiqué sur la page finale, pour cela faites comme il suit

touch /var/www/html/dolibarr/documents/install.lock
chmod 0440 /var/www/html/dolibarr/documents/install.lock

Corriger les autorisations sur « conf.php ».

chown root.www-data /var/www/html/dolibarr/htdocs/conf/conf.php
chmod 644 /var/www/html/dolibarr/htdocs/conf/conf.php

Cette commande supprime le lien symbolique qui se trouve dans

/etc/apache2/sites-enabled
a2dissite 000-default.conf

Nous allons créer ensuite un fichier de configuration pour dolibarr dans

/etc/apache2/sites-available/
cp 000-default.conf dolibarr.conf
<VirtualHost *:80>
        # The ServerName directive sets the request scheme, hostname and port that
        # the server uses to identify itself. This is used when creating
        # redirection URLs. In the context of virtual hosts, the ServerName
        # specifies what hostname must appear in the request's Host: header to
        # match this virtual host. For the default virtual host (this file) this
        # value is not decisive as it is used as a last resort host regardless.
        # However, you must set it for any further virtual host explicitly.
        #ServerName www.example.com

        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html/dolibarr/htdocs/

        # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
        # error, crit, alert, emerg.
        # It is also possible to configure the loglevel for particular
        # modules, e.g.
        #LogLevel info ssl:warn

        ErrorLog ${APACHE_LOG_DIR}/dolibarr_error.log
        CustomLog ${APACHE_LOG_DIR}/dolibarr_access.log combined

        # For most configuration files from conf-available/, which are
        # enabled or disabled at a global level, it is possible to
        # include a line for only one particular virtual host. For example the
        # following line enables the CGI configuration for this host only
        # after it has been globally disabled with "a2disconf".
        #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet
a2ensite dolibarr.conf

Shunter n° de version page connexion

Dans Configuration et Divers rajouter

MAIN_APPLICATION_TITLE      &nbsp;