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)
7 2) Add a user (xbt) with password
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