CDash:Installation: Difference between revisions
No edit summary |
|||
Line 1: | Line 1: | ||
[[CDash | < CDash Main Page]] | [[CDash | < CDash Main Page]] | ||
CDash is a [http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29 LAMP] application, running on [http://www.apache.org/ Apache] using [http://www.php.net/ PHP] to access a [http://www.mysql.com/ MySQL] database. | CDash is a [http://en.wikipedia.org/wiki/LAMP_%28software_bundle%29 LAMP] application, running on [http://www.apache.org/ Apache] using [http://www.php.net/ PHP] to access a [http://www.mysql.com/ MySQL] or [http://www.postgresql.org PostgreSQL] database. | ||
== System Requirements == | == System Requirements == | ||
* Apache | * Apache | ||
* MySQL database (5.x and higher) | * SQL database | ||
** MySQL database (5.x and higher) | |||
** PostgreSQL database (8.3 and higher) | |||
* PHP (5.0 and higher) | * PHP (5.0 and higher) | ||
* XSL module for PHP | * XSL module for PHP | ||
Line 35: | Line 37: | ||
The system configuration is stored in <tt>.../CDash/config.php</tt>, edit this with your favorite ASCII editor. | The system configuration is stored in <tt>.../CDash/config.php</tt>, edit this with your favorite ASCII editor. | ||
=== Database === | === SQL Database === | ||
If you are running the MySQL database on the same server as the Apache web server the defaults should work with no changes: | If you are running the MySQL database on the same server as the Apache web server the defaults should work with no changes: | ||
Line 53: | Line 55: | ||
rcmysql start | rcmysql start | ||
=== PostgreSQL Database === | |||
If you are running the PostGreSQL database read the previous MySQL section about configuring the database access. | |||
You will also need to tell CDash to use PostgreSQL driver: | |||
// Database type (empty means mysql) | |||
$CDASH_DB_TYPE = 'pgsql'; | |||
Here is list of packages necessary on ubuntu | |||
sudo apt-get install php-pear | |||
sudo pecl install pdo | |||
sudo apt-get install php5-dev | |||
sudo pecl install pdo | |||
sudo pecl install pdo_pgsql | |||
=== Email === | === Email === |
Revision as of 22:19, 25 November 2008
CDash is a LAMP application, running on Apache using PHP to access a MySQL or PostgreSQL database.
System Requirements
- Apache
- SQL database
- MySQL database (5.x and higher)
- PostgreSQL database (8.3 and higher)
- PHP (5.0 and higher)
- XSL module for PHP
- cURL module for PHP (for site statistics)
- GD module for PHP (for regression tests)
Downloading CDash
The current stable release of CDash is 1.2.1 you can either download it as a zip archive
- CDash-1.2.1.zip
- or from the Subversion repository:
svn co https://www.kitware.com:8443/svn/CDash/Release-1-2-1 CDash
SVN Development version
CDash is available from the development Subversion repository. Either extract the code into your web server tree, or another directory which will later be copied to the web server:
cd /srv/www/htdocs svn co https://www.kitware.com:8443/svn/CDash/trunk CDash
Note: If this fails ensure any firewall allows outgoing access to port 8443.
Previous versions of CDash
- 1.0: CDash-1.0.zip or svn co https://www.kitware.com:8443/svn/CDash/Release-1-0 CDash
- 0.8: CDash-0.8.zip or svn co https://www.kitware.com:8443/svn/CDash/Release-0-8 CDash
Configuration
The system configuration is stored in .../CDash/config.php, edit this with your favorite ASCII editor.
SQL Database
If you are running the MySQL database on the same server as the Apache web server the defaults should work with no changes:
// Hostname of the MySQL database $CDASH_DB_HOST = 'localhost'; // Login for MySQL database access $CDASH_DB_LOGIN = 'root'; // Password for MySQL database access $CDASH_DB_PASS = ; // Name of the MySQL database $CDASH_DB_NAME = 'cdash';
If you have just installed MySQL don't forget to start it:
rcmysql start
PostgreSQL Database
If you are running the PostGreSQL database read the previous MySQL section about configuring the database access. You will also need to tell CDash to use PostgreSQL driver:
// Database type (empty means mysql) $CDASH_DB_TYPE = 'pgsql';
Here is list of packages necessary on ubuntu
sudo apt-get install php-pear sudo pecl install pdo sudo apt-get install php5-dev sudo pecl install pdo sudo pecl install pdo_pgsql
You should probably edit the default email addresses:
// Default from email $CDASH_EMAILADMIN = 'admin@cdash.org'; $CDASH_EMAIL_FROM = 'admin@cdash.org'; $CDASH_EMAIL_REPLY = 'noreply@cdash.org';
Backup directory
The backup/log directory by default is placed in .../CDash/backup, this must be made writable by the account that you run Apache under (typically wwwrun), you can move the directory via:
// Backup directory $CDASH_BACKUP_DIRECTORY = 'backup';
Cookie expiration time
As of CDash 1.2 the login cookie time can be set in the config.php. The default is set to 1 hour.
// Duration of the cookie session (in seconds) $CDASH_COOKIE_EXPIRATION_TIME = '3600'
This allows the browser to remember the login/password of the user. On a public computer it is recommended to always log out
Google Maps
CDash can use Google maps to display the location of submission sites. CDash comes with Kitware's key code which won't work for your site's URL. Every site that uses Google maps requires its own Google maps key which you should obtain from Google (it's free), use this style URL when applying for a key:
http://mysite.org/CDash
Paste your newly obtained key in place of Kitware's:
$CDASH_GOOGLE_MAP_API_KEY['localhost'] = 'paste key here';
If your submission machines use private IP addresses you can add default location information, e.g. for all machines in the 192.x.x.x network (use http://maps.google.com to obtain your location):
$CDASH_DEFAULT_IP_LOCATIONS[] = array("IP" => "192.*","latitude" => "42.6612","longitude" => "-73.7689");
Sometimes site location are misreported (e.g. the ISP's location is used), you can override these:
$CDASH_DEFAULT_IP_LOCATIONS[] = array("IP" => "76.65.240.*","latitude" => "43.667","longitude" => "-79.417");
You'll probably want to replace the defaults that are present.
Note: If you use the 192.x.x.x address range ensure you update the location information before submitting from any machines in this subnet, as the location is stored in the database on first submission from a site (but can be subsequently edited from the admin web pages).
Google Analytics
CDash can use Google analytics to monitor site usage. CDash's main index.php contains a reference to a default Kitware Google analytics code:
$CDASH_DEFAULT_GOOGLE_ANALYTICS='UA-701656-6';
When you configure each project you will have the opportunity to set a per-project Google analytics code. See Adding GoogleAnalytics for more information.
RSS directory
Ensure that the .../CDash/rss (and .../CDash/backup) directory is writable by the user account that Apache runs under (typically wwwrun).
Apache
Ensure that the /srv/www/htdocs/CDash tree is accessible, you may have to add the following to your /etc/apache2/conf.d directory:
cdash.conf:
<Directory /srv/www/htdocs/CDash> Order allow,deny Allow from all </Directory>
You may need to restart Apache:
rcapache2 restart
Creating database
Access your website to start the install process:
http://mywebsite.com/CDash
The first step will confirm the host login and password for the database, the default admin account and password are also displayed, make a note of these as you'll need them later, as its easy to skip past this step missing them (you can always find them in .../CDash/sql/cdashdata.sql).