logo Debian Debian Debian-France Debian-Facile Debian-fr.org Forum-Debian.fr Debian ? Communautés logo inclusivité

Debian-facile

Bienvenue sur Debian-Facile, site d'aide pour les nouveaux utilisateurs de Debian.

Vous n'êtes pas identifié(e).

#1 15-03-2021 10:08:32

grodidi
Membre
Distrib. : Debian Buster/Bullseye
Noyau : Linux 5.10.0-4-amd64
Inscription : 04-06-2020
Site Web

Installation impossible dolibarr Debian Bullseye

Salut à tous,
Je reviens vers vous, car malgré un souci résolu sous debian 10, je n’arrive pas à compléter mon installation sous debian 11, j’ai été obligé d’installer la version testing car l’ordi que j’ai acheté était trop récent pour la dernière version stable.
Alors donc, je suis coincé au même endroit que la dernière fois, à savoir, la page internet de configuration de dolibarr. J’ai créer un utilisateur et une base de donnée mysql (mariadb) mais il refuse de reconnaître ma base de donnée.


J'ai tenté un mysql_secure_installation


root@debian:~# mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you'
ve just installed MariaDB, and
haven't set the root password yet, you should just press enter here.

Enter current password for root (enter for none):
OK, successfully used password, moving on...

Setting the root password or using the unix_socket ensures that nobody
can log into the MariaDB root user without the proper authorisation.

You already have your root account protected, so you can safely answer '
n'.

Switch to unix_socket authentication [Y/n] n      
 ... skipping.

You already have your root account protected, so you can safely answer '
n'.

Change the root password? [Y/n] y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
 ... Success!


By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] y
 ... Success!

Normally, root should only be allowed to connect from '
localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] y
 ... Success!

By default, MariaDB comes with a database named '
test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] y
 ... Success!

Cleaning up...

All done!  If you'
ve completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!
root@debian:~# mysqladmin -u root -p version
Enter password:
mysqladmin  Ver 9.1 Distrib 10.5.9-MariaDB, for debian-linux-gnu on x86_64
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Server version    10.5.9-MariaDB-1
Protocol version  10
Connection    Localhost via UNIX socket
UNIX socket   /run/mysqld/mysqld.sock
Uptime:     20 min 20 sec

Threads: 1  Questions: 73  Slow queries: 0  Opens: 32  Open tables: 25  Queries per second avg: 0.059
root@debian:~# mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you'
ve just installed MariaDB, and
haven't set the root password yet, you should just press enter here.

Enter current password for root (enter for none):
OK, successfully used password, moving on...

Setting the root password or using the unix_socket ensures that nobody
can log into the MariaDB root user without the proper authorisation.

You already have your root account protected, so you can safely answer '
n'.

Switch to unix_socket authentication [Y/n] y
Enabled successfully!
Reloading privilege tables..
 ... Success!


You already have your root account protected, so you can safely answer '
n'.

Change the root password? [Y/n] y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
 ... Success!


By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] y
 ... Success!

Normally, root should only be allowed to connect from '
localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] y
 ... Success!

By default, MariaDB comes with a database named '
test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] y
 ... Success!

Cleaning up...

All done!  If you'
ve completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!



MariaDB [(none)]> show grants for "surlacorde"@"localhost";
+-------------------------------------------------------------------------------------------------------------------+
| Grants for surlacorde@localhost                                                                                   |
+-------------------------------------------------------------------------------------------------------------------+
| GRANT USAGE ON *.* TO `surlacorde`@`localhost` IDENTIFIED BY PASSWORD '************' |
| GRANT ALL PRIVILEGES ON `surlacordecompta`.* TO `surlacorde`@`localhost`                                          |
+-------------------------------------------------------------------------------------------------------------------+
2 rows in set (0.000 sec)

MariaDB [(none)]> select user, host  from mysql.user;
+------------------+-----------+
| User             | Host      |
+------------------+-----------+
| mariadb.sys      | localhost |
| mysql            | localhost |
| root             | localhost |
| slc              | localhost |
| surlacorde       | localhost |
| surlacordecompta | localhost |
+------------------+-----------+
6 rows in set (0.002 sec)



Comme vous pourrez le remarquer, j'ai fait plusieurs essais, mais rien n'a fonctionné.

Petit indice, j'ai sur ma machin en debian 10, comme user mariaDB, un root et celui que j'ai créer.
Sur ma machine en debian 11, j'ai mariadb.sys, mysql, root et celui que j'ai créer.

MariaDB [(none)]> select user, host  from mysql.user;
+------------+-----------+
| user       | host      |
+------------+-----------+
| root       | localhost |
| surlacorde | localhost |
+------------+-----------+
2 rows in set (0.000 sec)



Peut être que ça peux aider.

Merci d'avance.

Hors ligne

#2 16-03-2021 11:36:34

lagrenouille
CA Debian-Facile
Lieu : Toulouse
Distrib. : bookworm
Noyau : d'olive
(G)UI : xfce4 et awesome
Inscription : 28-03-2012
Site Web

Re : Installation impossible dolibarr Debian Bullseye

salut
je sais pas comment tu as installé dolibarr
moi, il m'a fallut créer la base de données avant d'installer dolibarr, sinon j'y arrivais pas smile

Ce à quoi l'on a pas accès par l'expérience vécue, on a pas d'oreilles pour l'entendre ..Nietzsche
Cela dit, bien que toute notre connaissance s’amorce avec l’expérience, il n’en résulte pas pour autant qu’elle découle dans sa totalité de l’expérience.  E.Kant
une compréhension insane est elle forcément irrationnel ? ..lagrenouille

Hors ligne

Pied de page des forums