Skip to content
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.

Quick Start

tauraamui edited this page Aug 2, 2017 · 11 revisions

Usage:

Tacusci needs to be given the database username and password at run time.

Execution command:

java -jar tacuscivX.X.X.jar --username username --password password

Additional Option flags:

--debug

The debug option flag forces Tacusci to run in debug mode. This will result in the console output to include all debug messages. It also auto logs you in as the root admin account but only if you are viewing the pages locally/as localhost.

--disable-debug-output

The disable debug output option flag just allows you to run in debug mode but suppresses outputting all of the debug messages.

Startup Behaviour:

When Tacusci has been executed for the first time it auto generates a tacusci.properties file with the required default setting values, it then uses these default values.

The default username password for the root admin account are:

Username: admin_tacusci

Password: Password1234!

If you would like to change the username or password you can change these in the properties file. If the root username does not meet the validation rules for a username or it is already in use by another user it will just change back to the default username. At the same time, any other user accounts created cannot use the default admin username even if the current username for the default admin user is different.

When you manually change the password in the properties file it replaces it with CRYPT(HASH) so that it is no longer plain text. The hash is a Base64 encoding of the passwords SHA hash.

Clone this wiki locally