Install Tomcat9
sudo apt-get install tomcat9 -y
Add tomcat user to dspace user group
sudo adduser tomcat dspace
sudo adduser dspace tomcat
Add "ReadWritePaths=[dspace]" to the tomcat service file under the service section. For ubuntu, you can find at /lib/systemd/system/tomcat9.service. Then, please execute the following commands:
systemctl daemon-reload
service tomcat9 restart
For UTF-8 encoding, edit server.xml:
<Connector port="8080" protocol="HTTP/1.1"
minSpareThreads="25"
enableLookups="false"
redirectPort="8443"
connectionTimeout="20000"
disableUploadTimeout="true"
URIEncoding="UTF-8"/>
Edit server.xml and change the AJP connector port:
<Connector port="8009" UIEncoding="UTF-8" tomcatAuthentication="false"
enableLookups="false" redirectPort="8080" protocol="AJP/1.3" secretRequired="false" />
--
All messages to this mailing list should adhere to the Code of Conduct: https://www.lyrasis.org/about/Pages/Code-of-Conduct.aspx
---
You received this message because you are subscribed to the Google Groups "DSpace Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dspace-communi...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/dspace-community/729f9c48-65bb-4f59-8661-b949b570120cn%40googlegroups.com.