[Debian Wiki] Update of "BOINC/ServerGuide" by chalet16

Debian Wiki debian-www at lists.debian.org
Sat Dec 4 12:46:52 UTC 2010


Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Debian Wiki" for change notification.

The "BOINC/ServerGuide" page has been changed by chalet16:
http://wiki.debian.org/BOINC/ServerGuide

New page:
'''Under construction'''
 1, Install BOINC server dependencies : {{{ 
sudo apt-get install subversion build-essential apache2 php5 mysql-server php5-gd php5-cli php5-mysql python-mysqldb libtool automake autoconf pkg-config libmysql++-dev libssl-dev
}}}
 1. Create a user and a group for BOINC and add www-data to that group : {{{
sudo useradd -m -s /bin/bash boincadm
sudo usermod -G boincadm www-data
}}}
 1. Create MySQL database for BOINC : {{{
mysql -u root -p
> CREATE DATABASE boincdb;
> CREATE USER 'boincadm'@'localhost' IDENTIFIED BY 'asdf';
> GRANT ALL PRIVILEGES ON boincdb.* TO 'boincadm'@'localhost';
}}}



More information about the pkg-boinc-commits mailing list