Migration from DHIS2 version 2.31 to 2.32 face erro

@LCaynar,

I found some errors and here are some possible solutions I found from community posts:

  1. The system cannot find the path specified.
    It might help to increase the java heap space to (-Xms4096m -Xmx4096m).
    change to java.exe -Xms4096M -Xmx4096M¡± (source)

  2. deployWAR Error
    Please check the dhis.conf file and see if the connection.url is correct (then probably restart)

  3. Could not drop view: _view_test3
    Did you drop all the materialized SQL views before migration (as mentioned in the docs)? For some reasons this _view_test3 table is causing errors so you might need to drop it manually.
    drop table _view_test3 cascade

I hope that these will solve the issue; however, if the issue is not solved, please include Java version, Java heap size, Tomcat version, Postgresql version, and the OS you are using. Also include what the connection.url is in your dhis.conf file.

I hope this helps!

Thanks!