UBC Physics & Astronomy
gamma.phas.ubc.ca
142.103.236.10 (PUBLIC) - 192.168.1.10 (BACKUP)

NOTE: gamma is on a temporary server for the time being.


15-03-25
==========================================================================
turned off nmb to stop broadcast traffic
https://serverfault.com/questions/155753/how-can-i-disable-samba-broadcasting-features
========================================================================== 
14-03-27
Added mount for /var/www/html/pubHtmll so that ugradsurveys links would work.
cat /etc/fstab
#
# /etc/fstab
# Created by anaconda on Fri Feb 22 05:48:10 2013
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
/dev/mapper/vg_gamma-lv_root /                       ext4    defaults        1 1
UUID=b5fede1e-4437-4e0a-ac5c-654da5b981f0 /boot      ext4    defaults        1 2
/dev/mapper/vg_gamma-lv_home /var/www                ext4    defaults        1 2
/dev/mapper/vg_gamma-lv_swap swap                    swap    defaults        0 0
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
##
## Remote Mounts...
##
alpha:/home   /home   nfs rw,rsize=8192,wsize=8192,timeo=14,hard,intr,bg,tcp
alpha:/opt/sysadmin/common  /opt/sysadmin/common  nfs rw,rsize=8192,wsize=8192,timeo=14,hard,intr,bg,tcp
142.103.236.90:/pubHtml  /var/www/html/pubHtml  nfs4 rw,rsize=32768,wsize=32768,hard,intr,bg,tcp,acl

System Info

Disaster Recovery MySQL Backups Using ZRM

Squirrelmail permissions: After upgrading squirrelmail check/reset permissions as follows:
chown -R apache:apache /etc/squirrelmail 
chown -R apache:apache /usr/share/squirrelmail
chown -R root:apache /var/spool/squirrelmail/attach
chmod 0730 /var/spool/squirrelmail/attach

Upgrading OTRS
wget ftp://ftp.samurai.com/pub/otrs/SRPMS/redhat/8.0/otrs-2.2.1-01.src.rpm
rpmbuild --rebuild otrs-2.2.1-01.src.rpm 
rpm -Uvh /usr/src/redhat/RPMS/i386/otrs-2.2.1-01.i386.rpm
cat /opt/otrs/scripts/DBUpdate-to-2.2.mysql.sql | mysql -p -f -u root otrs
service mysqld restart
/opt/otrs/bin/SetPermissions.sh /opt/otrs otrs apache
chown otrs:apache /opt/otrs/Kernel/Config.pm
service otrs restart

Log in as 'root@localhost' and select Admin -> SysConfig 
to make sure that OTRS updates the configuration files.

NOTES:
passwd, shadow, group files:   rsync'd from alpha hourly via /etc/cron.hourly/passwd
/www:   samba shared (/var/httpd/htdocs only to trek/ada2)
/etc/php.ini:   disable_functions = phpinfo
WWW STATS

After editing httpd.conf, run the apachectl configtest to test your config.
www.phas.ubc.ca == www.physics.ubc.ca
See explanation of Content, look-and-feel, suggestted code conventions...
MySQL Database Info: please see the 00_DbaseInfo database.

RSYNC info:
[root@www sysadmin]# crontab -l
## copy the passwd, shadow and group files from alpha every 15 minutes
1,16,32,48 6-18 * * * /usr/bin/rsync -o -g -p 192.168.1.32::pword/passwd /etc
1,16,32,48 6-18 * * * /usr/bin/rsync -o -g -p 192.168.1.32::pword/shadow /etc 
1,16,32,48 6-18 * * * /usr/bin/rsync -o -g -p 192.168.1.32::pword/group /etc
1,16,32,48 6-18 * * * /usr/bin/rsync -o -g -p 192.168.1.32::pword/samba/smbpasswd /etc/samba
# check for httpd still responding and restart if fail
0-59/5  * * * * /opt/sysadmin/httpd_status.pl > /dev/null 2>&1
# graddb - check that app_num glitch in grad database hasn't reappeared every day
5 4 * * * /usr/bin/php /wwws/forms/graddb/tools/detect.php > /dev/null 2>&1
# network - update network.hosts with fwsm rules every day
0 20 * * * sudo -u apache /usr/bin/php -f /opt/sysadmin/network_hosts/parse-fwsm.php > /dev/null 2>&1
# timesheets - on the 15th of each month send reminder email
0 5 15 * * /usr/bin/php /opt/sysadmin/timesheets/remind_users.php > /dev/null 2>&1
# timesheets - on the 1st of each month, disable access to previous month
0 5 1 * * /usr/bin/php /opt/sysadmin/timesheets/commit_users.php > /dev/null 2>&1
# 
0 5 1 * * /usr/bin/zrm-pre-scheduler --action backup --backup-set monthly  --interval monthly
0 4 * * * /usr/bin/mysql-zrm --action purge
0 5 * * * /usr/bin/zrm-pre-scheduler --action backup --backup-set daily  --interval daily
15 5 * * 0 /usr/bin/zrm-pre-scheduler --action backup --backup-set weekly  --interval weekly

15-01-20 - error running /wwws/forms/it/mynetwork.php
Just didn't work. No errors in /var/log/http/*. Found this error in /var/log/messages:
Jan 20 11:36:10 localhost suhosin[11018]: ALERT - configured POST variable limit exceeded - dropped variable 'notes[1511]' (attacker '142.103.235.80', file '/var/www/shtml/forms/it/mynetwork.php')
cd /etc/php.d
gamma-root-->diff suhosin.ini suhosin.ini.130904 
328d327
< suhosin.post.max_array_depth = 50
333d331
< suhosin.post.max_array_index_length = 128
338d335
< suhosin.post.max_name_length = 128
343d339
< suhosin.post.max_totalname_length = 512
348d343
< suhosin.post.max_value_length = 1000000
353d347
< suhosin.post.max_vars = 2000
383d376
< suhosin.request.max_vars = 2000

13-08-30
Installed suhosin-php security extension. Configuration is in /etc/php.d/suhosin.ini
Aug 30 09:10:04 Installed: php-suhosin-0.9.29-2.el6.i686

