Data Collection System Troubleshooting
Experiment Storage Folders Inaccessible
The experiments are stored in /data/cat on the CAT server, and /data/tom on the TOM server, both of which should be accessible through NFS protocol on the TOM and CAT server computers as well as Lion, Tiger, Leopard, and Cheetah iMacs. If the experiment storage folders /data/cat and /data/tom are inaccessible, there are 2 main causes:
- RAID0 memory is not mounted on
/data/caton CAT computer, and/data/tomon TOM computer. - NFS mount has not been established between the computers and the iMacs.
Mounting RAID0 Drives
CAT computer has multiple hard drives installed: one hard drive for hosting the Ubuntu operating system, and the other two hard drives are combined using RAID0 protocol. The RAID0 memory location is /dev/md0 and needs to be mounted to /data/cat. To do so, run the command in the terminal of CAT computer (might need mountfollowing /dev/md0 /data/catsudo to have permission for mounting).:
mount /dev/md0 /data/cat
In the situation where the /data/cat mount is stale, unmount it with
umount /data/cat
and then re-mount /dev/md0 to it using the mount command above.
Similarly for TOM computer, the commands are the same, simply replace cat with tom in all the commands above.