Changes between Version 64 and Version 65 of VmServer
- Timestamp:
- Aug 1, 2012, 3:23:48 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
VmServer
v64 v65 2 2 3 3 This VM is for use as a BOINC server. 4 It has all the BOINC prerequisites installed, the BOINC software installed and compiled,4 It has all the BOINC server prerequisites installed, the BOINC software installed and compiled, 5 5 and user accounts and permissions set up. 6 It's ready to run [MakeProject make_project] and go.6 It's ready to run ~/boinc-trunk/tools/[MakeProject make_project] and go. 7 7 8 8 The VM image is for [http://www.virtualbox.org/ VirtualBox], an open-source VM system. 9 9 It is a 64-bit image; you need a 64-bit processor to run it. 10 10 11 The OS is Debian 6 64-bit.11 The OS is Debian 6 "Squeeze" (64-bit). 12 12 13 The BOINC software version is 25 900.13 The BOINC software version is 25883. 14 14 15 15 [http://boinc.berkeley.edu/dl/debian-6-boinc-server-120720.7z Download (366 MB)] … … 18 18 19 19 * The passwords can be found in the file {{{README-vmware-image}}} that is part of the zip file. 20 The `root` (or su do) password is 'rootpw'.20 The `root` (or su) password is 'rootpw'. 21 21 There is a user account 'boincadm' with password 'boincadmpw'; build software under this account. 22 22 '''Change these passwords immediately.''' 23 23 24 24 * The BOINC software on this VM is not necessarily the latest version. 25 If you want the latest version, run {{{update_latest.sh}}} and then `configure`/`make`. 25 If you want the latest version, run 26 {{{ 27 $ cd ~/boinc-trunk 28 $ svn update 29 $ cd .. 30 $ ~/configure_server.sh 31 $ ~/make_server.sh 32 }}} 26 33 27 34 * The Linux/PHP/MySQL/Apache software on this VM is not necessarily the latest version. 28 35 If you want the latest version, use 'apt-get update' and 'apt-get upgrade'. 29 36 37 * The "sudo" command is available as user "boincadm" and there is an OpenSSH server running by default. 30 38 31 39 === Network Access === #server-network … … 131 139 In the NAT tab: VMnet host: VMnet8 132 140 }}} 133 134 === SSH ===135 136 The VMware player provides only a 24x80 non-scrolling console window.137 Once you have networking, it's much handier to SSH into the server.138 To enable the SSH daemon:139 {{{140 su -c '/usr/sbin/sshd'141 }}}