11-12-11
otrs Error after PERL upgrade (via normal RHEL update)
ERROR: OTRS-PMAccount-10 Perl: 5.8.5 OS: linux Time: Tue Dec 13 10:40:02 2011

 Message: dualvar is only available with the XS version of Scalar::Util at /usr/lib/perl5/site_perl/5.8.5/IO/Socket/SSL.pm line 30
BEGIN failed--compilation aborted at /usr/lib/perl5/site_perl/5.8.5/IO/Socket/SSL.pm line 30.
Compilation failed in require at /opt/otrs/Kernel/cpan-lib/Net/IMAP/Simple/SSL.pm line 8.
BEGIN failed--compilation aborted at /opt/otrs/Kernel/cpan-lib/Net/IMAP/Simple/SSL.pm line 8.
Compilation failed in require at /opt/otrs/Kernel/System/MailAccount/IMAPS.pm line 16.
BEGIN failed--compilation aborted at /opt/otrs/Kernel/System/MailAccount/IMAPS.pm line 16.

 Traceback (12437): 
   Module: Kernel::System::MailAccount::MailAccountFetch (v1.5) Line: 363
   Module: /opt/otrs//bin/PostMasterMailbox.pl (v1.2) Line: 135

Can't locate object method "new" via package "Net::IMAP::Simple::SSL" at /opt/otrs/Kernel/System/MailAccount/IMAPS.pm line 70.
The fix:
cd /usr/local/src
wget http://cpan.netnitco.net/authors/id/G/GB/GBARR/Scalar-List-Utils-1.23.tar.gz
tar zxvf Scalar-List-Utils-1.23.tar.gz 
cd Scalar-List-Utils-1.23
perl Makefile.PL
make test install

WebDAV Our webdav server may be accessed using a webDAV client via the URL
https://webdav.phas.ubc.ca/webdav/<assigned_name_space>.

I have already set up engphys and rap as assigned names.

For example, using the "rap" assigned_name_space:
Webserver setup for WeDAV The configuration for WebDAV is kept in /etc/httpd/conf/webdav_ssl.conf DAV Explorer is a java-based WebDAV client that is cross-platform and gui-based. Use of cadaver (webdav client)
rap@spyder$ cadaver https://webdav.phas.ubc.ca/webdav/rap
Do you wish to accept the certificate? (y/n) y
Authentication required for WebDAV Storage on server `webdav.phas.ubc.ca':
Username: rap
Password: passwd
dav:/webdav/rap/> ls
Listing collection `/webdav/rap/': succeeded.
Coll:   images                                 0  Jun 27  2008
        index.html                           506  Jun 27  2008
        test.txt                              23  Jun  3 10:48
