| Apache VCL > Index > Documentation > For VCL Administrators > VCL Installation > Web Code Installation |
This page describes how to install and configure the frontend VCL web code components including the web server prerequisites and frontend VCL web code. It also describes how to add local web accounts and configure LDAP authentication.
Your web server should meet the following criteria before installing the frontend VCL code:
svn co https://svn.apache.org/repos/asf/incubator/vcl/trunk/web/ vcl
There's not currently a tool for this. You will need to add entries directly to the database.
INSERT INTO user (unityid, firstname, lastname, email, lastupdated) VALUES ('myusername', 'myfirstname', 'mylastname', 'myemailaddr', NOW());
SELECT id, unityid FROM user WHERE unityid = 'myusername';
INSERT INTO localauth (userid, salt, passhash, lastupdated) VALUES ('place1', 'place2', 'place3', NOW())
with place1 = id from step 2
place2 = an 8 char random string
place3 = sha1sum( desired password with place2 stuck on the end )
this can be generated under linux like this (using 'thedog' as the password and 11111111 as place2):
echo -n 'thedog11111111' | sha1sum
Once a user has been added, the user can go to User Preferences to change his/her password