Changes between Version 2 and Version 3 of LcbruTrac HowTo Manage Users


Ignore:
Timestamp:
11/11/15 17:11:48 (9 years ago)
Author:
richard.admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LcbruTrac HowTo Manage Users

    v2 v3  
    33Tags: [[LcbruTrac Summary]] [[HowTo]]
    44
    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.
    67
    78== Procedure
    89
    9 1. Run the command
     101. Copy the file to a local machine. `scp {username}@{server-name}:/local/trac-deploy/apache-conf/lcbru-trac.htpasswd .`
     112. Run the command
    1012{{{
    11     htpasswd /local/trac-deploy/apache-conf/lcbru-trac.htpasswd {firstname.lastname}
     13    htpasswd ./lcbru-trac.htpasswd {firstname.lastname}
    1214}}}
     153. You will then be prompted for a password.
     164. Copy the file back to the server `scp ./lcbru-trac.htpasswd {username}@{server-name}:/local/trac-deploy/apache-conf/lcbru-trac.htpasswd`
    1317
    14 2. You will then be prompted for a password.
    15