Changes between Version 2 and Version 3 of LcbruTrac HowTo Manage Users
- Timestamp:
- 11/11/15 17:11:48 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
LcbruTrac HowTo Manage Users
v2 v3 3 3 Tags: [[LcbruTrac Summary]] [[HowTo]] 4 4 5 Uses Apache basic HTTP authentication and is managed by using the [[http://httpd.apache.org/docs/2.2/programs/htpasswd.html|htpasswd]] utility to manipulate the password file). 5 - Uses Apache basic HTTP authentication and is managed by using the [[http://httpd.apache.org/docs/2.2/programs/htpasswd.html|htpasswd]] utility to manipulate the password file). 6 - The `htpasswd` utility is not installed on the server, so you have to copy it to another Linux machine. 6 7 7 8 == Procedure 8 9 9 1. Run the command 10 1. Copy the file to a local machine. `scp {username}@{server-name}:/local/trac-deploy/apache-conf/lcbru-trac.htpasswd .` 11 2. Run the command 10 12 {{{ 11 htpasswd /local/trac-deploy/apache-conf/lcbru-trac.htpasswd {firstname.lastname}13 htpasswd ./lcbru-trac.htpasswd {firstname.lastname} 12 14 }}} 15 3. You will then be prompted for a password. 16 4. Copy the file back to the server `scp ./lcbru-trac.htpasswd {username}@{server-name}:/local/trac-deploy/apache-conf/lcbru-trac.htpasswd` 13 17 14 2. You will then be prompted for a password.15