You need to download 'dexter-server' file to install Dexter Server. |
If you'd like to have your own Dexter Server, you have to follow the next instructions.
System Estimation
~ 10 | 2.6 GHz * 1 | 4 GB | 50 GB |
10 ~ 50 | 2.6 GHz * 2 | 8 GB | 200 GB |
50 ~ 100 | 3.6 GHz * 2 | 32 GB | 500 GB |
100 ~ 200 | 3.8 GHz * 4 | 64 GB | 1 TB |
Users | CPU | RAM | HDD |
---|
Whenever creating a snapshot of defect status, database size can be increased as amount of your source codes.
Dexter supports only MySQL Database.
Purpose | It is used for the Dexter Data persistence (Defect Results Management) | ||
Version | 5.6-7 | ||
Download | http://www.mysql.com/downloads/ | ||
Install & Verify | http://www.tutorialspoint.com/mysql/mysql-installation.htm | ||
Configure | http://cameronyule.com/2008/07/configuring-mysql-to-use-utf-8/ The following codes must be added onto the (linux : my.cnf / windows: my.ini) file.
| ||
Create Dexter Database | You need to download ddl script file : 'dexter-db.sql' file using the mysql command line tool as follows. Before using the following commands, you have to decide a Dexter database name, user name and a password that will be used at the NodeJS (Next Step). ("// <== " is for a comment)
| ||
Task | Description |
---|
NodeJS and Dexter Server Installation
Purpose | To execute Dexter Server and mange Dexter Clients' requests and data persistence | |
Version | 4.4.0 | |
Download | http://www.nodejs.org/ | |
System Variables | The nodejs bin path must be set to PATH global environment variable | |
Verify |
| |
Download Dexter Server | You need to download the dexter-server zip(##########) file in GitHub, and then unzip it to any folder. or you can download the latest one here(github): 'project/server/dexter-server' folder | |
Task | Description |
---|
To run Dexter Server, you need to type the following command in the Dexter-server folder.
root@~> cd /usr/local/share/dexter-server_v#.#.# root@/usr/local/share/dexter-server_v#.#.#> node server.js -p=4982 -database.host=localhost -database.name=my_dexter_db -database.user=dexter-user -database.password=mypassword >> console.log & Dexter server listening on port 4982 // <== server started correctly DB Connection is fine : localhost:3306 // <== DB Connection is OK |
-p=port_number : You can change the Dexter server port number. The port number is used to access the Dexter Server by Dexter Clients such as Dexter WEB or Dexter Eclipse.
-database.host=mysql_db_ip : Try using the IP address of the database server.
-database.naem=my_dexter_db : Enter the name of the Dexter database that is created by previous step.
-database.password=db_user_password : The password you entered for the Dexter database.