| | 25 | |
| | 26 | == Troubleshooting after Upgrade == |
| | 27 | |
| | 28 | While downloading data (see IppDownloadData), if you get an error in the pantasks console like: |
| | 29 | |
| | 30 | {{{ |
| | 31 | -> pxCheckImportVersion (pxtools.c:278): unknown psLib error |
| | 32 | input file schema_version: 1.1.57 does not match data base: 1.1.56 |
| | 33 | -> importrunMode (stacktool.c:1395): unknown psLib error |
| | 34 | pxCheckImportVersion failed |
| | 35 | }}} |
| | 36 | |
| | 37 | then you need to adjust the `schema_version` stored in the database. In the following example, I'm assuming the database is `PS1data` owned by the mysql user `ipp` and we need to update to version 1.1.57. |
| | 38 | * `mysql --user ipp --password` |
| | 39 | * <enter password> |
| | 40 | * `show databases;` |
| | 41 | * `use PS1data;` |
| | 42 | * `update dbversion set schema_version='1.1.57', updated=CURRENT_TIMESTAMP(); |
| | 43 | * quit; |