updated on Sun Jan 22 16:00:49 UTC 2012
[aur-mirror.git] / xbtt-svn / README
blob60a0a89c3a3b36bce24d946f7a640607e4b8e1a2
1 The tracker stores stats in a MySQL database/table.
3 Depending on your MySQL configuration, you may need to slightly modify the commands below. Connect to your MySQL server as a privileged user (usually root).
5 1) Create a database (xbt)
6   > CREATE DATABASE xbt
7 2) Add a user (xbt) with password
8   > 
9   > GRANT ALL PRIVILEGES ON xbt.* TO 'xbt'@'localhost' IDENTIFIED BY 'xbt' WITH GRANT OPTION;
10 3) Verify these settings in /etc/xbt_tracker.conf
11 4) Run the included xbt_tracker.sql on your newly created database
12   $ mysql -h localhost -u xbt -p xbt xbt < xbt_tracker.sql