| | 65 | === Heather's slightly modded method for making new loaders=== |
| | 66 | |
| | 67 | on each machine, we do these: |
| | 68 | |
| | 69 | * setting up a new machine |
| | 70 | * add the dvo user account to mysql: |
| | 71 | * grant all on *.* to dvo@"localhost" identified by 'dvo'; |
| | 72 | * grant all on *.* to dvo@"%.ifa.hawaii.edu" identified by 'dvo'; |
| | 73 | |
| | 74 | if that has been done, we need to drop and setup the new ipptopsps_scratch database. It can be done like this (on each machine): |
| | 75 | |
| | 76 | {{{ |
| | 77 | mysql -h localhost -u dvo -pdvo -e "drop database ipptopsps_scratch" |
| | 78 | mysql -h localhost -u dvo -pdvo -e "create database ipptopsps_scratch" |
| | 79 | ippjython setupScratchDb.py |
| | 80 | }}} |
| | 81 | |
| | 82 | * add entries in ippToPsps/config/settings.xml |
| | 83 | |
| | 84 | ------------------ |