You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a docker images which can successfully run tacacsgui and it's database(tgui,tgui_log) is a remote DB, not local. I changed the /opt/tacacsgui/web/api/config.php, to make DB_HOST become anther db that is also a docker and they are in the same docker bridge , then run systemctl apache2 restart, last check the web interfaces got server error without input anything.
If I want to use postgresql to start tacacsgui, how to change the configfile?
The text was updated successfully, but these errors were encountered:
1. That is because the installer fails to create the tgui_user in mysql database. You can do so by logging in as root by vieweing the password from /opt/tacacsgui/web/api/config.php. Be sure to run the following command.
Create the user tgui_user
Create user 'tgui_user'@'localhost' IDENTIFIED WITH mysql_native_password BY 'the password you saw in the config file';
Grant necessary permissions to run the application
GRANT ALL ON tgui.* TO 'tgui_user'@'localhost' GRANT ALL ON tgui_log.* TO 'tgui_user'@'localhost'
2. I haven't personally tried it yet but I might tinker around. If I succeed, I will let you know.
The text was updated successfully, but these errors were encountered: