Changes between Version 85 and Version 86 of ServerIntro
- Timestamp:
- Apr 15, 2015, 12:22:56 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ServerIntro
v85 v86 40 40 * Debian and Ubuntu offer a "boinc-server-maker" package to create 41 41 BOINC projects more easily on local or remote machines. 42 This ongoing effort, described on their 43 [http://wiki.debian.org/BOINC/ServerGuide Wiki] aims at full compatibility 44 with the BOINC Virtual Machine. 45 If anyone is interested in helping maintaining a boinc-server package 46 for Debian, please contact David Anderson. 42 This ongoing effort is described here: 43 [http://wiki.debian.org/BOINC/ServerGuide Wiki]. 47 44 Again, if you take this approach, skip the rest of this page. 48 45 … … 75 72 This causes problems: for example, when the file upload handler creates 76 73 a directory in the [wiki:DirHierarchy upload hierarchy], 77 it's owned by (`apache`, `apache`), and the [wiki:FileDeleter file deleter] 74 it's owned by (`apache`, `apache`), 75 and the [wiki:FileDeleter file deleter] 78 76 (which runs as `boincadm`) won't be able to delete the files there. 79 77 80 To solve this problem, edit `/etc/group` so that `apache` belongs 81 to group `boincadm`, i.e. change the line 82 78 To solve this problem, add `apache` to the to group `boincadm` using 79 {{{ 80 $ usermod -G -a boincadm apache 81 }}} 82 83 or edit `/etc/group` and change the line 83 84 {{{ 84 85 boincadm:x:566: 85 86 }}} 86 87 to 87 88 88 {{{ 89 89 boincadm:x:566:apache 90 90 }}} 91 91 (the "566" is the group ID; it may be different on your system). 92 Apache will need to be stopped/restarted for this to take effect. 92 93 Apache will need to be restarted for this to take effect. 93 94 94 95 Both `boincadm` and `apache` should have … … 150 151 151 152 === MySQL notes === #MySQL-notes 152 Instructions for setting up MySQL are here :153 Instructions for setting up MySQL are here 153 154 https://dev.mysql.com/doc/refman/5.6/en/linux-installation-yum-repo.html 155 and here 156 http://www.if-not-true-then-false.com/2010/install-mysql-on-fedora-centos-red-hat-rhel/ 154 157 155 158 After setting up MySQL,