FraudStopper
Installation
Put the tgz file in the /opt folder on the server.
Untar the tarfile
-
Create a symlink from the new fraudstopper folder to
/opt/fraudstopper
ln -s FraudStopper-4.2 /opt/fraudstopper
Create the fraudstopper user with the home directory of /opt/fraudstopper
Change the ownership of the /opt/fraudstopper folder and all of it's children
Copy the FraudDetection license file (
license.txt
) into theconf
folderInstall MongoDB
Copy the fraudstopper.init file into /etc/init.d as fraudstopper
Run
chkconfig --add fraudstopper
andchkconfig fraudstopper on
Modify the
./conf/fraudstopper.properties.xml
file to the desired values. A full configuration guide can be accessed here.
Installing MongoDB
Install latest mongodb-org from Mongo Repository. Different Linux versions require different mongo versions and installation methods.
Here are a few:
Try to use a respository-based method if possible. It will make ongoing support easier.
Setup NFS
Setup NFS Exports on the BroadWorks Application Servers
Make sure the following packages are installed:
nfs-utils-*
nfs-utils-lib-*
rpcbind-*
Add something similar to the /etc/exports file
/var/broadworks/billing 10.110.1.161(rw,fsid=0,sync,no_root_squash)
chkconfig nfs on
chkconfig rpcbind on
service nfs start
service rpcbind start
Upgrade from 3.X to 4
Run the mongo client and execute the following commands:
use fraudstopper;
db.users.update({}, {$set: {sourceName: "production"}}, {multi: true});
db.filestats.update({}, {$set: {sourceName: "production"}}, {multi: true});
These commands will update the existing users and filestats documents to include the production sourceName. If the source name you've specific in the configuration file is different than 'production', modify the update commands as appropriate.