[Srtool-users] mysql authentication
Status: Beta
Brought to you by:
d4v1dd
|
From: David K. <dkn...@ma...> - 2005-09-02 18:04:58
|
The newest revision in CVS includes the ability to use mysql
authentication, in addition to the ldap authentication. This will
make installation a lot easier for folks that only have access to a
mysql server. A registration page has also been added if you are
using mysql authentication, to allow users to create their own
account for the application. There are also a lot of other updates
that are listed in the readme.
For upgrades:
1. Replace the code in /path/to/srtool (except conf.php and any other
files you changed)
2. In the etc dir there is a sql update script that will need to be run:
mysql -h <yoursqlserver> -u <statusdb_username -
p<statusdb_password> statusdb < sql_update_0.4.2-0.4.3.sql
3. If you are going to use mysql authentication, you will need to
either register (from the login page) or create a user in mysql:
log into mysql - mysql -h <yoursqlserver> -u <statusdb_username -
p<statusdb_password> statusdb
run this sql command - INSERT INTO users VALUES
(1,'sradmin','SRtool
Admin','management','5f4dcc3b5aa765d61d8327deb882cf99');
(the password for sradmin is password)
|