Hi Tim,
Thanks for responding. The issue was indeed due to the filesystem permissions. I missed the step to provide tomcat access to the DSpace folder. Running these two commands fixed it for me.
1. Provide tomcat permissions to space directory:
sudo chown -R tomcat:tomcat /dspace/
2. Provide ReadWrite path to DSpace in tomcat configuration:
sudo nano/lib/systemd/system/tomcat9.service
Add the following line under #Security at the last line:
ReadWritePaths=/dspace
Make sure to restart tomcat after this.
Thanks!