![]() |
|
|
FAQLicensing Custom Database Module Demo
Notification
Starting Server Automatically
Forward through a Web Server (allows SSL) Charting problems Database Info
Miscellaneous
Installing and Running FBT
Licenses are are currently priced according to how many users will
be using the system. 20, 50 and unlimited user licenses are available.
Q: What happens after the first year? Our product comes with a complete year of free upgrades and support. After the first year, you can still run your server using your existing version. However, you must renew our extended support agreement to continue to upgrade to the latest versions and continue to receive our outstanding support. If you wish, you may purchase a base system and then choose to upgrade your license at a later time. You will simply be charged the difference between the two packages. Q: What is the Database Module? The Database Module comes with a Database Admin menu that allows you to define a connection to any JDBC compliant database and store data in the database rather than the regular flat file system. This system is only available as an Unlimited license and is not available as a hosted system. The Database version also comes with a migration tool that allows you to migrate between the two types of systems. You can find complete documentation here. Q: bindException: Why can't I get going? Fast BugTrack is set to run by default on port 10000. If you see a
bindException message when you try to configure the system for the first
time, it is likely that you already have something using this port on
your system. You can try to determine what process is using the port
by using the following command: If you choose to use a different port, you will have to choose one of the following two methods, since Fast BugTrack uses 10000 by default.
If you are using a manual installation, change the FastBugTrack script to the following: java -Xms128M -Xmx256M -cp bugserver.jar BugTrack -p 10001 & On windows, type "cmd" in the "start->run" menu, to open up a command
prompt. You can remove your current bugs and attachments using the "Remove All Bug Data" option in the Admin->Data Import menu. This will reset the id counters to 0 for both attachements and bugs. Q: What are the limitations of the demo? The demo product is a fully functional application with the following 2 exceptions:
Q: Will I have to re-install if I choose to purchase? No! We have made the conversion process as painless as possible. If you choose to purchase FBT, then you will be provided with a special key that will instantly override all of the demo limitations. Your existing bugs and information will be kept intact and no modifications are necessary.
Q: My email Notification is not working? a)You will not receive any notification if you assign a bug to yourself.
Notification is only performed if the bug is assigned to a different
person. For instance, McAfee VirusScan Database 8.0i includes a subset of "desktop firewall" functionality, mainly to stop the proliferation of worms. One of the settings is described as "Prevent mass mailing worms from sending mail", and is implemented as blocking port 25 for all processes except those listed as exceptions. Default exceptions include Outlook.exe, tomcat.exe, apache.exe, netscp.exe, etc. You would have to disable this, or add FastBugTrack.exe to the exception list. Q: Can I change the character set or the email Notification? As an administrator, login, go to "Admin Menu", "Server", and you will see a field where you can enter an explicit charset for messages sent by Fast BugTrack. (Override Charset) Q: How do I run Fast BugTrack as a service on Windows NT/XP? (See below for Windows 2000) Download invoker. It's a free, distributable command line utility for creating registered services, created by Idetix (www.idetix.com). Steps:
Q: How do I run Fast BugTrack as a service on Windows 2000/2003 There are problems with invoker and Windows 2000. srvany and instsrv are the tools used to run Fast BugTrack as a service. Steps:
Q: How do I start it automatically on a
unix box . #####
# Tentative startup script for Alcea Fast BugTrack (FBT)
#
# NOTE: Only start is currently supported (ie. stop/reload not yet implemented).
#
# Please email suggestions / improvements to:
# bugtrack@alceatech.com
#
# chkconfig: 345 85 15
# To use, as root:
# 1) As root, place in /etc/init.d/fastbugtrack
# 2) chmod 755 /etc/init.d/fastbugtrack
# 3) Update FBTPATH, FBTUSER, and FBTEXE below...
# 4) Test with: fastbugtrack start
# 5a) Add to auto-start on Red Hat with:
# chkconfig --add fastbugtrack
# 5a) Add to auto-start on Debian with:
# update-rc.d fastbugtrack defaults
#####
FBTUSER="fastbug"; #uid to run FBT as...
FBTPATH="/home/fastbug/FastBugTrack"; # Where FBT is installed...
####
# For InstallNow installation:
####
FBTEXE="./FastBugTrack";
###
# For straight running java...
###
# Java 1.1:
#FBTEXE="/usr/lib/jdk1.1/bin/jre -green
-classpath \"bugserver.jar:pja.jar:/usr/lib/jdk1.1/lib/classes.zip\"
-mx128000000 -D$0 BugTrack "
startup() {
su - fastbug -s /bin/sh -c "cd $FBTPATH ; nohup $FBTEXE > /dev/null 2>&1 &"
}
# Note that the name of daemon running could be FastBugTrack or java XYZ...
case "$1" in
start)
echo $"$0 Starting";
startup
;;
stop)
echo $"$0 Stop not currently supported";
;;
status)
echo $"$0 Status not currently supported";
;;
reload|force-reload)
echo $"$0 Reload not currently supported";
;;
*)
echo $"Usage: $0 {start}"
exit 1
esac
Q: FireDaemon alternative ? Some
customers have informed us that FireDaemon is a useful tool for controlling
multiple Java applications : Q: How do I forward Apache to Fast BugTrack? change "Apache Group->conf->http.conf" : Q: How do I forward IIS to Fast BugTrack? Steps to configure IIS to serve FBT from a subdirectory: If you have questions or problems, please contact FBT support: bugtrack@alceatech.com Q: Charts are empty and/or crashing the system? The charting software requires a graphics context to generate charts. Solution 1: Java 1.5 provides a new headless feature. Make sure that there are
no conflicting references to the Pure Java Alternative (PJA), outlined
above. Solution 2 (using old JVM): PJA instructions: Place pja.jar (included in the package) in the FastBugTrack directory... Edit the FastBugTrack.lax file... .
Use the PJAFontCapture tool on a Windows machine to capture a specific font (This will generate a file like "Arial.pjaf" - place this file in the FastBugTrack directory... JVM 1.3.1+ requires additional attributes: Manual startup: Q: Charts appear in black and white (or only 4 colors)? Solution 1 : Solution 2 : Q: What does Fast BugTrack use as a database? A general FBT system uses an internal file-based system for storing bugs. The server has been custom built to cache the appropriate information within each issue. It is extremely efficient, handles concurrent users easily, and will scale to tens of thousands of issues. Our stress testing machine is an old P-100 with 64Megs of RAM running Linux. There is no performance degradation with over 30,000 bugs within the database. An export function is available to export the data within Fast BugTrack to a comma separated file, that can then be read into Excel or other tools. A Custom Database Module can be tailored to work with any JDBC database. This work involves customizations that are specific to customer needs. Q: How do I back up my bug database? . Database Modules require customized procedures to create a DB backup. On all systems however, there is an "Admin Menu->Backups" utility that will create a backup of your system. All system data is stored in a new backup directory. You may want to stor this on a second machine for safe keeping. Q: How do I move my system to another machine? The backup utility allows an administrator to create a backup directory of their current system. This process should be done consistently in case any problems arise such as machine failure. The backup directory that is created should always be copied and stored on a separate machine. Two types of backups can be created. A complete backup of all files on the system will copy all the executables and installation files. A backup of all data files is all that is needed because they can be copied over a fresh installation. This option is also very common for moving a system to a new machine. The System file backup can be copied over a fresh system. To move your system to another machine (or bring it to a saved state), simply install a fresh system and then copy the system file backup over that fresh installation.
Q: I cannot remember my admin password? There are two solutions: b) The users.cfg file contains passwords in the following format :
login,PASSWORD||type (type only exists if not normal) Q: I cannot see any "Closed" bugs? The default setting is to hide all closed bugs. You will notice a red link just under the logo image that states "Closed Hidden". If you click on this link, the text will change to "Closed Displayed" and you will be able to see all the Closed bugs in the system. Q: I am not seeing all of the bugs? A common mistake is to create groups and not properly list all of the projects that should be seen by the members of that group. Sometimes projects are added at a later time and not propogated to the group setup. Q: Can I restrict who can receive bugs? yes, the group feature allows you to create groups. In addition, you can make the members of that group invisible to oneanother. Therfore, you are able to create a group of users that cannot see each other. All these users can see is the system users that are not members of this group. Q: Can you provide more details about customizing my installation? Yes! Check out our customization section. If you have any questions about this process, please email: bugtrack@alceatech.com for further details. Yes! One caveat is that users must still have a "profile" (you must
have created them as a user in FBT), as we store additional info about
the user...
Q: I've installed Alcea Fast BugTrack, now what? Start running it. This will depend on the system that you've installed it on. On a Windows system, you'll likely choose "Start...", "Programs...", "Alcea Fast BugTrack". On a Unix system, you'll execute FastBugTrack.sh. Remember that Fast BugTrack is a Web Server, and that the only GUI interface is through a web browser. See the next question for more details. Q: I've started running Alcea FastBugTrack, now what? Now you want to point your web browser at the appropriate location. When Fast BugTrack starts up, it displays some suggested url's to try. It's important to include "http://" at the start of the url, as Fast BugTrack runs on a non-standard port. A couple of possibilities:
Q: I was interrupted configuring my BugTracker. Now I get prompted for a password when I want to configure my server. What should I do? The first step of the installation process creates a file called "server.cfg". If Fast BugTrack finds this file when it is started, it will not run in configuration mode. Delete this file, restart FastBugTrack, and you will be back in configuration mode. This file can be found in "c:\program files\fastbugtrack\" on a Windows system. |
SYSTEM INFO
INSTALLATION GUIDE USER GUIDE
ADMIN GUIDE |
|
© 1997-2007| ALCEA TECHNOLOGIES INC. - All Rights Reserved For more information inquire here or email us at fit@alceatech.com. 1-877-321-4463 Head Office |