Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Adding extra local accounts

There's not currently a tool for this. You will need to add entries directly to the database.

...

Code Block

INSERT INTO user (unityid, firstname, lastname, email, lastupdated) VALUES ('myusername', 'myfirstname', 'mylastname', 'myemailaddr', NOW());

...

Code Block

SELECT id, unityid FROM user WHERE unityid = 'myusername';

...

Code Block

INSERT INTO localauth (userid, salt, passhash, lastupdated) VALUES ('place1', 'place2', 'place3', NOW())

...

Additional local accounts can now be added using the backend code. Run

Code Block

vcld -setup

after you have finished the backend install, select option 1, and follow the prompts.

Adding LDAP authentication

...