I am trying to install ms sql sudo /opt/mssql/bin/mssql-conf setup
on ubuntu but gwtting this messsage i have tried it the following sudo usermod -aG adm <username>
and sudo usermod -aG systemd-journal <username>
but it didn't work.
Asked
Active
Viewed 253 times
0
-
Have you rebooted/reopened a new shell? What Ubuntu version is that? – Nicolas Formichella Feb 27 '23 at 13:13
1 Answers
0
Run:
su root -l -c "adduser <user> adm"
su root -l -c "adduser <user> systemd-journal"
Then logout and login or reboot or run systemctl daemon-reload
. One of these will hopefully work.

Ahmad Ismail
- 710