Welcome to OCS Inventory NG community support, where you can ask questions and receive answers from other members of the community.

Please ask questions only in English or French.

Release 2.11.1 available

The official documentation can be found on http://wiki.ocsinventory-ng.org. Read it before asking your question.

Change the default password of the database.

Hi everyone.

Installed the OCS in the docker compose.

Now I need to change the default password of the database.

But I don't think the file z-ocsinventory-server.
in OCS Inventory NG server for Unix by (400 points)

1 Answer

–1 vote
Hello,

mysql -u root -p

mysql> use mysql;
mysql> update user set password=PASSWORD("NEW-ROOT-PASSWORD") where User='root';
mysql> flush privileges;
mysql> quit
by (4.9k points)
 
Powered by Question2Answer
...