Login
Register
Questions
Unanswered
Tags
Categories
Users
Ask a Question
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.12.3 available
The official documentation can be found on
https://wiki.ocsinventory-ng.org
. Read it before asking your question.
Categories
All categories
OCS Inventory NG server
(2.5k)
OCS Inventory NG server for Unix
(1.9k)
OCS Inventory NG server for Windows
(320)
Administrative console
(308)
OCS Inventory NG agent
(1.5k)
OCS Inventory NG plugins
(59)
Network features
(138)
Developers
(128)
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.
ocs-server
docker
asked
Mar 2, 2017
in
OCS Inventory NG server for Unix
by
aroldobossoni
(
400
points)
Share on
share on gp
share on fb
share on tw
share on li
Please
log in
or
register
to answer this question.
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
answered
Mar 2, 2017
by
vincent_n
(
4.9k
points)
The mysql password I can change.
Please
log in
or
register
to add a comment.
Powered by
Question2Answer
...