Re: [dspace-tech] Troubleshooting failed yearly Solr statistics sharding

2020-02-26 Thread Alan Orth
Dear Mark, After having exported a slice of my 2019 statistics from production I've just done two experiments in my development environment: manually create a `statistics-2019` core and load the 2019 hits into it, and load data into the main `statistics` core and initiate the `dspace stats-util

Re: [dspace-tech] DSpace deletion

2020-02-26 Thread Paul Münch
Hello, remove all DSpace components from your system: - DSpace directories - Tomcat server - Postgresql server That's all. Kind regards, Paul Münch Am 14.02.20 um 13:39 schrieb Maiia Zbitnieva: > Good day! > Help me please. I installed DSpace 6.x on ubuntu 18. How to delete > DSpace 6.x

Re: [dspace-tech] Difficulty setting up dspace 6.3

2020-02-26 Thread Mark H. Wood
On Wed, Feb 26, 2020 at 05:12:49PM +0530, Ashim Kapoor wrote: [snip] > Also in BOTH cases I get this warning :- > > $ mvn package > [INFO] Scanning for projects... > [WARNING] The project org.dspace:dspace-parent:pom:6.3 uses prerequisites > which is only intended for maven-plugin projects but

Re: [dspace-tech] Permissions of the [dspace] directory

2020-02-26 Thread Mark H. Wood
On Wed, Feb 26, 2020 at 10:30:57AM +0530, Ashim Kapoor wrote: > I am reading this > > > At one place it says : > # Change [dspace] and all subfolders to be owned by "tomcat" > chown -R tomcat:tomcat [dspace] > > At another place it

Re: [dspace-tech] new table in 6.3

2020-02-26 Thread Mark H. Wood
On Tue, Feb 25, 2020 at 02:22:01PM -0500, Jose Blanco wrote: > I just tried: > >Query q = getHibernateSession(context).createSQLQuery("SELECT * FROM > EPerson WHERE uuid in (SELECT proxy_id from proxies where depositor_id = '" > + depositor_id.toString() + "')"); > >

Re: [dspace-tech] JAVA_OPTS

2020-02-26 Thread Paul Münch
Hello, if you don't define $JAVA_OPTS it's set in the start script (https://github.com/DSpace/DSpace/blob/master/dspace/bin/dspace#L36-L40). Kind regards, Paul Münch Am 14.02.20 um 18:59 schrieb Maiia Zbitnieva (Майя Збитнева): > I use Java 8 as indicated in DSpace installation instruction. An

Re: [dspace-tech] Difficulty setting up dspace 6.3

2020-02-26 Thread Sean Carte
I don't know about your maven-enforcer-plugin error, but the first error is a permissions problem. As root: chown -R dspace:dspace /home/dspace/dspace-6.3-release/ On Wed, 26 Feb 2020 at 13:43, Ashim Kapoor wrote: > Dear All, > > I am following instructions on this page:- > >

Re: [dspace-tech] Maximum number of DB connections in pool

2020-02-26 Thread Alan Orth
Dear Paolo, I should also add the some of the benefits of managing the pool outside of Tomcat is that they can be shared across web applications (rather than having one per web application context), you can do connection re-use, connection validation, etc. Regards, On Wed, Feb 26, 2020 at 2:58

Re: [dspace-tech] Maximum number of DB connections in pool

2020-02-26 Thread Alan Orth
Dear Paolo, We had similar problems that were completely resolved by switching to a pool managed in Tomcat via JNDI, rather than via DSpace itself. We are using PostgreSQL, but the idea would be the same for Oracle. See my detailed dspace-tech mailing list post in December, 2017¹. Also, see the

[dspace-tech] Difficulty setting up dspace 6.3

2020-02-26 Thread Ashim Kapoor
Dear All, I am following instructions on this page:- https://wiki.lyrasis.org/display/DSDOC6x/Installing+DSpace When I do mvn package as root I don't get the following error. However when I do mvn package as unix user dspace I get the following error:- [INFO] Reactor Summary for DSpace