dav:/webdav/rap/> quit
Connection to `webdav.phas.ubc.ca' closed.

11-02-02
Turned off iptables - control all access through FWSM.
10-03-23
Restricted logins to www
- put /etc/nologin for most shells
- put a banner in /etc/ssh/sshd_banner
- modified /etc/ssh/sshd_config, added the following lines:
Banner /etc/ssh/sshd_banner
# restrict who can login, use spaces, no commas
AllowUsers   rap map grieve tazana
#AllowGroups  root itstaff sysadmin

10-11-16
Updated SSL certificate.
used omega certificate and key files.
It is a UCC 5 domain cert with www.phas.ubc.ca as one of the host names.

08-09-02
Use of uninitialized value in concatenation (.) or string at /usr/lib/perl5/5.8.5/i386-linux-thread-multi/Scalar/Util.pm line 30.
perl -MCPAN -e shell
cpan shell -- CPAN exploration and modules installation (v1.7601)
ReadLine support enabled
cpan> install Scalar::Util
08-09-02
bacula client setup on www
[root@mail bacula-2.4.2]# ./configure --with-python --with-openssl --with-x --prefix=/opt/bacula --exec-prefix=/opt/bacula --sysconfdir=/opt/bacula/etc --with-scriptdir=/opt/bacula/scripts --with-dump-email=root@localhost --with-job-email=root@localhost --with-smtp-host=localhost --enable-client-only
[root@mail bacula-2.4.2]# make install-autostart-fd

08-07-11 Edited /usr/local/lib/php/class.DB_eSession.php to add the following line (security fix).
c.f. http://www.securityfocus.com/archive/1/424819
$_sess_id_set = ( empty($_sess_id_set) ) ? NULL: addslashes($_sess_id_set);

08-06-05
Added the following to /etc/httpd/conf/httpd.conf:
<IfModule mod_expires.c> ExpiresActive on ExpiresDefault now ExpiresByType image/gif "access plus 4 hours" ExpiresByType image/jpeg "access plus 4 hours" ExpiresByType image/png "access plus 4 hours" ExpiresByType audio/mp3 "access plus 2 hours" ExpiresByType audio/x-m4a "access plus 2 hours" </IfModule>

By setting the "ExpiresDefault" to "now", it is instructing Apache to make everything non-cacheable except for the items listed below it. Without this, Apache would cache everything, including PHP scripts (which since they are dynamic, would be a fairly bad thing).

Included is a directive to cache JPEG images (with a MIME type of image/jpeg) for four hours, MP3 files for two hours, etc. You can modify this and add whatever MIME type you like, and the browsers will do the caching for you. The one downside to this is that the browser will not request that file again until the allotted time expires. What that means is that even if you change it on a webpage, it's possible people won't see those modifications for quite some time (the expiry time). If you set relatively small expires times, that isn't normally a problem. However if you want to set longer ones, the only way to force an immediate change to an item is to change the filename on the server (which is an easy work around).


08-04-29
Installed up-imapproxy V1.2.6 (released 28-Jan-2008, http://www.imapproxy.org). This is the same one that math dept uses.
[root@www up-imapproxy-1.2.6]# make install
mkdir -p /usr/local/sbin
/usr/bin/install -c -o bin -g bin -m 0755 ./bin/in.imapproxyd /usr/local/sbin
/usr/bin/install -c -o bin -g bin -m 0755 ./bin/pimpstat /usr/local/sbin

.


Create new signed certificate for labs.phas.ubc.ca
First create new key for labs.phas.ubc.ca
www# cd /usr/share/ssl
www# /usr/bin/openssl genrsa 1024 > /etc/httpd/conf/ssl.key/labs_phas_ubc_ca.key
Generating RSA private key, 1024 bit long modulus
..............++++++
........++++++
e is 65537 (0x10001)
www# l /etc/httpd/conf/ssl.key/labs*
-rw-------  1 root root 887 May 14 11:08 /etc/httpd/conf/ssl.key/labs_phas_ubc_ca.key
Next create new CSR (certificate signing request)
www# umask 77 ; /usr/bin/openssl req -new -key /etc/httpd/conf/ssl.key/labs_phas_ubc_ca.key -out /etc/httpd/conf/ssl.crt/labs_phas_ubc_ca.csr
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [CA]:
State or Province Name (full name) [British Columbia]:
Locality Name (eg, city) [Vancouver]:
Organization Name (eg, company) [University of British Columbia]:
Organizational Unit Name (eg, section) [Department of Physics and Astronomy]:
Common Name (eg, your name or your server's hostname) []:labs.phas.ubc.ca
Email Address []:sysadmin@phas.ubc.ca

Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:

[root@www certs]#
== now on mail.phas.ubc.ca ==
Copy over the CSR from www to mail.phas.ubc.ca and then sign it...
mail# pwd
/etc/httpd/conf/ssl.csr
mail# scp www:/etc/httpd/conf/ssl.crt/labs_phas_ubc_ca.csr .
mail# openssl ca \
             -batch \
             -verbose \
             -config /usr/share/ssl/openssl.cnf \
             -in /etc/httpd/conf/ssl.csr/labs_phas_ubc_ca.csr \
             -out labs_phas_ubc_ca.crt \
             -cert /etc/httpd/conf/ssl.crt/server.crt \
             -keyfile /etc/httpd/conf/ssl.key/server.key \
             -days 3650
Using configuration from /usr/share/ssl/openssl.cnf
V	151115204934Z		02	unknown	/C=CA/ST=British Columbia/L=Vancouver/O=University of British Columbia/OU=Department of Physics and Astronomy/CN=www.phas.ubc.ca/emailAddress=sysadmin@phas.ubc.ca
1 entries loaded from the database
generating index
message digest is md5
policy is policy_match
next serial number is 03
Certificate Request:
    Data:
        Version: 0 (0x0)
        Subject: C=CA, ST=British Columbia, L=Vancouver, O=University of British Columbia, OU=Department of Physics and Astronomy, CN=labs.phas.ubc.ca/emailAddress=sysadmin@phas.ubc.ca
        Subject Public Key Info:
            Public Key Algorithm: rsaEncryption
            RSA Public Key: (1024 bit)
                Modulus (1024 bit):
                    00:bb:5b:b2:8d:ee:02:74:a3:09:b0:36:1b:9e:cd:
                    07:43:41:d2:5b:34:ea:3e:84:7b:b2:b9:c3:0b:a4:
                    8c:e5:cb:5b:dc:f4:5f:c1:97:43:dc:16:90:a9:ce:
                    55:f2:57:fa:ed:c3:f1:9d:e6:c2:d7:d5:45:c5:85:
                    a2:1f:68:77:96:36:14:6f:ed:52:17:bc:76:e6:58:
                    47:1b:e9:37:8d:dc:3b:1c:63:53:a4:9e:dd:86:ed:
                    a9:8d:4a:1b:a9:79:59:ec:4e:3c:aa:fd:53:6d:75:
                    c5:91:f6:a8:d0:6f:43:47:97:23:94:3b:96:d6:6e:
                    e4:0b:43:ad:60:c1:a6:3d:03
                Exponent: 65537 (0x10001)
        Attributes:
            a0:00
    Signature Algorithm: md5WithRSAEncryption
        5d:3b:a3:2e:87:ec:6c:52:81:04:fe:dd:f8:f0:c7:f9:f1:4e:
        60:6f:f1:43:97:e1:ea:34:af:b8:74:56:66:f3:48:a0:0b:cf:
        c1:e0:73:b4:50:3d:82:bf:45:4e:62:fb:90:7b:fc:7a:14:f5:
        4e:d4:f0:6d:14:16:97:1a:c5:ef:59:29:6a:35:a5:05:a2:b3:
        90:7e:cd:8a:0e:dd:9f:66:78:18:ce:aa:a4:d7:f6:12:13:b3:
        29:13:e0:ce:4b:f0:60:a4:c4:35:b3:de:89:05:19:e4:b9:ac:
        4b:87:5e:2b:3f:4a:fe:2e:c1:06:bf:71:51:b8:4a:29:55:9c:
        db:57
Check that the request matches the signature
Signature ok
The subject name appears to be ok, checking data base for clashes
Everything appears to be ok, creating and signing the certificate
Successfully added extensions from config
Certificate Details:
        Serial Number: 3 (0x3)
        Validity
            Not Before: May 16 15:03:57 2008 GMT
            Not After : May 14 15:03:57 2018 GMT
        Subject:
            countryName               = CA
            stateOrProvinceName       = British Columbia
            organizationName          = University of British Columbia
            organizationalUnitName    = Department of Physics and Astronomy
            commonName                = labs.phas.ubc.ca
            emailAddress              = sysadmin@phas.ubc.ca
        X509v3 extensions:
            X509v3 Basic Constraints: 
            CA:FALSE
            Netscape Comment: 
            OpenSSL Generated Certificate
            X509v3 Subject Key Identifier: 
            49:A3:72:24:A9:FF:25:31:AB:57:A0:CC:F8:7C:A3:66:A0:88:4F:71
            X509v3 Authority Key Identifier: 
            keyid:C6:BC:B6:B9:ED:F7:44:3A:7B:2D:94:33:09:A5:10:58:C7:61:8C:9A
            DirName:/C=CA/ST=British Columbia/L=Vancouver/O=University of British Columbia/OU=Department of Physics and Astronomy/CN=mail.phas.ubc.ca/emailAddress=sysadmin@phas.ubc.ca
            serial:00

Certificate is to be certified until May 14 15:03:57 2018 GMT (3650 days)

Write out database with 1 new entries
writing new certificates
writing /usr/share/ssl/CA/newcerts/03.pem
Data Base Updated
[root@mail root]# 

08-03-19
I found a date selector widget which is released under the GPL and looks like it will do what we want. I installed the css and js files as follows:
css file under /var/www/html/css
js  file under /var/www/html/jscripts

There are links under /var/www/shtml that point to these two dirs.

Usage Instructions.


07-09-17
- added phpinfo to restricted_funtions in /etc/php.ini - added the following section to httpd.conf
# The following lines prevent .inc files from being 
# viewed by Web clients. 
#
<Files ~ "\.inc$">
    Order allow,deny
    Deny from all
</Files>

07-08-13
- upgraded MySQL-zrm to version 1.2.1 (MySQL-zrm-1.2-1.noarch.rpm, from http://www.zmanda.com/download-zrm.php)

07-08-13
- installed Typo3 for mrigroup, needed to created a directory, /usr/local/php/bin and put it in /etc/php.ini:
 
safe_mode_exec_dir = /usr/local/php/bin/
Created symlinks in /usr/local/php/bin to three ImageMagick progs (convert, composite, identify).

07-02-06
www died last night around 7:30pm. I managed to get it rebooted at 8:30am this morning but it complained about duplicate /boot label so couldn't mount /boot. On investigation, it looks like the OS now knows nothing about the Hardware RAID setup and sees separate disks. I manually mounted /dev/sda1 and /dev/sdb1 and wrote to one and it didn't appear on the other one so looks like the hardware raid isn't working or isn't recognized. I changed fstab to mount /dev/sdb1 on /boot since lvdisplay complains about duplicate PV:
[root@www 00_Servers]# lvdisplay
  Found duplicate PV Jmtxd8Sr2CmrZ3fDep14iam1ArUFCsSL: using /dev/sdb2 not /dev/sda2
  --- Logical volume ---
  LV Name                /dev/VolGroup00/LogVol00
  VG Name                VolGroup00
  LV UUID                kuUTKq-8f18-MA0b-tAav-PILO-Acqr-GzDO1G
  LV Write Access        read/write
  LV Status              available
  # open                 1
  LV Size                66.25 GB
  Current LE             2120
  Segments               1
  Allocation             inherit
  Read ahead sectors     0
  Block device           253:0
   
  --- Logical volume ---
  LV Name                /dev/VolGroup00/LogVol01
  VG Name                VolGroup00
  LV UUID                AkLpjM-VFPT-WzrP-Prau-VYka-5aGd-2Sq2EQ
  LV Write Access        read/write
  LV Status              available
  # open                 1
  LV Size                1.94 GB
  Current LE             62
  Segments               1
  Allocation             inherit
  Read ahead sectors     0
  Block device           253:1
07-02-12
- after upgrading squirrelmail via up2date, it stopped working. Needed to set permissions on /etc/squirrelmail and /usr/share/squirrelmail to owner:apache,
chown -R apache:apache /etc/squirrelmail; chown -R apache:apache /usr/share/squirrelmail

07-01-08
- installed phpBB.

06-05-09 - after upgrading squirrelmail via up2date, it stopped working. Needed to set permissions on /etc/squirrelmail and /usr/share/squirrelmail to owner:apache, chown -R apache:apache /etc/squirrelmail; chown -R apache:apache /usr/share/squirrelmail 07-01-04
- edited /etc/php.ini to increase max webmail attachment size. Did this by setting
memory_limit = 50M      ; Maximum amount of memory a script may consume (8MB)
post_max_size = 50M
upload_max_filesize = 50M
06-11-09
- edited /etc/my.cnf to enable log-bin (MySQL binary logging).
- installed MySQL Quick Admin.
- installed MySQL-zrm-1.1.1-1 backup program using the rpm.
- set up daily and monthly schedules in /etc/mysql-zrm and then activated them:
[root@www daily]# mysql-zrm-scheduler --add --interval monthly --start-time 05:00 --day-of-month 1 --backup-set monthly
Logging to /var/log/mysql-zrm/mysql-zrm-scheduler.log
DONE
[root@www daily]# mysql-zrm-scheduler --add --interval daily --start-time 05:00 --backup-set daily 
Logging to /var/log/mysql-zrm/mysql-zrm-scheduler.log
DONE
[root@www daily]# mysql-zrm-scheduler --query
Logging to /var/log/mysql-zrm/mysql-zrm-scheduler.log
0 5 1 * * /usr/bin/zrm-pre-scheduler --action backup --backup-set monthly  --interval monthly
0 5 * * * /usr/bin/zrm-pre-scheduler --action backup --backup-set daily  --interval daily

06-10-31
- edited /etc/php.ini and verify/change the following:
  safe_mode = On
  memory_limit = 12M
  display_errors = Off
  register_argc_argv = On
  upload_max_filesize = 20M
06-09-21
Installed Bumblebee Instrument Loaner software for the PHASDEPT and for AMPEL.
06-08-23
Installed php-eaccelerator. Installed from rpm from DagWeirs:
wget http://dag.wieers.com/packages/php-eaccelerator/php-eaccelerator-4.3.9_0.9.3-4.2.el4.rf.i386.rpm
rpm -ivh php-eaccelerator-4.3.9_0.9.3-4.2.el4.rf.i386.rpm
After rpm install, just restarted apache server and voila! Checked /var/cache/php-eaccelerator directory to make sure was working. Also looked at http://www.phas.ubc.ca/sysadmin/WWW-admin/phpinfo.php
06-06-07
Needed to create a database for engphys exams. First, used phpMyAdmin to create the database called "fizzexams". Next went to mysql command prompt and entered the following commands:
GRANT USAGE ON *.* TO 'engfizz'@'localhost' IDENTIFIED BY 'plaintextpasswd';
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP ON fizzexams.* TO 'engfizz'@'localhost' IDENTIFIED BY 'plaintextpasswd';
GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP ON fizzexams.* TO 'engfizz'@'%' IDENTIFIED BY 'plaintextpasswd';
I also modified the privileges for user webcal since by default it had global privileges on ALL tables. I changed them as follows:
GRANT  SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,INDEX,ALTER,CREATE TEMPORARY TABLES ON `WebCal` . * TO "webcalendar"@"localhost";
GRANT  SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,INDEX,ALTER,CREATE TEMPORARY TABLES ON `WebCal1` . * TO "webcalendar"@"localhost";
GRANT  SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,INDEX,ALTER,CREATE TEMPORARY TABLES ON `WebCal100` . * TO "webcalendar"@"localhost";
GRANT  SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,INDEX,ALTER,CREATE TEMPORARY TABLES ON `webcal2` . * TO "webcalendar"@"localhost";
05-09-15
WebCalendar 1.0.2 installation. Needed to make a link from includes/settings.php to tools/settings.php to fix error about not finding settings.php file when running send_reminders.php script.
05-09-15
Modified PHP resource limits (/usr/local/lib/php.ini):
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 90 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 50M ; Maximum amount of memory a script may consume (8MB)

05-07-13
WebCalendar reminders not working again:   Installed latest WebCalendar (v1.0.0).  Copied over data to new dbase (WebCal100) using phpMyAdmin.  Reminders still weren't working, so I modified cron job (file /var/spool/cron/www, to view use crontab -u www -l) to use wget to run the send_reminders script.  This seems to have fixed it.  WebCalendar setup can be done through http://www.phas.ubc.ca/WebCalendar/install/index.php.

05-07-13
WebCalendar reminders not working:  WebCalendar reminders are sent via a cron job (file /var/spool/cron/www, to view use crontab -u www -l) which runs the file every 5 minutes.  The cron job runs the file ~WebCalendar/tools/send_reminders.php.  When this file runs it includes the file ../includes/config.php.  I had to put this path in /usr/local/lib/php.ini in the parameter include_path, i.e.
include_path = ".:/usr/local/lib/php:/usr/local/lib/php/includes:/var/httpd/htdocs/WebCalendar/includes:/var/www/shtml/WebCalendar-1.0RC3/includes"
(Aside, /usr/local/lib/php is needed because db_connect is there)
I still get an error, saying:
You must reconfigure your php.ini file to have magic_quotes_gpc set  to ON  I don't want to do this and it doesn't appear to be a fatal error (ie the reminders are working again).

03-07-04
Fixed https server error:  Needed to create a directory named /var/cache/mod_ssl and make it owned by www and writeable only to www.  Then I managed to get it working.  Error in logs was
[error] Cannot allocate shared memory: (2)No such file or directory

03-07-04
Fixed apcupsd error:  From /var/log/messages:
Jun 29 04:17:45 www kernel: (see the NOTES section of 'man 2 wait'). Workaround activated.
Jun 29 04:18:51 www kernel: application bug: apcupsd(648) has SIGCHLD set to SIG_IGN but calls wait().
I downloaded the latest release (not stable) of apcupsd and installed it (apcupsd 3.10.6 (30 May 2003)).  Seemed to fix the problem.  Did the same fix on alpha.  

Fixed RAID5 disks:  used storcon to fix all the RAID5 disks.  Noticed and error message in logs, so traced it:
> I got a message in my logs:
> modprobe: modprobe: Can't locate module binfmt-464c.

Sure! When we transitioned our webserver from Solaris to Linux, there
were still a few SPARC binaries sitting around. Whenever a user tried to
run one of these binaries, we got the same message. What it means is,
"Hey! I couldn't run this binary, I'm going to try to reload by binary
handling code! Ack! I can't do it!"

Chances are good that someone is trying to run code on your machine that
wasn't built for it.

03-06-25
Replaced failed drive:  Replaced failed drive with Cheetah Ultra 320, Model ST336607LC, part No. 9v4006-002, Ser no. 3JA1V4B7, Varsity invoice #92063.  Old drive will be used as a spare when it comes back from Seagate.

03-06-24
crontab:  setup crontab for steve to run /www/physoffice/talks-events/scritps/mail_theory script.

03-06-23
storcon install:   When I rebooted www to put it into production use, I noticed one of the drives had failed.  I removed it and installed the storcon utility to be able to monitor the raid status.  /usr/local/sbin/storcon is the interactive utility to monitor, repair, etc the RAID array.  /usr/sbin/srcd is the daemon that allows remote connects and also send email alerts.  I couldn't seem to get this to run, no errors, just doesn't start. Its conf file is in /etc/srcd.conf.  There are also /etc/init.d/srcd and /etc/r[3,5].d startup files.

Installed samba and set up the www share for rap/map access.
Installed netvault and set up the backup schedule.

03-06-20
analog, gd, reportmagic install:   I installed the latest version of analog using an rpm obtained from http://www.trilithium.com/software/misc/.   I needed to install the latest version of gd in order to get the report magic stuff installed.  I got gd-2.0.15 from http://www.boutell.com/gd/ and installed it in /usr/local/[lib,bin,include].  When php4.3 was installed, it also installed some gd stuff, but reportmagic wants newer stuff.  So now when I ran Install.PL in reportmagic source tree, when it asked where libgd was, I pointed it to /usr/local/lib (instead of /usr/lib) and it installed OK.

03-06-12
mysql database move:   I want to move the databases from kepler and physics over to w3 and convert them to the new format.  So first I did a mysqldump of the software database on kepler:
mysqldump --opt --password -v software > softwareBU.sql
Then, on w3, I first created a database (data dir is in /var/lib/mysql) called software, then I did
mysql -p software < softwareBU.sql
Then, to conver to the new format, I ran
mysql_convert_table_format software

After this, I tried accessing a page that used php and mysql but got the error:  PHP Fatal error:  Call to undefined function:  mysql_connect() in /opt/apache/htdocs/php/swdb/database.lib on line 5.  Looking over my php setup, I decided to reconfigure and recompile it:
./configure --host=i686-pc-linux-gnu \
--build=i686-pc-1inux-gnu \
--target=i386-redhat-linux-gnu \
--enable-force-cgi-redirect \
--disable-debug \
--enable-pic \
--disable-rpath \
--enable-inline-optimization \
--with-bz2 \
--with-curl \
--with-dom=/usr \
--with-freetype-dir=/usr \
--with-png-dir=/usr \
--with-gd \
--enable-gd-native-ttf \
--with-ttf \
--with-gdbm \
--with-gettext \
--with-ncurses \
--with-gmp \
--with-iconv \
--with-jpeg-dir=/usr \
--with-openssl \
--with-png \
--with-pspell \
--with-xml \
--with-expat-dir=/usr \
--with-zlib \
--enable-bcmath \
--enable-exif \
--enable-ftp \
--enable-magic-quotes \
--enable-safe-mode \
--enable-sockets \
--enable-sysvsem \
--enable-sysvshm \
--enable-discard-path \
--enable-track-vars \
--enable-trans-sid \
--enable-wddx \
--without-oci8 \
--with-imap=shared \
--with-imap-ssl \
--with-kerberos=/usr/kerberos \
--with-ldap=shared \
--with-mysql=shared,/usr \
--enable-memory-limit \
--enable-bcmath \
--enable-shmop \
--enable-versioning \
--enable-calendar \
--enable-dbx \
--enable-dio \
--enable-mcal \
--with-apxs2=/opt/apache/bin/apxs


Then I did a make, make test, and finally make install.  After this I still needed to edit /usr/local/lib/php.ini and set
extension_dir = "/usr/local/lib/php/extensions/no-debug-zts-20020429"
extension=mysql.so
extension=imap.so
extension=ldap.so

I then stopped and restarted httpd and it worked (except for mysql database permission errors).
phpMyAdmin install:  I had previously installed phpMyAdmin in /www/phpMyAdmin-2.4.0.  I configured config.inc.php and created databases and tables as required.

03-06-010
php install:  downloaded php-4.3.2.  Used the following configure comand:

./configure --with-mysql=shared,/usr --with-apxs2=/opt/apache/bin/apxs

[root@w3 php-4.3.2]# make install
Installing PHP CLI binary:        /usr/local/bin/
Installing PHP CLI man page:      /usr/local/man/man1/
Installing PHP SAPI module
/opt/apache/build/instdso.sh SH_LIBTOOL='/opt/apache/build/libtool' libphp4.la /opt/apache/modules
/opt/apache/build/libtool --mode=install cp libphp4.la /opt/apache/modules/
cp .libs/libphp4.so /opt/apache/modules/libphp4.so
cp .libs/libphp4.lai /opt/apache/modules/libphp4.la
libtool: install: warning: remember to run `libtool --finish /usr/local/src/php-4.3.2/libs'
chmod 755 /opt/apache/modules/libphp4.so
[activating module `php4' in /opt/apache/conf/httpd.conf]
Installing shared extensions:     /usr/local/lib/php/extensions/no-debug-zts-20020429/
Installing PEAR environment:      /usr/local/lib/php/
[PEAR] Archive_Tar    - installed: 0.9
[PEAR] Console_Getopt - installed: 1.0
[PEAR] PEAR           - installed: 1.1
[PEAR] DB             - installed: 1.3
[PEAR] HTTP           - installed: 1.2
[PEAR] Mail           - installed: 1.0.1
[PEAR] Net_SMTP       - installed: 1.0
[PEAR] Net_Socket     - installed: 1.0.1
[PEAR] XML_Parser     - installed: 1.0.1
[PEAR] XML_RPC        - installed: 1.0.4
Installing build environment:     /usr/local/lib/php/build/
Installing header files:          /usr/local/include/php/
Installing helper programs:       /usr/local/bin/
  program: phpize
  program: php-config
  program: phpextdist



03-06-06
apache install:  downloaded httpd-2.0.46.  Used the following configure comand:

./configure --prefix=/opt/apache --with-mpm=worker --enable-mods-shared=all --enable-ssl --enable-cgi --disable-auth-anon --disable-bucketeer --disable-cache --disable-case-filter --disable-case-filter-in --disable-charset-lite --disable-deflate --disable-disk-cache --disable-echo --disable-example --disable-ext-filter --disable-file-cache --disable-logio --disable-mem-cache --disable-optional-fn-export --disable-optional-fn-import --disable-optional-hook-export --disable-optional-hook-import --disable-proxy --disable-proxy-connect --disable-proxy-ftp --disable-proxy-http --disable-static-ab --disable-unique-id --disable-v4-mapped
Output from configure command showed the following module status:
checking whether to enable mod_access... shared (all)
checking whether to enable mod_actions... shared (all)
checking whether to enable mod_alias... shared (all)
checking whether to enable mod_asis... shared (all)
checking whether to enable mod_auth_anon... no
checking whether to enable mod_auth_dbm... shared (all)
checking whether to enable mod_auth_digest... checking dependencies
checking whether to enable mod_auth_digest... shared (all)
checking whether to enable mod_auth_ldap... no
checking whether to enable mod_auth... shared (all)
checking whether to enable mod_autoindex... shared (all)
checking whether to enable mod_bucketeer... no
checking whether to enable mod_cache... no
checking whether to enable mod_case_filter_in... no
checking whether to enable mod_case_filter... no
checking whether to enable mod_cern_meta... shared (all)
checking whether to enable mod_cgid... shared (all)
checking whether to enable mod_cgi... shared (all)
checking whether to enable mod_charset_lite... no
checking whether to enable mod_dav_fs... shared (all)
checking whether to enable mod_dav... shared (all)
checking whether to enable mod_deflate... no
checking whether to enable mod_dir... shared (all)
checking whether to enable mod_disk_cache... no
checking whether to enable mod_echo... no
checking whether to enable mod_env... shared (all)
checking whether to enable mod_example... no
checking whether to enable mod_expires... shared (all)
checking whether to enable mod_ext_filter... no
checking whether to enable mod_file_cache... no
checking whether to enable mod_headers... shared (all)
checking whether to enable mod_http... yes
checking whether to enable mod_imap... shared (all)
checking whether to enable mod_include... shared (all)
checking whether to enable mod_info... shared (all)
checking whether to enable mod_isapi... no
checking whether to enable mod_ldap... no
checking whether to enable mod_log_config... shared (all)
checking whether to enable mod_logio... no
checking whether to enable mod_mem_cache... no
checking whether to enable mod_mime_magic... shared (all)
checking whether to enable mod_mime... shared (all)
checking whether to enable mod_negotiation... shared (all)
checking whether to enable mod_optional_fn_export... no
checking whether to enable mod_optional_fn_import... no
checking whether to enable mod_optional_hook_export... no
checking whether to enable mod_optional_hook_import... no
checking whether to enable mod_proxy_connect... no
checking whether to enable mod_proxy_ftp... no
checking whether to enable mod_proxy_http... no
checking whether to enable mod_proxy... no
checking whether to enable mod_rewrite... shared (all)
checking whether to enable mod_setenvif... shared (all)
checking whether to enable mod_so... yes
checking whether to enable mod_speling... shared (all)
checking whether to enable mod_ssl... checking dependencies
checking whether to enable mod_ssl... shared (all)
checking whether to enable mod_status... shared (all)
checking whether to enable mod_suexec... no
checking whether to enable mod_unique_id... no
checking whether to enable mod_userdir... shared (all)
checking whether to enable mod_usertrack... checking dependencies
checking whether to enable mod_usertrack... shared (all)
checking whether to enable mod_vhost_alias... shared (all)


Then ran make.

03-05-22
Installed mm from ftp://ftp.ossp.org/pkg/lib/mm (shared memory library).

OLD STUFF NOT FROM THIS SERVER IS BELOW:

2002 -  
BIOS SETUP    05/06 05/07   05/17
 07-03 



Create an RSA private key protected with a passphrase for the mail server: 
cd /usr/share/ssl/private
[200]dns{root} openssl genrsa -des3 -out server.key 1024

0 semi-random bytes loaded
Generating RSA private key, 1024 bit long modulus
............................++++++
.........++++++
e is 65537 (0x10001)
Enter PEM pass phrase: <entered passphrase>
Verifying password - Enter PEM pass phrase: <entered passphrase>
Generate a CSR (certificate signing request) using the server RSA private key:
[201]dns{root} openssl req -new -key ./private/server.key -out mail.csr
Using configuration from /usr/local/ssl/openssl.cnf
Enter PEM pass phrase: <entered passphrase for server.key>
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [CA]:
State or Province Name (full name) [British Columbia]:
Locality Name (eg, city) []:Vancouver
Organization Name (eg, company) [University of British Columbia]:
Organizational Unit Name (eg, section) [Physics & Astronomy Department]:
Common Name (eg, YOUR name) [warp.physics.ubc.ca]:mail.physics.ubc.ca
Email Address [sysadmin@physics.ubc.ca]:
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []: <entered passphrase (which showed on screen!) for webmail.csr>
An optional company name []:UBC Physics and Astronomy Department
This created the file mail.csr
Generate our PEM Private key for use with imap/ipop3d:
openssl rsa -outform PEM -in private/server.key -out private/mail.pem
read RSA key
writing RSA key
Generate our PEM Public Key:
cat private/mail.pem certs/mail.crt > certs/imapd.pem
copied imapd.pem to pop3d.pem

02-05-06
- installed RedHat 7.1, need to use a driver boot disk, i.e. boot: linux dd
- partitioned as follows:
 
Mount Point Device Size Type
/boot /dev/sda1 53M ext2
<swap> /dev/sda2 1764M Linux swap
/var /dev/sda6 6.7G ext2
/ /dev/sda7 8.2G ext2
/chroot /dev/sda8 100M ext2
/var/mail /dev/sdb1 101G ext2


02-05-07
- Removed ipchains, was causing a problem with the dns: service ipchains stop, chkconfig --del ipchains, rmmod ipchains
- service iptables start, chkconfig iptables on
- installed giptables (http://www.giptables.org).  Created new /lib/giptables/conf/giptables.conf.dns linked to /etc/giptables

02-05-17
- in file /lib/giptables/modules/DNS, changed function accept_dns_reply () to have -m state --state NEW,ESTABLISHED instead of
  -m state --state ESTABLISHED.  This is to stop the following messages from appearing in the logs:
kernel: EOF: IN= OUT=eth0 SRC=142.103.236.1 DST=142.103.236.11 LEN=73 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=UDP SPT=53 DPT=43704 LEN=53
named[11014]: client 142.103.236.11#43704: error sending response: host unreachable
- also had to add change this line from no to yes to allow tcp as well as udp queries otherwise sendmail can't send to hotmail
# DNS incoming client request
# Interface 0 DNS incoming client request
# Zone Transfer
# also had to add change this line from no to yes to allow tcp as well as udp queries
# otherwise sendmail can't send to hotmail
#    INTERFACE0_DNS_IN_TCP_REQUEST[0]="yes"

DISASTER RECOVERY
  1. Install a new server.
  2. Load RHEL V4  (or newer).
  3. Make sure you select to install the web server and associated modules.
  4. Make sure you select to install the mysql server and associated modules.
  5. Copy over backup files from alpha:/home/backups/www (these files are rsync'd daily).
  6. Make sure mysqld and httpd are started.
  7. Make sure to set a root password for mysqld (admin -u root password newpassword).
  8. Install phpMyAdmin. Create phpMyAdmin dbases: mysql -u root -p < create_tables_mysql_4_1_2+.sql
  9. Install php-mbstring package from redhat network package archive so phpMyAdmin doesn't complain.
  10. Get include files installed into /php/includes.
  11. Check /etc/php.ini configuration file.
  12. Check /etc/http/conf configuration files including certificate files.
    /etc/http/conf/ssl.crt/www.phas.ubc.ca.crt
                   /etc/http/conf/ssl.crt/gd_bundle.crt
                   /etc/http/conf/ssl.key/www.phas.ubc.ca.key
              
  13. Need imap server installed to authenticate secure portal logins.
    • rpm -Uvh libc-client-2002e-8.i386.rpm
    • rpm -Uvh php-imap-4.3.9-3.8.i386.rpm
    • rpm -Uvh postgresql-libs-7.4.8-1.RHEL4.1.i386.rpm
    • rpm -Uvh dovecot-0.99.11-2.EL4.1.i386.rpm (needed for user auth to secure phas site)
    • rpm -Uvh php-gd-4.3.9-3.9.i386.rpm (needed for imagecreate to make email images)
    • rpm -Uvh net-snmp-perl-5.1.2-11.EL4.6.i386.rpm
    • rpm -Uvh perl-Date-Calc-5.3-9.i386.rpm
    • rpm -Uvh perl-Net-DNS-0.48-1.i386.rpm
    • rpm -Uvh perl-Time-HiRes-1.55-3.i386.rpm
    • rpm -Uvh perl-Bit-Vector-6.3-3.i386.rpm
    • rpm -Uvh perl-Digest-HMAC-1.01-13.noarch.rpm
    • rpm -Uvh net-snmp-5.1.2-11.EL4.6.i386.rpm
    • rpm -Uvh perl-Digest-SHA1-2.07-5.i386.rpm
  14. Install MySQL-zrm.
Additional, non-critical items to take care of:
  1. Install APCUPSD
  2. Check webalizer installation (web stats).

old stuff...

02-01-29 BIOS SETUP
MAIN
    Hard disk predelay: disabled
        Primary Master: CD-ROM
            Type: Auto
            Multi-Sector transfers: Dis
            LBA Mode Control: Dis
            32 bit I/O: Dis
            Transfer Mode: FPIO 4 / DMA 2
            Ultra DMA mode: Dis
        Primary Slave: none
        Processor
            Processor speed: 933 MHz
            Processor 1 type: 686
            Cache RAM: 256 KB
            Processor 2 type: 686
            Cache RAM: 256 KB
            Processor #1 status: normal
            Processor #2 status: normal
            Clear processor errors: [Enter]
            Processor error pause: Ena
            Processor Serial number: Dis
ADVANCED
    Memory reconfiguration
        System memory: 640 KB
        Extended memory: 1047552 KB
        DIMM group #1 Status: normal
        DIMM group #2 Status: normal
        DIMM group #3 Status: normal
        DIMM group #4 Status: normal
        Clears DIMM errors: [Enter]
        DIMM error pause: Ena
    Peripheral Configuration
        Serial Port 1: 3F8, IRQ4
        Serial Port 2: 2F8, IRQ3
        Parallel Port: 378, IRQ7
            Parallel Port Mode: ECP,DMA3
        Diskette controller: Ena
        Mouse: Auto  detect
        SCSI Controller: Dis
        LAN Controller: Ena
        VGA Controller: Ena
        USB Controller: Dis
    PCI Device
        PCI IRQ 1: Auto Select
        ...PCI IRQ 14: Auto Select
    Option ROM
        On board SCSI: Ena
        On board LAN: Ena
        PCI Slot1: Ena ...
        PCI Slot6: Ena
    Numlock
        Numlock: Auto
        Key Click: Dis
        Keyboard auto-repeat rate: 10/sec
        Keyboard auto-repeat delay: 1 sec
    Reset Configuration data: No
    Installed O/S: Other
SECURITY
    Supervisor password is: Clear
    User password is: Clear
    Set supervisor password: [Enter]
    Set user password: [Enter]
    Password on boot: Dis
    Fixed disk boot sector: Normal
    Diskette access: User
    Secure mode: [blank]
    Power switch mask: Unmasked
    Option ROM Menu mask: Unmasked
SYSTEM
    Wake on events
        Wake on LAN: Dis
        Wake on Ring: Disk
    AC-Link: Power on
    Error log initialization: [Enter]
    Console redirection
        Serial port address: Dis
        Baud rate: 19.2K
        Flow control: No flow control
        Console Connection: Direct
    Assert NMI on PERR: Dis
BOOT
    Boot-time Diagnostic screen: Ena
    Boot device priority
        1. ATAPI CD-ROM Drive
        2. Removable devices
        3. Hard Drive
        4. Intel Boot Agent Version 4.0
    Hard Drive
        1. Bootable Add-in Cards
        2. Intel Integrated RAID
        3. Intel Integrated RAID
    Removable Devices
        1. Legacy Floppy Drives

Updated BMC Firmware
    - booted off disk, selected option 1 ()
        - selected "Update Firmware", current revision=01.16; update revision=11.19
            got the message: "Entering any key, DC is turned off.  Please turn DC on, after wait a few seconds" (sic)
            Power got turned off.   Rebooted with BMC disk again and selected to display firmware:
            Firmware revision: 11.19
            Device revision: 0
            SDR version: SDR Version 0.03 (STL2)

02-01-30  UPGRADED FIRMWARE on RAID cards
    Created a boot disk and installed RAID firmware fru6.1.2.6i. Everything seemed to  go OK.

PhoenixBIOS  v4.0  Release 6.0
STL20.86B.0025.P01.0110151150
STL2 BIOS Release 1.11
2 x Intel Pentium III processor  933 MHz
640K system RAM passed
1023M Extended RAM passed
0256K Cache SRAM passed
System BIOS shadowed
Video BIOS shadowed
UMB upper limit segment address: E46C
ATAPI CD-ROM: LG    CD-ROM CRD-8521B-(PM)

PCI     STORAGE RAID Controller BIOS   Version 6.05B
Copyright (C) 1991-2001 by Intel Cop   Nov 7 2001
All rights reserved!
BIOS at 0x000C9800-0x000CEFFF
2 Controllers found, Selftests OK, scanning SCSI Bus...
[PCI 0/7] DPMEM (B) at 0xF9400000-0xF9403FFF, INT A = IRQ 5
[PCI 0/7] SRCU31L - HWL0 - 16 MB SDRAM/ECC 2048 kB Flash Flash-RAM
[PCI 0/7] SN 00F90B2E - Firmware-FW-Version 2.32.02-R00F - Nov 7 2001
[PCI 0/7] SCSI-A ID:6 LUN:0 -- ESG-SHV  SCA HSBP M14
[PCI 0/7] ECDFC support enabled
[PCI 0/7] SCSI-A ID:1 LUN:0 -- SEAGATE ST318405LC  async
[PCI 0/7] SCSI-A ID:4 LUN:0 -- SEAGATE ST318405LC  async
[PCI 2/10] DPMEM (B) at 0xFB400000-0xFB403FFF, INT A = IRQ 11
[PCI 2/10] SRCU31 - HWL0 - 128 MB SDRAM/ECC 2048 kB Flash Flash-RAM
[PCI 2/10] SN 00F9FBE2 - Firmware-FW-Version 2.32.02-R00F - Nov 7 2001
[PCI 2/10] SCSI-A ID:6 LUN:0 -- ESG-SHV  SCA HSBP M14
[PCI 2/10] ECC support enabled
[PCI 2/10] SCSI-A ID:0 LUN:0 -- SEAGATE ST336705LC  async
[PCI 2/10] SCSI-A ID:3 LUN:0 -- SEAGATE ST336705LC  async

Press control-G to  enter Intel Storage Console


For more assistance contact Ron Parachoniak, rap@physics.ubc.ca ( Sysadmin )
 
webmaster@physics.ubc.ca [Dept. Home Page] last updated: 24 Jun 2003