Re: [Dspace-tech] handle server

2015-05-27 Thread Andrea Schweer
Hi,

On 27 May 2015 at 19:20, Sean Carte sean.ca...@gmail.com wrote:


 On 26 May 2015 at 23:44, Andrea Schweer schw...@waikato.ac.nz wrote:

 I use
 sudo jps -l
 (jps is like ps but just for JVM processes; the -l option tells it to
 output the full class name incl package)

 On one of my production DSpace servers, that currently says:
 13042 sun.tools.jps.Jps
 1768 org.apache.catalina.startup.Bootstrap
 1978 net.handle.server.Main

 So the first one is jps itself, the second one is tomcat and the third
 one is the handle service. A few greps less ;)


 Thanks, Andrea, unfortunately my servers produce output like this:

 ~# jps -lv
 1867 -- process information unavailable
 6514 sun.tools.jps.Jps
 -Dapplication.home=/usr/lib/jvm/java-7-openjdk-amd64 -Xms8m
 1636 -- process information unavailable

 I'm guessing that's because I'm using the OpenJDK?


No, my guess it that you aren't running jps as root. It only shows
information for the processes owned by the current user.


 Anyway,

 ps -ef | grep java | grep handle | grep -v 'grep'

 gets me the PID I need, so I'll just continue grepping excessively!


Sure thing, I just thought I'd mention the jps method in case it's useful
for someone!

cheers,
Andrea

-- 
Dr Andrea Schweer
IRR Technical Specialist, ITS Information Systems
The University of Waikato, Hamilton, New Zealand
--
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] handle server

2015-05-27 Thread Sean Carte
On 27 May 2015 at 22:15, Andrea Schweer schw...@waikato.ac.nz wrote:

 Thanks, Andrea, unfortunately my servers produce output like this:

 ~# jps -lv
 1867 -- process information unavailable
 6514 sun.tools.jps.Jps
 -Dapplication.home=/usr/lib/jvm/java-7-openjdk-amd64 -Xms8m
 1636 -- process information unavailable

 I'm guessing that's because I'm using the OpenJDK?


 No, my guess it that you aren't running jps as root. It only shows
 information for the processes owned by the current user.


Actually, it's because I *was* running jps as root. It works if I run it as
tomcat7:

root@ir:~# su - tomcat7
tomcat7@ir:~$ jps
1867 Main
16916 Jps
11270 Bootstrap

Thanks, Andrea.

Sean
--
--
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] handle server

2015-05-27 Thread Sean Carte
On 26 May 2015 at 23:44, Andrea Schweer schw...@waikato.ac.nz wrote:

 I use
 sudo jps -l
 (jps is like ps but just for JVM processes; the -l option tells it to
 output the full class name incl package)

 On one of my production DSpace servers, that currently says:
 13042 sun.tools.jps.Jps
 1768 org.apache.catalina.startup.Bootstrap
 1978 net.handle.server.Main

 So the first one is jps itself, the second one is tomcat and the third one
 is the handle service. A few greps less ;)


Thanks, Andrea, unfortunately my servers produce output like this:

~# jps -lv
1867 -- process information unavailable
6514 sun.tools.jps.Jps -Dapplication.home=/usr/lib/jvm/java-7-openjdk-amd64
-Xms8m
1636 -- process information unavailable

I'm guessing that's because I'm using the OpenJDK?

Anyway,

ps -ef | grep java | grep handle | grep -v 'grep'

gets me the PID I need, so I'll just continue grepping excessively!

Sean
--
--
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] handle server

2015-05-26 Thread Hilton Gibson
Hi Sean

Perhaps this will help:
http://wiki.lib.sun.ac.za/index.php/SUNScholar/Handle_Server

The handle server is always problematic after an upgrade.

Cheers

hg

*Hilton Gibson*
Ubuntu Linux Systems Administrator
Stellenbosch University Library
http://staff.lib.sun.ac.za/~hgibson/docs/cv/cv.html


On 26 May 2015 at 16:16, Sean Carte sean.ca...@gmail.com wrote:

 I've just notice that my handle server does not appear to be running:

 ~# ps -ef | grep java | grep log4j-handle | grep -v 'grep'
 ~#

 When I try to start it, I don't see any errors in the dspace log, or on
 the command line:

 ~# su - tomcat7 -c /dspace/bin/start-handle-server
 ~#

 tomcat7 is the correct user, and the file ownership and permissions look
 right to me.

 Does anybody have any ideas as to what I've overlooked?

 DSpace 5.1
 OpenJDK 1.7
 Tomcat 7
 PostgreSQL 9.3

 Sean
 --



 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] handle server

2015-05-26 Thread Andrea Schweer

  
  
Hi,

On 27/05/15 02:53, Sean Carte wrote:


  

  On 26 May 2015 at 16:20, Hilton
Gibson hilton.gib...@gmail.com
wrote:

  
  
  Perhaps
this will help: http://wiki.lib.sun.ac.za/index.php/SUNScholar/Handle_Server
  
  
  The
handle server is always problematic after an upgrade.

  
  

Thanks, Hilton; lots of great
  information there.
  

So it seems that this is not a good
  indicator of whether handled is running:


  ps -ef | grep java | grep log4j-handle | grep -v 'grep'

  


I use
sudo jps -l
(jps is like ps but just for JVM processes; the -l option tells it
to output the full class name incl package)

On one of my production DSpace servers, that currently says:
13042 sun.tools.jps.Jps
1768 org.apache.catalina.startup.Bootstrap
1978 net.handle.server.Main

So the first one is jps itself, the second one is tomcat and the
third one is the handle service. A few greps less ;)

cheers,
Andrea
-- 
Dr Andrea Schweer
IRR Technical Specialist, ITS Information Systems
The University of Waikato, Hamilton, New Zealand
  


--
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] handle server

2015-05-26 Thread Sean Carte
On 26 May 2015 at 16:20, Hilton Gibson hilton.gib...@gmail.com wrote:


 Perhaps this will help:
 http://wiki.lib.sun.ac.za/index.php/SUNScholar/Handle_Server

 The handle server is always problematic after an upgrade.


Thanks, Hilton; lots of great information there.

So it seems that this is not a good indicator of whether handled is running:

ps -ef | grep java | grep log4j-handle | grep -v 'grep'

The methods you suggest all return a positive result:
# netstat -tlnp | grep 8000
tcp6   0  0 10.0.36.11:8000 :::*
LISTEN  1867/java
# netstat -tlnp | grep 2641
tcp6   0  0 10.0.36.11:2641 :::*
LISTEN  1867/java
# ps -ef | grep handle
tomcat7   1867 1  2 16:46 ?00:00:00 java -Xmx256m -classpath
:/dspace/lib/JUnitParams-1.0.2.jar:/dspace/lib/activation-1.1.jar:/dspace
... :/dspace/lib/handle-6.2.jar ...

Sean
--
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Handle server limit (99999 items?)

2015-05-07 Thread Hilton Gibson
Hi Alan

Check: https://www.repository.cam.ac.uk/browse?type=title
They are up to 195598 so far, so 99 seems to be the limit.
One million is not bad?

How is Kenya?

Cheers

hg


*Hilton Gibson*
Ubuntu Linux Systems Administrator
Stellenbosch University Library
http://staff.lib.sun.ac.za/~hgibson/docs/cv/cv.html


On 7 May 2015 at 09:15, Alan Orth alan.o...@gmail.com wrote:

 Hi,

 I'm wondering what happens when the handle server reaches item number
 9? Our handle server is currently at 65000 or so, so this could be a
 problem for us in the next year or less.

 Thanks,

 --
 Alan Orth
 alan.o...@gmail.com
 https://alaninkenya.org
 https://mjanja.ch
 In heaven all the interesting people are missing. -Friedrich Nietzsche
 GPG public key ID: 0x8cb0d0acb5cd81ec209c6cdfbd1a0e09c2f836c0


 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Handle server limit (99999 items?)

2015-05-07 Thread Alan Orth
Thanks for pointing out the Cambridge example, Hilton! So they passed the
event horizon (and lived to tell the tale) before we had to. *phew*

Kenya's great. The GNU/Linux community[0] is getting stronger by the day! :P

Regards,

[0] https://nairobilug.or.ke/

On Thu, May 7, 2015 at 10:27 AM, Hilton Gibson hilton.gib...@gmail.com
wrote:

 Hi Alan

 Check: https://www.repository.cam.ac.uk/browse?type=title
 They are up to 195598 so far, so 99 seems to be the limit.
 One million is not bad?

 How is Kenya?

 Cheers

 hg


 *Hilton Gibson*
 Ubuntu Linux Systems Administrator
 Stellenbosch University Library
 http://staff.lib.sun.ac.za/~hgibson/docs/cv/cv.html


 On 7 May 2015 at 09:15, Alan Orth alan.o...@gmail.com wrote:

 Hi,

 I'm wondering what happens when the handle server reaches item number
 9? Our handle server is currently at 65000 or so, so this could be a
 problem for us in the next year or less.

 Thanks,

 --
 Alan Orth
 alan.o...@gmail.com
 https://alaninkenya.org
 https://mjanja.ch
 In heaven all the interesting people are missing. -Friedrich Nietzsche
 GPG public key ID: 0x8cb0d0acb5cd81ec209c6cdfbd1a0e09c2f836c0


 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette





-- 
Alan Orth
alan.o...@gmail.com
https://alaninkenya.org
https://mjanja.ch
In heaven all the interesting people are missing. -Friedrich Nietzsche
GPG public key ID: 0x8cb0d0acb5cd81ec209c6cdfbd1a0e09c2f836c0
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Handle server limit (99999 items?)

2015-05-07 Thread Mark H. Wood
I think 2147483647 or 9223372036854775807 is much more likely as the
limit.

-- 
Mark H. Wood
Lead Technology Analyst

University Library
Indiana University - Purdue University Indianapolis
755 W. Michigan Street
Indianapolis, IN 46202
317-274-0749
www.ulib.iupui.edu


signature.asc
Description: Digital signature
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Handle server limit (99999 items?)

2015-05-07 Thread Mark H. Wood
On Thu, May 07, 2015 at 08:35:22AM -0400, Mark H. Wood wrote:
 I think 2147483647 or 9223372036854775807 is much more likely as the
 limit.

The suffix is generated by a DBMS SEQUENCE object.  In PostgreSQL,
handle_seq.max_value is the latter of the above.  (2**63 - 1: the
limit of an SQL BIGINT, or java.lang.Long.MAX_VALUE.)

However, HandleManager.createHandle(Context, DSpaceObject) uses
TableRow.getIntColumn to retrieve it, and this will throw
IllegalArgumentException when the value exceeds the former of the
above (2**31 - 1: java.lang.Integer.MAX_VALUE).

We should fix that.

-- 
Mark H. Wood
Lead Technology Analyst

University Library
Indiana University - Purdue University Indianapolis
755 W. Michigan Street
Indianapolis, IN 46202
317-274-0749
www.ulib.iupui.edu


signature.asc
Description: Digital signature
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Handle server limit (99999 items?)

2015-05-07 Thread Hilton Gibson
On 7 May 2015 at 15:31, Mark H. Wood mw...@iupui.edu wrote:

 We should fix that.


​Agreed +1​


*Hilton Gibson*
Ubuntu Linux Systems Administrator
Stellenbosch University Library
http://staff.lib.sun.ac.za/~hgibson/docs/cv/cv.html
--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Handle server limit (99999 items?)

2015-05-07 Thread Peter Dietz
I thought handle (hdl.handle.net) itself was capable of string. So. If
DSpace were to mint a handle like 123456789/12345-theory-of-relativity,
that that would resolve? Even though DSpace is db integer incrementing
handles, its not limited to numeric. We could mint uuid/guid, or at time of
creation, allow the user to customize the handle? 123456789/dietz-thesis

Also, another potential limitation of DSpace's handle is if you had
multiple prefixes. An odd case, but suppose you wanted to have different
handle prefixes: 1234.thesis, 1234.publication, and 1234.media. DSpace
would auto-integer-increment the suffix. So it wouldn't produce
1234.thesis/1, 1234.publication/1, 1234.media/1, but instead 1234.thesis/1,
1234.publication/2, 1234.media/3. Again odd case, so likely no one will
ever run into it.


Peter Dietz
Longsight
www.longsight.com
pe...@longsight.com
p: 740-599-5005 x809

On Thu, May 7, 2015 at 9:52 AM, Hilton Gibson hilton.gib...@gmail.com
wrote:


 On 7 May 2015 at 15:31, Mark H. Wood mw...@iupui.edu wrote:

 We should fix that.


 ​Agreed +1​


 *Hilton Gibson*
 Ubuntu Linux Systems Administrator
 Stellenbosch University Library
 http://staff.lib.sun.ac.za/~hgibson/docs/cv/cv.html



 --
 One dashboard for servers and applications across Physical-Virtual-Cloud
 Widest out-of-the-box monitoring support with 50+ applications
 Performance metrics, stats and reports that give you Actionable Insights
 Deep dive visibility with transaction tracing using APM Insight.
 http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
One dashboard for servers and applications across Physical-Virtual-Cloud 
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Handle server configuración

2014-03-10 Thread Hilton Gibson
Hi Regars

This is what I have:
http://wiki.lib.sun.ac.za/index.php/SUNScholar/Handle_Server
Hope it helps.

Cheers



*Hilton Gibson*
Ubuntu Linux Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100 | Cell: +27 84 646 4758
http://scholar.sun.ac.za
http://bit.ly/goodir
http://library.sun.ac.za
http://za.linkedin.com/in/hiltongibson


On 10 March 2014 14:50, Dspace P dspa...@gmail.com wrote:

 Good Morning.
 I have in my test dspace 3.2 , that is not conected to internet, several
 items with handles diferents. I sent some items that have the handle I can
 see in dspace.cfg (for example 123456). I imported some items from other
 dspace. His dspace has other handle (for example 123456.1).
 I would like the handle server of my new dspace 3.2 can resolve items with
 this two handles. In config.dct i write in server_admins:
 server_admins = (
 300:0.NA/123456.1 http://0.NA/10211.3
 300:0.NA/123456.2 http://0.NA/10211.5
 )
 But whe i go to http://myIP:8000 and try to get the url of one of my
 items, handle-server only resolve when i look for a item with the same
 handle i have in dspace.cfg of my dspace 3.2. If i look for a item with a
 handle diferent, handle- server do not resolve. In both case items exist in
 dspace 3.2.
 Any idea?
 Some doc for help ?
 Regars


 --
 Learn Graph Databases - Download FREE O'Reilly Book
 Graph Databases is the definitive new guide to graph databases and their
 applications. Written by three acclaimed leaders in the field,
 this first edition is now available. Download your free book today!
 http://p.sf.net/sfu/13534_NeoTech
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] handle server nuts and bolts

2013-04-25 Thread Ryan Scherle
Here are some notes I created for my personal reference. Perhaps they will be 
useful….

http://wiki.datadryad.org/Handle_Server_Technology

--- Ryan Scherle
--- Data Repository Architect
--- DataDryad.org

On Apr 25, 2013, at 12:54 PM, Will Clarke clark...@wfu.edu wrote:

 I want to understand the nuts and bolts of how the handle server actually 
 works and what it does, how it is used, etc.
 
 I have read over
 
 http://www.handle.net/faq.html
 https://wiki.duraspace.org/display/DSDOC3x/Installation#Installation-TheHandleServer
 Where can I get more information and a better understanding of it?
 
 Thanks
 
 --
 Try New Relic Now  We'll Send You this Cool Shirt
 New Relic is the only SaaS-based application performance monitoring service 
 that delivers powerful full stack analytics. Optimize and monitor your
 browser, app,  servers with just a few lines of code. Try New Relic
 and get this awesome Nerd Life shirt! 
 http://p.sf.net/sfu/newrelic_d2d_apr___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette: 
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Try New Relic Now  We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app,  servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_apr___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Handle server down

2013-03-12 Thread Hilton Gibson
These pages have been updated:
http://wiki.lib.sun.ac.za/index.php/SUNScholar/Firewall and
http://wiki.lib.sun.ac.za/index.php/SUNScholar/Handle_Server#Step_8_-_Firewall_Ports
.


On 12 March 2013 16:19, Lewatle Phaladi lewatle.phal...@wits.ac.za wrote:

  Hi All,

 ** **

 Please note that we solved the handle problem, as you indicated the
 problem was mostly due to firewall blocking the ports, another problem was
 certain process that was using similar ports with handle server, but it has
 been resolved when we killed the process and remained with one process for
 handle server. 

 ** **

 Thanks a lot for giving your thoughts in solving this problem.

 ** **

 Regards,

 Lewatle 

 ** **

 *From:* Lewatle Phaladi [mailto:lewatle.phal...@wits.ac.za]
 *Sent:* 22 February 2013 01:34 PM
 *To:* Hilton Gibson
 *Cc:* DSpace-tech@lists.sourceforge.net
 *Subject:* Re: [Dspace-tech] Handle server down

 ** **

 Thanks, I will do that.

 ** **

 *From:* Hilton Gibson 
 [mailto:hilton.gib...@gmail.comhilton.gib...@gmail.com]

 *Sent:* 22 February 2013 01:33 PM
 *To:* Lewatle Phaladi
 *Cc:* heli...@centrum.sk; DSpace-tech@lists.sourceforge.net
 *Subject:* Re: [Dspace-tech] Handle server down

 ** **

 Ok, Ask the people at handle.net if they can connect to your local handle
 server.

 Also check that UDP is also open on the campus firewall in addition to TCP.
 

 ** **

 ** **

 On 22 February 2013 13:31, Lewatle Phaladi lewatle.phal...@wits.ac.za
 wrote:

 Your absolutely right Hilton, I have checked with them the response is
 that the ports are open on that range, since you mentioned it I will
 forward them the server IP address so they can confirm it for me. I will
 try any possible solution for this issue.

  

 *From:* Hilton Gibson [mailto:hilton.gib...@gmail.com]
 *Sent:* 22 February 2013 12:22 PM
 *To:* Lewatle Phaladi
 *Cc:* heli...@centrum.sk; DSpace-tech@lists.sourceforge.net
 *Subject:* Re: [Dspace-tech] Handle server down

  

 I would check the campus firewall first.

  

 On 22 February 2013 12:10, Lewatle Phaladi lewatle.phal...@wits.ac.za
 wrote:

 Hi Helix,

 Nestat results:
 8000   *.*0  0 49152  0 LISTEN

 Please see attached file for log contents.

 Regards,
 Lewatle


 -Original Message-
 From: helix84 [mailto:heli...@centrum.sk]
 Sent: 22 February 2013 10:51 AM
 To: Lewatle Phaladi
 Cc: DSpace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Handle server down

 Hi Lewatle,

 First thing you should do is look into your [dspace]/log/handle-server.log

 You can check whether the Handle server is running at any time:

 sudo netstat -tulpn | grep 8000

 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

 htmlpfont face = verdana size = 0.8 color = navyThis
 communication is intended for the addressee only. It is confidential. If
 you have received this communication in error, please notify us immediately
 and destroy the original message. You may not copy or disseminate this
 communication without the permission of the University. Only authorized
 signatories are competent to enter into agreements on behalf of the
 University and recipients are thus advised that the content of this message
 may not be legally binding on the University and may contain the personal
 views and opinions of the author, which are not necessarily the views and
 opinions of The University of the Witwatersrand, Johannesburg. All
 agreements between the University and outsiders are subject to South
 African Law unless the University agrees in writing to the
 contrary./font/p/html

 --
 Everyone hates slow websites. So do we.
 Make your web apps faster with AppDynamics
 Download AppDynamics Lite for free today:
 http://p.sf.net/sfu/appdyn_d2d_feb
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette



 

  

 -- 

 *Hilton Gibson*

 Systems Administrator

 JS Gericke Library

 Room 1025D

 Stellenbosch University

 Private Bag X5036

 Stellenbosch

 7599

 South Africa

  

 Tel: +27 21 808 4100 | Cell: +27 84 646 4758

 http://library.sun.ac.za

 http://scholar.sun.ac.za

 http://ar1.sun.ac.za

 http://aj1.sun.ac.za

 This communication is intended for the addressee only. It is confidential.
 If you have received this communication in error, please notify us
 immediately and destroy the original message. You may not copy or
 disseminate this communication without the permission of the University.
 Only authorized signatories are competent to enter into agreements on
 behalf

Re: [Dspace-tech] Handle server down

2013-03-12 Thread Lewatle Phaladi
Hi All,

Please note that we solved the handle problem, as you indicated the problem was 
mostly due to firewall blocking the ports, another problem was certain process 
that was using similar ports with handle server, but it has been resolved when 
we killed the process and remained with one process for handle server.

Thanks a lot for giving your thoughts in solving this problem.

Regards,
Lewatle

From: Lewatle Phaladi [mailto:lewatle.phal...@wits.ac.za]
Sent: 22 February 2013 01:34 PM
To: Hilton Gibson
Cc: DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle server down

Thanks, I will do that.

From: Hilton Gibson [mailto:hilton.gib...@gmail.com]
Sent: 22 February 2013 01:33 PM
To: Lewatle Phaladi
Cc: heli...@centrum.skmailto:heli...@centrum.sk; 
DSpace-tech@lists.sourceforge.netmailto:DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle server down

Ok, Ask the people at handle.nethttp://handle.net if they can connect to your 
local handle server.
Also check that UDP is also open on the campus firewall in addition to TCP.


On 22 February 2013 13:31, Lewatle Phaladi 
lewatle.phal...@wits.ac.zamailto:lewatle.phal...@wits.ac.za wrote:
Your absolutely right Hilton, I have checked with them the response is that the 
ports are open on that range, since you mentioned it I will forward them the 
server IP address so they can confirm it for me. I will try any possible 
solution for this issue.

From: Hilton Gibson 
[mailto:hilton.gib...@gmail.commailto:hilton.gib...@gmail.com]
Sent: 22 February 2013 12:22 PM
To: Lewatle Phaladi
Cc: heli...@centrum.skmailto:heli...@centrum.sk; 
DSpace-tech@lists.sourceforge.netmailto:DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle server down

I would check the campus firewall first.

On 22 February 2013 12:10, Lewatle Phaladi 
lewatle.phal...@wits.ac.zamailto:lewatle.phal...@wits.ac.za wrote:
Hi Helix,

Nestat results:
8000   *.*0  0 49152  0 LISTEN

Please see attached file for log contents.

Regards,
Lewatle


-Original Message-
From: helix84 [mailto:heli...@centrum.skmailto:heli...@centrum.sk]
Sent: 22 February 2013 10:51 AM
To: Lewatle Phaladi
Cc: DSpace-tech@lists.sourceforge.netmailto:DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle server down

Hi Lewatle,

First thing you should do is look into your [dspace]/log/handle-server.log

You can check whether the Handle server is running at any time:

sudo netstat -tulpn | grep 8000

Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette 
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary./font/p/html
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.netmailto:DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette



--
Hilton Gibson
Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100tel:%2B27%2021%20808%204100 | Cell: +27 84 646 
4758tel:%2B27%2084%20646%204758
http://library.sun.ac.za
http://scholar.sun.ac.za
http://ar1.sun.ac.za
http://aj1.sun.ac.za

This communication is intended for the addressee only. It is confidential. If 
you have received this communication in error, please notify us immediately and 
destroy the original message. You may not copy or disseminate this 
communication without the permission of the University. Only authorized 
signatories are competent to enter into agreements on behalf of the University 
and recipients are thus advised that the content of this message may not be 
legally binding on the University and may contain the personal views and 
opinions of the author, which are not necessarily the views and opinions

Re: [Dspace-tech] Handle server down

2013-02-22 Thread helix84
Hi Lewatle,

First thing you should do is look into your [dspace]/log/handle-server.log

You can check whether the Handle server is running at any time:

sudo netstat -tulpn | grep 8000

Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Handle server down

2013-02-22 Thread Lewatle Phaladi
Dear Helix,

Thanks I will really work on it.

Regards,
Lewatle 

-Original Message-
From: helix84 [mailto:heli...@centrum.sk] 
Sent: 22 February 2013 10:51 AM
To: Lewatle Phaladi
Cc: DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle server down

Hi Lewatle,

First thing you should do is look into your [dspace]/log/handle-server.log

You can check whether the Handle server is running at any time:

sudo netstat -tulpn | grep 8000

Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette 
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary./font/p/html
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette


Re: [Dspace-tech] Handle server down

2013-02-22 Thread Lewatle Phaladi
Hi Helix,

Nestat results:
8000   *.*0  0 49152  0 LISTEN 

Please see attached file for log contents.

Regards,
Lewatle 


-Original Message-
From: helix84 [mailto:heli...@centrum.sk] 
Sent: 22 February 2013 10:51 AM
To: Lewatle Phaladi
Cc: DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle server down

Hi Lewatle,

First thing you should do is look into your [dspace]/log/handle-server.log

You can check whether the Handle server is running at any time:

sudo netstat -tulpn | grep 8000

Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette 
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary./font/p/html

handle-server.log
Description: handle-server.log
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Handle server down

2013-02-22 Thread Lewatle Phaladi
Your absolutely right Hilton, I have checked with them the response is that the 
ports are open on that range, since you mentioned it I will forward them the 
server IP address so they can confirm it for me. I will try any possible 
solution for this issue.

From: Hilton Gibson [mailto:hilton.gib...@gmail.com]
Sent: 22 February 2013 12:22 PM
To: Lewatle Phaladi
Cc: heli...@centrum.sk; DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle server down

I would check the campus firewall first.

On 22 February 2013 12:10, Lewatle Phaladi 
lewatle.phal...@wits.ac.zamailto:lewatle.phal...@wits.ac.za wrote:
Hi Helix,

Nestat results:
8000   *.*0  0 49152  0 LISTEN

Please see attached file for log contents.

Regards,
Lewatle


-Original Message-
From: helix84 [mailto:heli...@centrum.skmailto:heli...@centrum.sk]
Sent: 22 February 2013 10:51 AM
To: Lewatle Phaladi
Cc: DSpace-tech@lists.sourceforge.netmailto:DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle server down

Hi Lewatle,

First thing you should do is look into your [dspace]/log/handle-server.log

You can check whether the Handle server is running at any time:

sudo netstat -tulpn | grep 8000

Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette 
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary./font/p/html
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.netmailto:DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette



--
Hilton Gibson
Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100 | Cell: +27 84 646 4758
http://library.sun.ac.za
http://scholar.sun.ac.za
http://ar1.sun.ac.za
http://aj1.sun.ac.za

htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary./font/p/html--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Handle server down

2013-02-22 Thread Hilton Gibson
Ok, Ask the people at handle.net if they can connect to your local handle
server.
Also check that UDP is also open on the campus firewall in addition to TCP.



On 22 February 2013 13:31, Lewatle Phaladi lewatle.phal...@wits.ac.zawrote:

  Your absolutely right Hilton, I have checked with them the response is
 that the ports are open on that range, since you mentioned it I will
 forward them the server IP address so they can confirm it for me. I will
 try any possible solution for this issue.

 ** **

 *From:* Hilton Gibson [mailto:hilton.gib...@gmail.com]
 *Sent:* 22 February 2013 12:22 PM
 *To:* Lewatle Phaladi
 *Cc:* heli...@centrum.sk; DSpace-tech@lists.sourceforge.net
 *Subject:* Re: [Dspace-tech] Handle server down

 ** **

 I would check the campus firewall first.

 ** **

 On 22 February 2013 12:10, Lewatle Phaladi lewatle.phal...@wits.ac.za
 wrote:

 Hi Helix,

 Nestat results:
 8000   *.*0  0 49152  0 LISTEN

 Please see attached file for log contents.

 Regards,
 Lewatle


 -Original Message-
 From: helix84 [mailto:heli...@centrum.sk]
 Sent: 22 February 2013 10:51 AM
 To: Lewatle Phaladi
 Cc: DSpace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Handle server down

 Hi Lewatle,

 First thing you should do is look into your [dspace]/log/handle-server.log

 You can check whether the Handle server is running at any time:

 sudo netstat -tulpn | grep 8000

 Regards,
 ~~helix84

 Compulsory reading: DSpace Mailing List Etiquette
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

 htmlpfont face = verdana size = 0.8 color = navyThis
 communication is intended for the addressee only. It is confidential. If
 you have received this communication in error, please notify us immediately
 and destroy the original message. You may not copy or disseminate this
 communication without the permission of the University. Only authorized
 signatories are competent to enter into agreements on behalf of the
 University and recipients are thus advised that the content of this message
 may not be legally binding on the University and may contain the personal
 views and opinions of the author, which are not necessarily the views and
 opinions of The University of the Witwatersrand, Johannesburg. All
 agreements between the University and outsiders are subject to South
 African Law unless the University agrees in writing to the
 contrary./font/p/html

 --
 Everyone hates slow websites. So do we.
 Make your web apps faster with AppDynamics
 Download AppDynamics Lite for free today:
 http://p.sf.net/sfu/appdyn_d2d_feb
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 List Etiquette:
 https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette



 

 ** **

 -- 

 *Hilton Gibson*

 Systems Administrator

 JS Gericke Library

 Room 1025D

 Stellenbosch University

 Private Bag X5036

 Stellenbosch

 7599

 South Africa

 ** **

 Tel: +27 21 808 4100 | Cell: +27 84 646 4758

 http://library.sun.ac.za

 http://scholar.sun.ac.za

 http://ar1.sun.ac.za

 http://aj1.sun.ac.za

 This communication is intended for the addressee only. It is confidential. If 
 you have received this communication in error, please notify us immediately 
 and destroy the original message. You may not copy or disseminate this 
 communication without the permission of the University. Only authorized 
 signatories are competent to enter into agreements on behalf of the 
 University and recipients are thus advised that the content of this message 
 may not be legally binding on the University and may contain the personal 
 views and opinions of the author, which are not necessarily the views and 
 opinions of The University of the Witwatersrand, Johannesburg. All agreements 
 between the University and outsiders are subject to South African Law unless 
 the University agrees in writing to the contrary.




-- 
*Hilton Gibson*
Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100 | Cell: +27 84 646 4758
http://library.sun.ac.za
http://scholar.sun.ac.za
http://ar1.sun.ac.za
http://aj1.sun.ac.za
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

Re: [Dspace-tech] Handle server down

2013-02-22 Thread Lewatle Phaladi
Thanks, I will do that.

From: Hilton Gibson [mailto:hilton.gib...@gmail.com]
Sent: 22 February 2013 01:33 PM
To: Lewatle Phaladi
Cc: heli...@centrum.sk; DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle server down

Ok, Ask the people at handle.nethttp://handle.net if they can connect to your 
local handle server.
Also check that UDP is also open on the campus firewall in addition to TCP.


On 22 February 2013 13:31, Lewatle Phaladi 
lewatle.phal...@wits.ac.zamailto:lewatle.phal...@wits.ac.za wrote:
Your absolutely right Hilton, I have checked with them the response is that the 
ports are open on that range, since you mentioned it I will forward them the 
server IP address so they can confirm it for me. I will try any possible 
solution for this issue.

From: Hilton Gibson 
[mailto:hilton.gib...@gmail.commailto:hilton.gib...@gmail.com]
Sent: 22 February 2013 12:22 PM
To: Lewatle Phaladi
Cc: heli...@centrum.skmailto:heli...@centrum.sk; 
DSpace-tech@lists.sourceforge.netmailto:DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle server down

I would check the campus firewall first.

On 22 February 2013 12:10, Lewatle Phaladi 
lewatle.phal...@wits.ac.zamailto:lewatle.phal...@wits.ac.za wrote:
Hi Helix,

Nestat results:
8000   *.*0  0 49152  0 LISTEN

Please see attached file for log contents.

Regards,
Lewatle


-Original Message-
From: helix84 [mailto:heli...@centrum.skmailto:heli...@centrum.sk]
Sent: 22 February 2013 10:51 AM
To: Lewatle Phaladi
Cc: DSpace-tech@lists.sourceforge.netmailto:DSpace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle server down

Hi Lewatle,

First thing you should do is look into your [dspace]/log/handle-server.log

You can check whether the Handle server is running at any time:

sudo netstat -tulpn | grep 8000

Regards,
~~helix84

Compulsory reading: DSpace Mailing List Etiquette 
https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette

htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary./font/p/html
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.netmailto:DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
List Etiquette: https://wiki.duraspace.org/display/DSPACE/Mailing+List+Etiquette



--
Hilton Gibson
Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100tel:%2B27%2021%20808%204100 | Cell: +27 84 646 
4758tel:%2B27%2084%20646%204758
http://library.sun.ac.za
http://scholar.sun.ac.za
http://ar1.sun.ac.za
http://aj1.sun.ac.za

This communication is intended for the addressee only. It is confidential. If 
you have received this communication in error, please notify us immediately and 
destroy the original message. You may not copy or disseminate this 
communication without the permission of the University. Only authorized 
signatories are competent to enter into agreements on behalf of the University 
and recipients are thus advised that the content of this message may not be 
legally binding on the University and may contain the personal views and 
opinions of the author, which are not necessarily the views and opinions of The 
University of the Witwatersrand, Johannesburg. All agreements between the 
University and outsiders are subject to South African Law unless the University 
agrees in writing to the contrary.




--
Hilton Gibson
Systems Administrator
JS Gericke Library
Room 1025D
Stellenbosch University
Private Bag X5036
Stellenbosch
7599
South Africa

Tel: +27 21 808 4100 | Cell: +27 84 646 4758
http://library.sun.ac.za
http://scholar.sun.ac.za
http://ar1.sun.ac.za
http://aj1.sun.ac.za

htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please

Re: [Dspace-tech] handle server points to the wrong thing

2012-11-01 Thread helix84
Resending to dspace-tech (was sent to dspace-tech-request) just to
archive that this solved the problem.

Regards,
~~helix84


On Thu, Nov 1, 2012 at 5:23 PM, Berry, Irene (CIV) icbe...@nps.edu wrote:
 Bingo!  Our documentation had it backwards.  We're all better now.
 Thank you for being there, everyone.
 With good thoughts --
 Irene Berry,
 DKL/NPS

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] handle server points to the wrong thing

2012-11-01 Thread Berry, Irene (CIV)
Bingo!  Our documentation had it backwards.  We're all better now and pointing 
back to the XMLUI, as intended.
Thank you for being there, everyone.
With good thoughts --
Irene Berry,
DKL/NPS

Date: Thu, 1 Nov 2012 01:31:48 +0100
From: helix84 heli...@centrum.skmailto:heli...@centrum.sk
Subject: Re: [Dspace-tech] handle server points to the wrong thing
To: Berry, Irene (CIV) icbe...@nps.edumailto:icbe...@nps.edu
Cc: 
dspace-tech@lists.sourceforge.netmailto:dspace-tech@lists.sourceforge.net
dspace-tech@lists.sourceforge.netmailto:dspace-tech@lists.sourceforge.net
Message-ID:
cagdvkqhduy1pdrn8wa7xo6ux+y+x005h78oscudq6s45pvn...@mail.gmail.commailto:cagdvkqhduy1pdrn8wa7xo6ux+y+x005h78oscudq6s45pvn...@mail.gmail.com
Content-Type: text/plain; charset=UTF-8

Hi Irene,

what's the value of your dspace.url in dspace.cfg? It should point to XMLUI.

Regards,
~~helix84
--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] handle server points to the wrong thing

2012-10-31 Thread helix84
Hi Irene,

what's the value of your dspace.url in dspace.cfg? It should point to XMLUI.

Regards,
~~helix84

--
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server Error

2012-09-26 Thread Lewatle Phaladi
Hi João

Thanks for reply, we will try to initialise it.

Regards.
Lewatle

From: João Melo [mailto:jm...@lyncode.com]
Sent: 26 September 2012 12:59 PM
To: Lewatle Phaladi
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle Server Error

Hi Lewatle,

seems like the encrypted file become corrupt.
How did you initialized the handle server? With make-handle-config? Seems like 
you haven't used it.
Try to re-initialize your Handle Server, maybe something went wrong.

On 26 September 2012 09:46, Lewatle Phaladi 
lewatle.phal...@wits.ac.zamailto:lewatle.phal...@wits.ac.za wrote:
Dear All

we are setting up handle server for other instance of dspace and we have got 
the following error form our error log file :

2012/09/14 03:19:10 SAST 25 Started new run.
javax.crypto.BadPaddingException: Given final block not properly padded
at com.sun.crypto.provider.SunJCE_f.b(DashoA13*..)
at com.sun.crypto.provider.SunJCE_f.b(DashoA13*..)
at com.sun.crypto.provider.DESCipher.engineDoFinal(DashoA13*..)
at javax.crypto.Cipher.doFinal(DashoA13*..)
at 
net.handle.security.provider.GenericProvider.decrypt_DES_ECB_PKCS5(GenericProvider.java:146)
at net.handle.hdllib.Util.decrypt(Util.java:1078)
at net.handle.server.HandleServer.init(HandleServer.java:306)
at net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
at net.handle.server.Main.initialize(Main.java:152)
at net.handle.server.Main.main(Main.java:75)
Unable to initialize server signature object: java.lang.Exception: Incorrect 
passphrase
java.lang.Exception: Incorrect passphrase
at net.handle.hdllib.Util.decrypt(Util.java:1083)
at net.handle.server.HandleServer.init(HandleServer.java:306)
at net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
at net.handle.server.Main.initialize(Main.java:152)
at net.handle.server.Main.main(Main.java:75)
java.lang.Exception: Incorrect passphrase
at net.handle.hdllib.Util.decrypt(Util.java:1083)
at net.handle.server.HandleServer.init(HandleServer.java:306)
at net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
at net.handle.server.Main.initialize(Main.java:152)
at net.handle.server.Main.main(Main.java:75)
Shutting down...

could anyone who have idea on how to get rid of the error assist.

Regards,
Lewatle

This communication is intended for the addressee only. It is confidential. If 
you have received this communication in error, please notify us immediately and 
destroy the original message. You may not copy or disseminate this 
communication without the permission of the University. Only authorized 
signatories are competent to enter into agreements on behalf of the University 
and recipients are thus advised that the content of this message may not be 
legally binding on the University and may contain the personal views and 
opinions of the author, which are not necessarily the views and opinions of The 
University of the Witwatersrand, Johannesburg. All agreements between the 
University and outsiders are subject to South African Law unless the University 
agrees in writing to the contrary.


--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can respond. Discussions
will include endpoint security, mobile security and the latest in malware
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.netmailto:DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech



--
[http://www.lyncode.com/images/lyncode/N.png]

Thanks, João Melo (My Portfoliohttp://www.lyncode.com/m/jmelo/)
DSpace Department
Lyncode: Official 
websitehttp://www.google.com/url?q=http%3A%2F%2Fwww.lyncode.com%2Fsa=Dsntz=1usg=AFrqEzdV8iS6rMxflxnn138XReuRfUG3OQ

[Follow us on 
Facebook]http://www.google.com/url?q=http%3A%2F%2Ftwitter.com%2Flyncodesa=Dsntz=1usg=AFrqEzeDuT3ZqMW5uVIA8AoxtTtAeiCX3Q
[https://sites.google.com/a/lyncode.com/test/_/rsrc/1344939368466/home/facebook.png?width=48px]http://www.google.com/url?q=http%3A%2F%2Fwww.facebook.com%2Flyncodesa=Dsntz=1usg=AFrqEzcWXjHa3gKBGLsNVxktapxkiWDnww



htmlpfont face = verdana size = 0.8 color = navyThis communication 
is intended for the addressee only. It is confidential. If you have received 
this communication in error, please notify us immediately and destroy the 
original message. You may not copy or disseminate this communication without 
the permission of the University. Only authorized signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding

Re: [Dspace-tech] handle server init script anybody?

2012-05-09 Thread Mark H. Wood
On Tue, May 08, 2012 at 11:13:55PM +0200, Christian Völker wrote:
[Handle server is not very friendly toward system startup procedures]
 Now, my question is, am I the only one who is looking for something like 
 this? Am I the only one who thinks it is a weird thing to invent it myself 
 because there are probably so many more out there who had to solve the same 
 issue before? What is your solution, everybody?

You are certainly not the only one who needs to have the Handle server
start at system startup, or the only one who thinks it weird that
something like the Handle server is so hard to put on a production
footing.  It should implement the Commons Daemon interface so we can
start and stop it sensibly.  I keep saying I want to add that -- maybe
this time I'll get it done!

I, too, rolled my own initscript for the Handle server.  Unfortunately
for you we run DSpace on Gentoo Linux and our script probably won't
work on Debian (or Red Hat).  But there is a wiki page:

  
https://wiki.duraspace.org/display/DSPACE/Handle+Service+Startup+Scripts+for+Unix+or+Linux

and it seems you may be in luck after all, because the only script
contributed so far is for Ubuntu, a Debian derivative.  I will see
about contributing our Gentoo script to keep it company.

If anyone has a good Red Hat script, I'm sure it would be appreciated.

-- 
Mark H. Wood, Lead System Programmer   mw...@iupui.edu
Asking whether markets are efficient is like asking whether people are smart.


pgpoiF665jFz6.pgp
Description: PGP signature
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] handle server init script anybody?

2012-05-09 Thread Alexandre Magaz Graça

On dc 09 mai 2012 14:43:16 CEST, Mark H. Wood wrote:

[...]
If anyone has a good Red Hat script, I'm sure it would be appreciated.



Hi,

The attached script is the one I use for CentOS/Fedora. The path to the 
start-handle-server script is hard-coded though.


Cheers,
Àlex
#!/bin/sh
#
# chkconfig: 345 86 14
# description: Handle server for DSpace.
#
### BEGIN INIT INFO
# Required-Start: httpd
# Short-Description: Handle server.
# Description: Handle server for DSpace.
### END INIT INFO

# Source function library.
. /etc/rc.d/init.d/functions

start() {
echo -n $Starting Handle server services: 
su --shell=/bin/bash - tomcat -c \
/usr/local/dspace/bin/start-handle-server 21  /dev/null  
success || failure
RETVAL=$?
echo 
return $RETVAL
}

stop() {
echo Stopping handle server...
PID=`/bin/ps ax | grep net.handle.server.Main | grep -v 'grep' | awk 
'{print $1}'`
if [ ! -z $PID ] ; then
for process in ${PID}
do
/bin/kill $process
echo Killed process $process
done  success || failure
fi
echo 
}

status() {
PID=`/bin/ps ax | grep net.handle.server.Main | grep -v 'grep' | awk 
'{print $1}'`
if [ ! -z $PID ] ; then
echo Handle server service is running (PID $PID).
else
echo Handle server service is stopped.
fi
}

case $1 in
start)
start
;;
stop)
stop
;;
restart)
stop
start
;;
status)
status
;;
*)
echo $Usage: $0 {start|stop|restart|status}
exit 1
esac
exit $?
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] handle server init script anybody?

2012-05-09 Thread Gary Browne
Hi all,

Here's another one thrown into the mix for good measure. Been used on RHEL 
(4,5,6) for the last 7 years or so. Probably not the most elegant, but it works.

Cheers,
Gary

 -Original Message-
 From: Christian Völker [mailto:c.voel...@gmx.net]
 Sent: Wednesday, 9 May 2012 7:14 AM
 To: dspace-tech Tech
 Subject: [Dspace-tech] handle server init script anybody?
 
 Hello,
 
 I just moved our DSpace to a new machine. This ment moving from Debian
 etch to squeeze. And I believe a server is not completely configured if
 I cant run shutdown -r now without all services coming up again in an
 orderly fashion.
 
 For tomcat and postgres, this is out of the box functionality on any
 decent distribution, but not so for the handle server. CNRI does not
 deliver something useful for this purpose together with their software
 and well, if you read their docs, then say clearly, this software is
 not ment to be ready to run, so I am on my own.
 
 On my old machine I had tweaked something resembling an init script,
 called it handled and placed it in /etc/init.d/. It worked for several
 years. When I copied it to the new machine it ceased working. No real
 wonder, blame me a conman if I call myself an admin, but I admit I am
 not good at coding and not even at writing simple shell scripts. It
 happens to rarely that I have to do it in my everyday work, so it is a
 real teadious task for me.
 
 If youd ask me what exactly I did in the old script, well basically I
 called start-handle-server as the tomcat unix user when run with start
 as argument. As the official way to stop the handle server is to find
 out the process id and kill it, I just forgot about it and made stop be
 an empty method. Reload was the same as start which probably would not
 do its job but I did not care. Thats all.
 It had a description section at the start which made it possible to run
 update-rc.d handled default, which is the usual way to create the
 appropriate links within all rc?.d folders on debian. Quick and dirty
 you might call that but it did exactly what I was looking for.
 
 Now, my question is, am I the only one who is looking for something
 like this? Am I the only one who thinks it is a weird thing to invent
 it myself because there are probably so many more out there who had to
 solve the same issue before? What is your solution, everybody?
 
 Thanks for answers, thanks for posting a ready made init script, that
 safes me the headaches from fiddling myself with #!/bin/sh.
 
 Bye, Christian
 
 PS: Is the use of version 7.0 of handle.jar endorsed or may I stay with
 version 6.2 and still feel like a pro?
 ---
 ---
 Live Security Virtual Conference
 Exclusive live event will cover all the ways today's security and
 threat landscape has changed and how IT managers can respond.
 Discussions
 will include endpoint security, mobile security and the latest in
 malware
 threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
#!/bin/sh

#
# chkconfig: 345 86 14
# description: Starts and stops the handle service
#

# Source function library.
if [ -f /etc/init.d/functions ] ; then
. /etc/init.d/functions
elif [ -f /etc/rc.d/init.d/functions ] ; then
. /etc/rc.d/init.d/functions
else
exit 0
fi


start() {
KIND=handle
su - dspace -c /data/dspace/bin/start-handle-server 21  /dev/null
RETVAL=$?
echo -n $Starting $KIND services: 
return $RETVAL
}

stop() {
echo Stopping handle server...
PID=`/bin/ps -ef | grep java | grep log4j-handle | grep -v 'grep' | awk 
'{print $2}'`
if [ ! -z $PID ] ; then
for process in ${PID}
do
/bin/kill $process
echo Killed process $process
done
fi
}

restart() {
stop
start
}

status() {
PID=`/bin/ps -ef | grep java | grep log4j-handle | grep -v 'grep' | awk 
'{print $2}'`
if [ ! -z $PID ] ; then
echo Handle server service is running (PID $PID).
else
echo Handle server service is stopped.
fi
}

case $1 in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
status)
status
;;
*)
echo $Usage: $0 {start|stop|restart|status}
exit 1
esac
exit $?
--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint 

Re: [Dspace-tech] handle server init script anybody?

2012-05-08 Thread helix84
On Tue, May 8, 2012 at 11:13 PM, Christian Völker c.voel...@gmx.net wrote:
 If youd ask me what exactly I did in the old script, well basically I called 
 start-handle-server as the tomcat unix user when run with start as argument. 
 As the official way to stop the handle server is to find out the process id 
 and kill it, I just forgot about it and made stop be an empty method. Reload 
 was the same as start which probably would not do its job but I did not care. 
 Thats all.
 It had a description section at the start which made it possible to run 
 update-rc.d handled default, which is the usual way to create the appropriate 
 links within all rc?.d folders on debian. Quick and dirty you might call that 
 but it did exactly what I was looking for.

Hi Christian,

just from a quick look - it may actually not be a problem in the
script itself, but rather in the order of init scripts. Check that
your script starts only after network is available.

If it's not it, I might write a more complete reply tomorrow.

Regards,
~~helix84

--
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server on Windows

2012-03-26 Thread helix84
On Mon, Mar 26, 2012 at 19:27, Heller, Margaret mhel...@dom.edu wrote:
 I didn’t see any processes using the ports, and we checked that nothing else
 on the server is set up to use those ports, so I am not sure where this is
 coming from.

Hi Margaret,

1) If you're trying to bind to a low port (1024), you need
administrator privileges, are you sure you're running handle server as
administrator?

2) There may be a mismatch between the IP your computer has and it's
DNS name. Make sure you're listing the public IP address of your
machine in config.dct.

That's all I can think of right now.

Regards,
~~helix84

--
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle-server installation

2012-03-05 Thread helix84
On Mon, Mar 5, 2012 at 07:46, Rahul Soni ra...@ismu.ac.in wrote:
 Does making DSpace live for an institution requires some amount that need to
 be paid. I was googling for the same and found that perhaps it requires
 handle-server installation and which requires certain amount to be paid.

 Please guide so that inappropriate approach can be avoided.

Dear Rahul,

running a handle server is completely optional. Be advised that DSpace
URLs show /handle/123456789/xxx by default, but this does not mean
that you're running a handle server.

The prices for handle registration (in case you want one) are mentioned here:
http://handle.net/service_agreement.html

Regards,
~~helix84

--
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server

2012-02-14 Thread bodnar_robert
 I believe you have to upgrade to at least dspace 1.7.2 in order to make
 the changes



Multumesc Sergiu.

We have exactly DSpace 1.7.2, but I still don`t know how to do this.

Regards,
B. Robert


--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server

2012-02-14 Thread bodnar_robert
Dear Sirs,

Thank you very much for your answers!

I found a very simple and effective way to solve my problem.
I write it down, maybe it could be useful for someone:
I exported the metadata for a collection through the interface in cvs,
opened it in Bluefish and used Replace All.
Then imported the cvs back in DSpace.
That`s it.

Thank you! Have a nice day!

-- 

With best regards,
Bodnár Róbert

--
BIBLIOTECA CENTRALA UNIVERSITARA LUCIAN BLAGA
INTERNATIONAL EXCHANGES/ DIGITAL LIBRARY
Str. Clinicilor Nr. 2
46 Cluj-Napoca
Romania
e-mail: bodnar_rob...@bcucluj.ro
web: www.bcucluj.ro




--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server

2012-02-13 Thread bodnar_robert
Dear Ben,

thank you very much for your answer, but I dont want change the prefix, I
want to change the server name:
for ex. http://hdl.handle.net to http://dspace.bcucluj.ro/handle

If there is an easier way to do this then manually changing them.

Thank you all!
B. Robert


 Bodnar,
There is a script in the bin directory called update-handle-prefix, I
 can't remember off hand what parameters it takes.
 For 1.6 the section of the documentation is 3.4.4.1.

 Regards,
   Ben



--
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server

2012-02-13 Thread Brian Freels-Stendel
Hi Bodnar,

In dspace.cfg, you'll need to uncomment the line handle.canonical.prefix that 
specifies local URLs, and comment the one that specifies handle.net.  That 
should do the trick.

B--

 On 2/13/2012 at 6:10 AM, in message
57009.192.168.1.1.1329138643.squir...@bcucluj.ro, bodnar_rob...@bcucluj.ro
wrote:
 Dear Ben,
 
 thank you very much for your answer, but I dont want change the prefix, I
 want to change the server name:
 for ex. http://hdl.handle.net to http://dspace.bcucluj.ro/handle 
 
 If there is an easier way to do this then manually changing them.
 
 Thank you all!
 B. Robert
 
 
 Bodnar,
There is a script in the bin directory called update-handle-prefix, I
 can't remember off hand what parameters it takes.
 For 1.6 the section of the documentation is 3.4.4.1.

 Regards,
   Ben

 
 
 --
 Try before you buy = See our experts in action!
 The most comprehensive online learning library for Microsoft developers
 is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
 Metro Style Apps, more. Free future releases when you subscribe now!
 http://p.sf.net/sfu/learndevnow-dev2 
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net 
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


--
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server

2012-02-13 Thread bodnar_robert
 Hi Bodnar,

 In dspace.cfg, you'll need to uncomment the line handle.canonical.prefix
 that specifies local URLs, and comment the one that specifies handle.net.
 That should do the trick.

 B--


Hello.

Thank you Brian.
We did this already but this not change the URI for the old items :(

We would like to import our metadata in another system and the link is
automatically taken from the URI... So its very important to change it.

A way would be to export the metadata, and make some automatic process
that changes the links, but this also would take some time.

If I remember well someone posted a single command on the list that did
all...

Thank you for your time.
B. Robert




--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server Problem

2011-05-12 Thread Cameron, Jacob
I tried a couple of things people suggested such as making sure I was
running the command prompt as an administrator, restarting the server to
make sure no odd java processes were running, and restarting all of the
DSpace services.  I still am getting an error when I try to start the
handle server.  Could it be due to running an encrypted handle?

I got this error when I tried to start it this morning.

2011/05/12 07:55:03 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/12 07:55:03 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/12 07:55:03 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/12 07:55:03 MDT 25 Shutting down server at Thu May 12 07:55:03
MDT 2011
2011/05/12 07:55:03 MDT 75 class net.handle.server.HdlUdpInterface:
Error handling request: java.net.SocketException: socket closed
java.net.SocketException: socket closed
at java.net.PlainDatagramSocketImpl.receive0(Native Method)
at java.net.PlainDatagramSocketImpl.receive(Unknown Source)
at java.net.DatagramSocket.receive(Unknown Source)
at
net.handle.server.HdlUdpInterface.serveRequests(HdlUdpInterface.java:156
)
at
net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
2011/05/12 07:55:03 MDT 75 class net.handle.server.HdlTcpInterface:
Error handling request: java.net.SocketException: socket closed
at java.lang.Thread.run(Unknown Source)
java.net.SocketException: socket closed
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(Unknown Source)
at java.net.ServerSocket.implAccept(Unknown Source)
at java.net.ServerSocket.accept(Unknown Source)
at
net.handle.server.HdlTcpInterface.serveRequests(HdlTcpInterface.java:155
)
at
net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
at java.lang.Thread.run(Unknown Source)



--
Jake Cameron, BCS(UNB)
Technical Specialist III
Information Systems and Technical Services
University of Lethbridge Library
Phone:(403)329-2756

This e-mail, including any and all attachments, is only for the use of
the intended recipient(s) and may contain information that is
confidential or privileged. If you are not the intended recipient, you
are advised that any dissemination, copying or other use of this e-mail
is prohibited. Please notify the sender of the error in communication by
return e-mail and destroy all copies of this e-mail.  Thank you.


-Original Message-
From: Cameron, Jacob [mailto:jacob.came...@uleth.ca] 
Sent: Wednesday, May 11, 2011 3:55 PM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] Handle Server Problem

I can not get our handle server to run on Windows 7.  I am getting the
following error (found in the handle-server directory error.txt file).
Any help would be appreciated.

2011/05/11 10:26:15 MDT 25 Started new run.
Saving global values to: C:\Users\dspace\.handle\root_info
Saving global values to: C:\Users\dspace\.handle\root_info
2011/05/11 10:26:23 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/11 10:26:23 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/11 10:26:23 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/11 10:26:23 MDT 25 Shutting down server at Wed May 11 10:26:23
MDT 2011
2011/05/11 10:26:23 MDT 75 class net.handle.server.HdlUdpInterface:
Error handling request: java.net.SocketException: socket closed
java.net.SocketException: socket closed
at java.net.PlainDatagramSocketImpl.receive0(Native Method)
at java.net.PlainDatagramSocketImpl.receive(Unknown Source)
at java.net.DatagramSocket.receive(Unknown Source)
at
net.handle.server.HdlUdpInterface.serveRequests(HdlUdpInterface.java:156
)
at
net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
at java.lang.Thread.run(Unknown Source)
2011/05/11 10:26:23 MDT 75 class net.handle.server.HdlTcpInterface:
Error handling request: java.net.SocketException: socket closed
java.net.SocketException: socket closed
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(Unknown Source)
at java.net.ServerSocket.implAccept(Unknown Source)
at java.net.ServerSocket.accept(Unknown Source)
2011/05/11 10:26:23 MDT 75 class net.handle.server.HdlHttpInterface:
Error handling request: java.net.SocketException: socket closed
at
net.handle.server.HdlTcpInterface.serveRequests(HdlTcpInterface.java:155
)
at
net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
at java.lang.Thread.run(Unknown Source)java.net.SocketException:
socket closed
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(Unknown Source)
2011/05/11 02:42:42 MDT 25 Started new run.
Saving global values to: C:\Users\dspace\.handle\root_info
2011/05/11 02:42:48 MDT 50 unspecified max_handlers count, 

Re: [Dspace-tech] Handle Server Problem

2011-05-12 Thread Evans, Kevin
Hi,

If you have restarted the handle and killed any processes, I suggest you
check the relevant ports are open on your network...

This type of thing drove me crazy for the longest time, also when I run the
initial script I answered no to encrypting the handle.

Kevin

-Original Message-
From: Cameron, Jacob [mailto:jacob.came...@uleth.ca] 
Sent: 12 May 2011 15:03
To: Cameron, Jacob; dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle Server Problem

I tried a couple of things people suggested such as making sure I was
running the command prompt as an administrator, restarting the server to
make sure no odd java processes were running, and restarting all of the
DSpace services.  I still am getting an error when I try to start the handle
server.  Could it be due to running an encrypted handle?

I got this error when I tried to start it this morning.

2011/05/12 07:55:03 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/12 07:55:03 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/12 07:55:03 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/12 07:55:03 MDT 25 Shutting down server at Thu May 12 07:55:03 MDT
2011
2011/05/12 07:55:03 MDT 75 class net.handle.server.HdlUdpInterface:
Error handling request: java.net.SocketException: socket closed
java.net.SocketException: socket closed
at java.net.PlainDatagramSocketImpl.receive0(Native Method)
at java.net.PlainDatagramSocketImpl.receive(Unknown Source)
at java.net.DatagramSocket.receive(Unknown Source)
at
net.handle.server.HdlUdpInterface.serveRequests(HdlUdpInterface.java:156
)
at
net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
2011/05/12 07:55:03 MDT 75 class net.handle.server.HdlTcpInterface:
Error handling request: java.net.SocketException: socket closed
at java.lang.Thread.run(Unknown Source)
java.net.SocketException: socket closed
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(Unknown Source)
at java.net.ServerSocket.implAccept(Unknown Source)
at java.net.ServerSocket.accept(Unknown Source)
at
net.handle.server.HdlTcpInterface.serveRequests(HdlTcpInterface.java:155
)
at
net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
at java.lang.Thread.run(Unknown Source)



--
Jake Cameron, BCS(UNB)
Technical Specialist III
Information Systems and Technical Services University of Lethbridge Library
Phone:(403)329-2756

This e-mail, including any and all attachments, is only for the use of the
intended recipient(s) and may contain information that is confidential or
privileged. If you are not the intended recipient, you are advised that any
dissemination, copying or other use of this e-mail is prohibited. Please
notify the sender of the error in communication by return e-mail and destroy
all copies of this e-mail.  Thank you.


-Original Message-
From: Cameron, Jacob [mailto:jacob.came...@uleth.ca]
Sent: Wednesday, May 11, 2011 3:55 PM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] Handle Server Problem

I can not get our handle server to run on Windows 7.  I am getting the
following error (found in the handle-server directory error.txt file).
Any help would be appreciated.

2011/05/11 10:26:15 MDT 25 Started new run.
Saving global values to: C:\Users\dspace\.handle\root_info Saving global
values to: C:\Users\dspace\.handle\root_info
2011/05/11 10:26:23 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/11 10:26:23 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/11 10:26:23 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/11 10:26:23 MDT 25 Shutting down server at Wed May 11 10:26:23 MDT
2011
2011/05/11 10:26:23 MDT 75 class net.handle.server.HdlUdpInterface:
Error handling request: java.net.SocketException: socket closed
java.net.SocketException: socket closed
at java.net.PlainDatagramSocketImpl.receive0(Native Method)
at java.net.PlainDatagramSocketImpl.receive(Unknown Source)
at java.net.DatagramSocket.receive(Unknown Source)
at
net.handle.server.HdlUdpInterface.serveRequests(HdlUdpInterface.java:156
)
at
net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
at java.lang.Thread.run(Unknown Source)
2011/05/11 10:26:23 MDT 75 class net.handle.server.HdlTcpInterface:
Error handling request: java.net.SocketException: socket closed
java.net.SocketException: socket closed
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(Unknown Source)
at java.net.ServerSocket.implAccept(Unknown Source)
at java.net.ServerSocket.accept(Unknown Source)
2011/05/11 10:26:23 MDT 75 class net.handle.server.HdlHttpInterface:
Error handling request: java.net.SocketException: socket closed

Re: [Dspace-tech] Handle Server Problem

2011-05-12 Thread Cameron, Jacob
The ports are open on our firewall.  We just upgraded to a new version
of DSpace and the exact same rules for the firewall still apply.

--
Jake Cameron, BCS(UNB)
Technical Specialist III
Information Systems and Technical Services
University of Lethbridge Library
Phone:(403)329-2756

This e-mail, including any and all attachments, is only for the use of
the intended recipient(s) and may contain information that is
confidential or privileged. If you are not the intended recipient, you
are advised that any dissemination, copying or other use of this e-mail
is prohibited. Please notify the sender of the error in communication by
return e-mail and destroy all copies of this e-mail.  Thank you.


-Original Message-
From: Evans, Kevin [mailto:kevin.ev...@exeter.ac.uk] 
Sent: Thursday, May 12, 2011 8:21 AM
To: Cameron, Jacob; dspace-tech@lists.sourceforge.net
Subject: RE: [Dspace-tech] Handle Server Problem

Hi,

If you have restarted the handle and killed any processes, I suggest you
check the relevant ports are open on your network...

This type of thing drove me crazy for the longest time, also when I run
the
initial script I answered no to encrypting the handle.

Kevin

-Original Message-
From: Cameron, Jacob [mailto:jacob.came...@uleth.ca] 
Sent: 12 May 2011 15:03
To: Cameron, Jacob; dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle Server Problem

I tried a couple of things people suggested such as making sure I was
running the command prompt as an administrator, restarting the server to
make sure no odd java processes were running, and restarting all of the
DSpace services.  I still am getting an error when I try to start the
handle
server.  Could it be due to running an encrypted handle?

I got this error when I tried to start it this morning.

2011/05/12 07:55:03 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/12 07:55:03 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/12 07:55:03 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/12 07:55:03 MDT 25 Shutting down server at Thu May 12 07:55:03
MDT
2011
2011/05/12 07:55:03 MDT 75 class net.handle.server.HdlUdpInterface:
Error handling request: java.net.SocketException: socket closed
java.net.SocketException: socket closed
at java.net.PlainDatagramSocketImpl.receive0(Native Method)
at java.net.PlainDatagramSocketImpl.receive(Unknown Source)
at java.net.DatagramSocket.receive(Unknown Source)
at
net.handle.server.HdlUdpInterface.serveRequests(HdlUdpInterface.java:156
)
at
net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
2011/05/12 07:55:03 MDT 75 class net.handle.server.HdlTcpInterface:
Error handling request: java.net.SocketException: socket closed
at java.lang.Thread.run(Unknown Source)
java.net.SocketException: socket closed
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(Unknown Source)
at java.net.ServerSocket.implAccept(Unknown Source)
at java.net.ServerSocket.accept(Unknown Source)
at
net.handle.server.HdlTcpInterface.serveRequests(HdlTcpInterface.java:155
)
at
net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
at java.lang.Thread.run(Unknown Source)



--
Jake Cameron, BCS(UNB)
Technical Specialist III
Information Systems and Technical Services University of Lethbridge
Library
Phone:(403)329-2756

This e-mail, including any and all attachments, is only for the use of
the
intended recipient(s) and may contain information that is confidential
or
privileged. If you are not the intended recipient, you are advised that
any
dissemination, copying or other use of this e-mail is prohibited. Please
notify the sender of the error in communication by return e-mail and
destroy
all copies of this e-mail.  Thank you.


-Original Message-
From: Cameron, Jacob [mailto:jacob.came...@uleth.ca]
Sent: Wednesday, May 11, 2011 3:55 PM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] Handle Server Problem

I can not get our handle server to run on Windows 7.  I am getting the
following error (found in the handle-server directory error.txt file).
Any help would be appreciated.

2011/05/11 10:26:15 MDT 25 Started new run.
Saving global values to: C:\Users\dspace\.handle\root_info Saving global
values to: C:\Users\dspace\.handle\root_info
2011/05/11 10:26:23 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/11 10:26:23 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/11 10:26:23 MDT 50 unspecified max_handlers count, using
default: 200
2011/05/11 10:26:23 MDT 25 Shutting down server at Wed May 11 10:26:23
MDT
2011
2011/05/11 10:26:23 MDT 75 class net.handle.server.HdlUdpInterface:
Error handling request: java.net.SocketException: socket closed
java.net.SocketException: socket closed
at java.net.PlainDatagramSocketImpl.receive0(Native Method

Re: [Dspace-tech] handle server admin?

2011-04-19 Thread Wendy J Bossons
Perhaps you are missing a few steps...

• In config.dct, update any lines titled YOUR_NAMING_AUTHORITY with the 
number from the Handle admin . . . server_admins = ( 300:0.NA/1785 ). 
• Edit /dspace/config/dspace.cfg, changing the handle prefix to 
whatever number you were assigned . . . and changing if necessary handle.dir to 
point to the right place, usually /dspace/handle-server.



..\wendy

Wendy Bossons
Senior Software Engineer
MIT Libraries
Software Analysis  Development
Building E25-131
77 Massachusetts Ave.
Cambridge, MA 02141-4307
Phone 617-253-0770
Fax 617-253-4462
wboss...@mit.edu
http://libraries.mit.edu


On Apr 19, 2011, at 3:47 PM, Marvin Weaver wrote:

I got a handle from CNRI and updated my database with it.
I put it in the handle-server/config.dct  along with the servers's ip address
I added the two lines to the server_config clause:
storage_type = CUSTOM
storage_class = org.dspace.handle.HandlePlugin

Tried to start the handle server:  /dspace/bin/start-handle-server
and it didn't start.

Logs are:
-bash-3.00$ more handle-server.log
2011/04/19 12:53:05 EDT 25 Rotating log files
Error: Error processing server administrator list:
java.lang.Exception: Invalid server administrator ID: stora
ge_type
   (see the error log for details.)

Shutting down...
2011/04/19 03:37:33 EDT 25 Rotating log files
Error: Error processing server administrator list:
java.lang.Exception: Invalid server administrator ID: stora
ge_type
   (see the error log for details.)

Shutting down...
-bash-3.00$

-bash-3.00$ more error.log
2011/04/19 03:37:33 EDT 25 Started new run.
Saving global values to: 
/dspacehome/
.handle/root_info
java.lang.Exception: Error processing server administrator list:
java.lang.Exception: Invalid server administra
tor ID: storage_type
at net.handle.server.HandleServer.init(HandleServer.java:430)
at net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
at net.handle.server.Main.initialize(Main.java:152)
at net.handle.server.Main.main(Main.java:75)
Shutting down...
-bash-3.00$

more ~/.handle/root_info
the tail was all that was readable:
/sig.digest?digests hdl=0.na/0.na
val index=200 md5=908E0C8CB00955EC3D09FC2B0F0C69E2
sha1=5389F007F1450528015F7C1D8EBAE5A488FE954F/
val index=100 md5=9D2A7E852A44A15C4427D731E3606A24
sha1=233E5EBE829E12EF82F23E4770F2791C7F59038F/
val index=4 md5=7FFFA079E968352EDABB395A47620EA9
sha1=ED8106C0D89A60BD5AFDAC19730557938DE4E2ED/
val index=3 md5=16B94473F4B84157182AEA3CB628D9FB
sha1=AAF878B1A4BB8EECCAD0F13A61C960C6009D53F0/
val index=5 md5=2637C54D4E78ECDD52364929A65AD1C9
sha1=D5F5431ACFC8AC82FE340F7274CC28D5DD9776A8/
val index=6 md5=4F6F689F296B3DC6D28F012BC8773C9F
sha1=B2FCAD94DB174F2F179987F35D51B1AB5CB4BFCC/
val index=101 md5=EA3474B36F7112F5551117429920533E
sha1=D8FCB133C7A211B3FA8C5627B3F48F97333BDE7C/
val index=102 md5=EEBE40475DDED108CAA8AD9A3F66014B
sha1=0514AF918AB38775CA7F5A6CE95553CB29FE9480/
val index=300 md5=0C9063ABA3D52F97FDE6BC3F88478A34
sha1=1B58B607566A0BCEF26CFBFF03384F47653B2D4C/
val index=2 md5=02A5A450B5152E1CEE7668DFB63BC2BB
sha1=B20086A5702ED182551E26620C2EDAA048C57B98/
val index=1 md5=355E6A68668771D0D13DE1851D865E6D
sha1=2CF199CF5A756EB25FA8803B4CB2B9C7FE6C33CD/
val index=7 md5=9CEAAE6CC1B0CBA28BEAA48E54545ECF
sha1=CCEF7E44A4082F4AB285B058C941841A1456CA3E/
val index=402 md5=6EFC4720F578F8F610CB68B572EA2B34
sha1=B8DC49C03D5D9949646BB392BE88D0C00162D954/
val index=403 md5=F0FE4740322B0A00BA1DB054B8518967
sha1=3B6F2B7EC5BB4DB2F2FF6D4929FF17E342D7EC50/
/digests
10320/sig.sig?signature ofindex=400 hdl=0.na/0.na signer=0.NA/0.NA
sig 
alg=DSA302C02147DB72240C89E950F3F840D33769D3FBFD1DA39AD02144620099985A6137BC4ADC4425C96D102B8B0CFBC/si
g
/signature

I didn't see anything in the documentation about setting up a handle server 
administrator.  Am I missing something?  Thanks


ATT1..cATT2..c


--
Benefiting from Server Virtualization: Beyond Initial Workload 
Consolidation -- Increasing the use of server virtualization is a top
priority.Virtualization can reduce costs, simplify management, and improve 
application availability and disaster protection. Learn more about boosting 
the value of server virtualization. http://p.sf.net/sfu/vmware-sfdev2dev
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] handle server starting error

2011-01-28 Thread Evans, Kevin
Hi,

Not quite sure about Windows Server, but the trickiest issue I've found with
handle server is to make sure the ports are open on your network firewall.

Kevin

-Original Message-
From: Sudan Bhattarai [mailto:sbhatta...@libserv.ucmo.edu] 
Sent: 28 January 2011 16:30
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] handle server starting error

Hello,
Having trouble starting handle server. Any help is really appreciated. 
It is on windows server.


C:\Dspace\bindsrun net.handle.server.Main \dspace\handle-server
Using DSpace installation in: C:\Dspace
2011/01/28 10:09:07 CST 25 Rotating log files
UDP handle Request Listener:
address: /153.91.64.20
   port: 2641
HTTP handle Request Listener:
Starting UDP request handlers: TCP handle Request Listener:
.   address: /153.91.64.20
address: /153.91.64.20
   port: 8000
   port: 2641
Starting HTTP request handlers: Starting TCP request handlers: ..
C:\Dspace\bin


Here is my config file.

{
hdl_http_config = {
bind_address = 153.91.64.20
num_threads = 15
bind_port = 8000
backlog = 5
log_accesses = yes
}

server_type = server
hdl_udp_config = {
bind_address = 153.91.64.20
num_threads = 15
bind_port = 2641
log_accesses = yes
}

hdl_tcp_config = {
bind_address = 153.91.64.20
num_threads = 15
bind_port = 2641
backlog = 5
log_accesses = yes
}

log_save_config = {
log_save_interval = Monthly
}

no_udp_resolution = y
interfaces = (
hdl_udp
hdl_tcp
hdl_http
)

server_config = {
storage_type = CUSTOM
storage_class = org.dspace.handle.HandlePlugin
server_admins = (
300:0.NA/10768
)

replication_admins = (
300:0.NA/10768
)

max_session_time = 8640
this_server_id = 1
max_auth_time = 6
backup_admins = (
300:0.NA/10768
)

case_sensitive = no

}



--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


smime.p7s
Description: S/MIME cryptographic signature
--
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server problem (incorrect passphrase error) [SOLVED]

2010-10-12 Thread Altaf Mahmud
I reinstalled the handle-server, done the whole process again. This time I
also installed Uncomplicated Firewall (ufw) in my Debian Lenny, configured
the port number. Don't know whether this UFW done the trick but my
handle-server is now working. This link is good:
http://wiki.lib.sun.ac.za/index.php/SUNScholar/Handle_Server.

Sorry for the chaos. Thanks to all.

On Mon, Oct 11, 2010 at 7:44 PM, Altaf Mahmud altaf.mah...@gmail.comwrote:

 Dear community,

 I am trying to run handle-server by following command:
 ./bin/start-handle-server, but the log output in /log/handle-server
 generated as follows:

 2010/10/11 07:30:42 BDST 25 Rotating log files
 Enter the passphrase for this server's authentication private key:
 Note: Your passphrase will be displayed as it is entered
 Error: Incorrect passphrase
(see the error log for details.)

 Shutting down...

 And contents of my /handle-server/error.log is:

 2010/10/11 07:30:43 BDST 25 Started new run.
 Saving global values to: /home/dspace/.handle/root_info
 javax.crypto.BadPaddingException: Given final block not properly padded
 at com.sun.crypto.provider.SunJCE_f.b(DashoA13*..)
 at com.sun.crypto.provider.SunJCE_f.b(DashoA13*..)
 at com.sun.crypto.provider.DESCipher.engineDoFinal(DashoA13*..)
 at javax.crypto.Cipher.doFinal(DashoA13*..)
 at
 net.handle.security.provider.GenericProvider.decrypt_DES_ECB_PKCS5(GenericProvider.java:146)
 at net.handle.hdllib.Util.decrypt(Util.java:1078)
 at net.handle.server.HandleServer.init(HandleServer.java:306)
 at
 net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
 at net.handle.server.Main.initialize(Main.java:152)
 at net.handle.server.Main.main(Main.java:75)
 Unable to initialize server signature object: java.lang.Exception:
 Incorrect passphrase
 java.lang.Exception: Incorrect passphrase
 at net.handle.hdllib.Util.decrypt(Util.java:1083)
 at net.handle.server.HandleServer.init(HandleServer.java:306)
 at
 net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
 at net.handle.server.Main.initialize(Main.java:152)
 at net.handle.server.Main.main(Main.java:75)
 java.lang.Exception: Incorrect passphrase
 at net.handle.hdllib.Util.decrypt(Util.java:1083)
 at net.handle.server.HandleServer.init(HandleServer.java:306)
 at
 net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
 at net.handle.server.Main.initialize(Main.java:152)
 at net.handle.server.Main.main(Main.java:75)
 Shutting down...

 I've also tried with this command: ./bin/dsrun
 -Ddspace.log.init.disable=true
 -Dlog4j.configuration=log4j-handle-plugin.properties net.handle.server.Main
 [dspace]/handle-server/ which shows: Error in launcher.xml: Invalid class
 name: -Ddspace.log.init.disable=true. What should I do now? I am running
 DSpace 1.6.2.

 Any suggestion will be appreciated. Thanks.


 --
 Altaf Mahmud
 System Programmer
 Ayesha Abed Library,
 BRAC University,
 Bangladesh.




-- 
Altaf Mahmud
System Programmer
Ayesha Abed Library,
BRAC University,
Bangladesh.
--
Beautiful is writing same markup. Internet Explorer 9 supports
standards for HTML5, CSS3, SVG 1.1,  ECMAScript5, and DOM L2  L3.
Spend less time writing and  rewriting code and more time creating great
experiences on the web. Be a part of the beta today.
http://p.sf.net/sfu/beautyoftheweb___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server on 1.6.2 (Windows)

2010-09-29 Thread Louw Venter

When upgrading I made a complete copy of my 1.5.1 folder and continued
installing 1.6.2.
While configuring (and afterward) I made sure that my configuration
files are similar.
When attempting to start the handle server for 1.6.2 it doesn't work.
But the idea came to me last night to use the previous version's handle
server as a test.
So this morning I ran the start handle-server script from my 1.5.1
backup directory - and everything works fine!
The server starts up fine and the hdl.handle.net/ links resolve without
problems, so it doesn't seem to be a problem on the server
(ports/paths/etc..) - in my mind it still points to the 1.6.2 script.
For the time being I will keep it running like this, although I realize
this is not at all ideal (I assume logging isn't working right now), but
the downtime really makes the institution look bad.
 
Don't know if anyone has any ideas but I'm open to suggestions.
 

Vrywaringsklousule / Disclaimer:
http://www.nwu.ac.za/it/gov-man/disclaimer.html 
Vrywaringsklousule / Disclaimer:
http://www.nwu.ac.za/it/gov-man/disclaimer.html 

 On 27 September 2010 at 04:52 PM, Heh, Gregory
h...@carnegielibrary.org wrote:

Louw,
I'm not sure about any bugs within the Windows version of the 1.6.1
startup script.  Posting this question on the dspace-tech list will
help.  Do a file search within the dspace install directory for the
handle-server.log.  Sands Alden Fish had a good idea about disabling any
firewall momentarily to rule out a network issue.  Just don't give up
checking the log files and working with CNRI and your network team to
find the issue.
Greg
 

From:Louw Venter [mailto:louw.ven...@nwu.ac.za] 
Sent: Monday, September 27, 2010 10:36 AM
To: Heh, Gregory
Subject: RE: [Dspace-tech] Handle server on 1.6.2 (Windows)

 

Greg

 

Thank you for the response, I appreciate it.

 

It is the same machine, so nothing changed there. I changed Tomcat to
use those ports temporarily as a test and could connect, so am quite
sure the ports are open and nothing else is using them.

The CNRI answer was that they can't connect to our server, so they
thought the ports were being blocked by some other process, when in fact
the handle server just doesn't start up..

I also think because the server doesn't start up successfully a log
file (other than error.log) isn't created (well, couldn't find one
anyway).

 

I am scared it might be a problem with the startup script for Windows
specifically as, from what I've read, the script was buggy in version
1.6.1 so it was fixed for linux systems but not Win.

 

Vrywaringsklousule / Disclaimer:
http://www.nwu.ac.za/it/gov-man/disclaimer.html 


 On 27 September 2010 at 04:13 PM, Heh, Gregory
h...@carnegielibrary.org wrote:

Louw,
I've had similar issues and errors when trying to configure the handle
server.  Granted I was installing on a RHEL 5 virtual server but I think
the general installation instructions remain the same.
· Make sure all necessary ports are open for the appropriate
communication
o   port 2641 UDP (input and output)
o   port 2641 TCP (input and output)
o   port 8000 TCP (input and output)
o   These are the default ports but you can choose others, just make
sure that there are no other processes running on these ports as the
handle service needs dedicated ports.
· Double check your handle configurations in dspace.cfg and
/[dspace]/handle-server/config.dct
· Talk with your contact from CNRI, they can help you if the
configuration isn't correct.
Also what is the output from handle-server.log after you run the
/[dspace]/bin/ start-handle-server script?  My apologies if anything is
different for a Windows machine.
Greg
 

From:Louw Venter [mailto:louw.ven...@nwu.ac.za] 
Sent: Monday, September 27, 2010 9:36 AM
To: dspace-tech@lists.sourceforge.net 
Subject: [Dspace-tech] Handle server on 1.6.2 (Windows)

 

Good day all

 

Since upgrading (1.5.1 - 1.6.2) last week I've been trying to start the
Handle-server without success.

Has anyone been able to successfully upgrade on the Windows platform
with a working handle server?

The ports are still open and I've changed all the necessary
configuration files as far as I know, but the server does not start.
In the odd occurrence that it does start half-way, it freezes and does
not communicate.

 

Below is the contents of the error.log after three attempts.

 

Any help/advice would be greatly appreciated.

 

Regards

 

Louw Venter

 

 

 

2010/09/27 03:28:29 GMT+02:00 25 Started new run.
2010/09/27 03:28:29 GMT+02:00 50 unspecified max_handlers count,
using default: 200
2010/09/27 03:28:29 GMT+02:00 50 unspecified max_handlers count,
using default: 200
2010/09/27 03:28:29 GMT+02:00 50 unspecified max_handlers count,
using default: 200
2010/09/27 03:28:29 GMT+02:00 25 Shutting down server at Mon Sep 27
15:28:29 GMT+02:00 2010
2010/09/27 03:28:29 GMT+02:00 75 class
net.handle.server.HdlUdpInterface: Error handling request:
java.net.SocketException: socket closed

Re: [Dspace-tech] Handle server on 1.6.2 (Windows)

2010-09-27 Thread Sands Alden Fish
Certainly seems like a network issue, so I would check things like your 
firewall config, perhaps turn it off momentarily to see if the server will come 
up without it, but possibly more importantly, check to make sure that network 
config parameters are appropriate and correct in the handle server config...

  {dspace-home}\handle-server\config.dct


--
sands fish
Software Engineer
MIT Libraries
Technology Research  Development
sa...@mit.edumailto:sa...@mit.edu
E25-131




On Sep 27, 2010, at 9:35 AM, Louw Venter wrote:

Good day all

Since upgrading (1.5.1 - 1.6.2) last week I've been trying to start the 
Handle-server without success.
Has anyone been able to successfully upgrade on the Windows platform with a 
working handle server?
The ports are still open and I've changed all the necessary configuration files 
as far as I know, but the server does not start.
In the odd occurrence that it does start half-way, it freezes and does not 
communicate.

Below is the contents of the error.log after three attempts.

Any help/advice would be greatly appreciated.

Regards

Louw Venter



2010/09/27 03:28:29 GMT+02:00 25 Started new run.
2010/09/27 03:28:29 GMT+02:00 50 unspecified max_handlers count, using 
default: 200
2010/09/27 03:28:29 GMT+02:00 50 unspecified max_handlers count, using 
default: 200
2010/09/27 03:28:29 GMT+02:00 50 unspecified max_handlers count, using 
default: 200
2010/09/27 03:28:29 GMT+02:00 25 Shutting down server at Mon Sep 27 15:28:29 
GMT+02:00 2010
2010/09/27 03:28:29 GMT+02:00 75 class net.handle.server.HdlUdpInterface: 
Error handling request: java.net.SocketException: socket closed
java.net.SocketException: socket closed
2010/09/27 03:28:29 GMT+02:00 75 class net.handle.server.HdlTcpInterface: 
Error handling request: java.net.SocketException: socket closed
 at java.net.TwoStacksPlainDatagramSocketImpl.receive0(Native Method)
 at 
java.net.TwoStacksPlainDatagramSocketImpl.receive(TwoStacksPlainDatagramSocketImpl.java:84)
 at java.net.DatagramSocket.receive(DatagramSocket.java:739)
 at net.handle.server.HdlUdpInterface.serveRequests(HdlUdpInterface.java:156)
 at net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
 at java.lang.Thread.run(Thread.java:717)
java.net.SocketException: socket closed
 at java.net.TwoStacksPlainSocketImpl.socketAccept(Native Method)
 at java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:375)
 at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:179)
 at java.net.ServerSocket.implAccept(ServerSocket.java:513)
 at java.net.ServerSocket.accept(ServerSocket.java:481)
 at net.handle.server.HdlTcpInterface.serveRequests(HdlTcpInterface.java:155)
 at net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
 at java.lang.Thread.run(Thread.java:717)
2010/09/27 03:28:45 GMT+02:00 25 Started new run.
2010/09/27 03:28:45 GMT+02:00 50 unspecified max_handlers count, using 
default: 200
2010/09/27 03:28:45 GMT+02:00 50 unspecified max_handlers count, using 
default: 200
2010/09/27 03:28:45 GMT+02:00 50 unspecified max_handlers count, using 
default: 200
2010/09/27 03:28:45 GMT+02:00 25 Shutting down server at Mon Sep 27 15:28:45 
GMT+02:00 2010
2010/09/27 03:28:45 GMT+02:00 75 class net.handle.server.HdlUdpInterface: 
Error handling request: java.net.SocketException: socket closed
java.net.SocketException: socket closed
 at java.net.TwoStacksPlainDatagramSocketImpl.receive0(Native Method)
 at 
java.net.TwoStacksPlainDatagramSocketImpl.receive(TwoStacksPlainDatagramSocketImpl.java:84)
 at java.net.DatagramSocket.receive(DatagramSocket.java:739)
 at net.handle.server.HdlUdpInterface.serveRequests(HdlUdpInterface.java:156)
 at net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
 at java.lang.Thread.run(Thread.java:717)
2010/09/27 03:28:45 GMT+02:00 75 class net.handle.server.HdlTcpInterface: 
Error handling request: java.net.SocketException: socket closed
java.net.SocketException: socket closed
 at java.net.TwoStacksPlainSocketImpl.socketAccept(Native Method)
 at java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:375)
 at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:179)
 at java.net.ServerSocket.implAccept(ServerSocket.java:513)
 at java.net.ServerSocket.accept(ServerSocket.java:481)
 at net.handle.server.HdlTcpInterface.serveRequests(HdlTcpInterface.java:155)
 at net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
 at java.lang.Thread.run(Thread.java:717)
2010/09/27 03:29:06 GMT+02:00 25 Started new run.
2010/09/27 03:29:06 GMT+02:00 50 unspecified max_handlers count, using 
default: 200
2010/09/27 03:29:06 GMT+02:00 50 unspecified max_handlers count, using 
default: 200
2010/09/27 03:29:06 GMT+02:00 50 unspecified max_handlers count, using 
default: 200
2010/09/27 03:29:06 GMT+02:00 25 Shutting down server at Mon Sep 27 15:29:06 
GMT+02:00 2010



Vrywaringsklousule / Disclaimer: http://www.nwu.ac.za/it/gov-man/disclaimer.html

ATT1..cATT2..c


Re: [Dspace-tech] Handle server on 1.6.2 (Windows)

2010-09-27 Thread Heh, Gregory
Louw,

I've had similar issues and errors when trying to configure the handle
server.  Granted I was installing on a RHEL 5 virtual server but I think
the general installation instructions remain the same.

* Make sure all necessary ports are open for the appropriate
communication

o   port 2641 UDP (input and output)

o   port 2641 TCP (input and output)

o   port 8000 TCP (input and output)

o   These are the default ports but you can choose others, just make
sure that there are no other processes running on these ports as the
handle service needs dedicated ports.

* Double check your handle configurations in dspace.cfg and
/[dspace]/handle-server/config.dct

* Talk with your contact from CNRI, they can help you if the
configuration isn't correct.

Also what is the output from handle-server.log after you run the
/[dspace]/bin/ start-handle-server script?  My apologies if anything is
different for a Windows machine.

Greg

 

From: Louw Venter [mailto:louw.ven...@nwu.ac.za] 
Sent: Monday, September 27, 2010 9:36 AM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] Handle server on 1.6.2 (Windows)

 

Good day all

 

Since upgrading (1.5.1 - 1.6.2) last week I've been trying to start the
Handle-server without success.

Has anyone been able to successfully upgrade on the Windows platform
with a working handle server?

The ports are still open and I've changed all the necessary
configuration files as far as I know, but the server does not start.
In the odd occurrence that it does start half-way, it freezes and does
not communicate.

 

Below is the contents of the error.log after three attempts.

 

Any help/advice would be greatly appreciated.

 

Regards

 

Louw Venter

 

 

 

2010/09/27 03:28:29 GMT+02:00 25 Started new run.
2010/09/27 03:28:29 GMT+02:00 50 unspecified max_handlers count, using
default: 200
2010/09/27 03:28:29 GMT+02:00 50 unspecified max_handlers count, using
default: 200
2010/09/27 03:28:29 GMT+02:00 50 unspecified max_handlers count, using
default: 200
2010/09/27 03:28:29 GMT+02:00 25 Shutting down server at Mon Sep 27
15:28:29 GMT+02:00 2010
2010/09/27 03:28:29 GMT+02:00 75 class
net.handle.server.HdlUdpInterface: Error handling request:
java.net.SocketException: socket closed
java.net.SocketException: socket closed
2010/09/27 03:28:29 GMT+02:00 75 class
net.handle.server.HdlTcpInterface: Error handling request:
java.net.SocketException: socket closed
 at java.net.TwoStacksPlainDatagramSocketImpl.receive0(Native Method)
 at
java.net.TwoStacksPlainDatagramSocketImpl.receive(TwoStacksPlainDatagram
SocketImpl.java:84)
 at java.net.DatagramSocket.receive(DatagramSocket.java:739)
 at
net.handle.server.HdlUdpInterface.serveRequests(HdlUdpInterface.java:156
)
 at net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
 at java.lang.Thread.run(Thread.java:717)
java.net.SocketException: socket closed
 at java.net.TwoStacksPlainSocketImpl.socketAccept(Native Method)
 at
java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:375
)
 at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:179)
 at java.net.ServerSocket.implAccept(ServerSocket.java:513)
 at java.net.ServerSocket.accept(ServerSocket.java:481)
 at
net.handle.server.HdlTcpInterface.serveRequests(HdlTcpInterface.java:155
)
 at net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
 at java.lang.Thread.run(Thread.java:717)
2010/09/27 03:28:45 GMT+02:00 25 Started new run.
2010/09/27 03:28:45 GMT+02:00 50 unspecified max_handlers count, using
default: 200
2010/09/27 03:28:45 GMT+02:00 50 unspecified max_handlers count, using
default: 200
2010/09/27 03:28:45 GMT+02:00 50 unspecified max_handlers count, using
default: 200
2010/09/27 03:28:45 GMT+02:00 25 Shutting down server at Mon Sep 27
15:28:45 GMT+02:00 2010
2010/09/27 03:28:45 GMT+02:00 75 class
net.handle.server.HdlUdpInterface: Error handling request:
java.net.SocketException: socket closed
java.net.SocketException: socket closed
 at java.net.TwoStacksPlainDatagramSocketImpl.receive0(Native Method)
 at
java.net.TwoStacksPlainDatagramSocketImpl.receive(TwoStacksPlainDatagram
SocketImpl.java:84)
 at java.net.DatagramSocket.receive(DatagramSocket.java:739)
 at
net.handle.server.HdlUdpInterface.serveRequests(HdlUdpInterface.java:156
)
 at net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
 at java.lang.Thread.run(Thread.java:717)
2010/09/27 03:28:45 GMT+02:00 75 class
net.handle.server.HdlTcpInterface: Error handling request:
java.net.SocketException: socket closed
java.net.SocketException: socket closed
 at java.net.TwoStacksPlainSocketImpl.socketAccept(Native Method)
 at
java.net.AbstractPlainSocketImpl.accept(AbstractPlainSocketImpl.java:375
)
 at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:179)
 at java.net.ServerSocket.implAccept(ServerSocket.java:513)
 at java.net.ServerSocket.accept(ServerSocket.java:481)
 at
net.handle.server.HdlTcpInterface.serveRequests(HdlTcpInterface.java:155
)

Re: [Dspace-tech] Handle Server not Working

2010-08-11 Thread Lucio Foltran
Hi,

Thanks for your answer.

Our prefix is 1884.

After some days researching about it, my boss told me that our subscription
at handle.net had some problems.

Now, everything is working fine. It was a handle.net problem and not a
dspace´s one.

Regards,
Lucio

2010/8/10 Yin Yin Latt y.l...@auckland.ac.nz

 Hi Lucio,


 Did you register sitebndl.zp with handle.net ?

 What is your handle prefix ?

 Regards,
 YinYin

--
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev ___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server problems after update to 1.6.1 from 1.5.2

2010-05-25 Thread Ricardo Borillo
Hi all,

I have followed your indications, but i still get this error message
and my handle-server didn't start ...
I have replaced my 1.6.1 dsrun file with the one in the 1.6.0 tag and
i get the same error:

Usage: program-name config-directory

Thanks a lot

---
Salut,

Ricardo Borillo Domenech
http://xml-utils.com / http://twitter.com/borillo



On Mon, May 24, 2010 at 16:41, Gilbertson, Keith R
keith.gilbert...@library.gatech.edu wrote:
 Goodness!  Enjoy the rest of the day!

 We'll open a bug report and someone will find a better fix for you.


 - Original Message -
 From: Tonny Hjelmberg Laursen thl@cbs.dk
 To: keith gilbertson keith.gilbert...@library.gatech.edu
 Cc: dspace-tech@lists.sourceforge.net
 Sent: Monday, May 24, 2010 10:38:06 AM GMT -05:00 US/Canada Eastern
 Subject: Re: [Dspace-tech] Handle server problems after update to 1.6.1 from 
 1.5.2

 One of the things that I didn't test on the test server (1.6.0) was the
 handle-server. I have now replaced dsrun with the one from the 1.6.0
 source package and that seems to have fixed it.

 Thanks alot for your help Keith ;)

 I won't do anymore tests today, since it's a day off and I really need
 som fresh air. But I will be willing to do more testing tomorrow if it's
 needed, but it seemslike theres a bug here :(

 Tonny



 On 24-05-2010 16:23, keith.gilbert...@library.gatech.edu wrote:
 There are log4j configuration files in your config directory,
 including a separate one for the handle server.  However, I'm not sure
 that the handle server is being started in your case.

 You can change the word INFO to DEBUG in these files.  This will fill
 up disk space rapidly so remember to change it back when finished.

 I'm wondering if your handle server works under 1.6.0?  Did you have a 
 chance to try everything with 1.6.0?  You could try using the dsrun file 
 from the 1.6.0 release, but I'm very much guessing blindly now, so use at 
 your own risk:

 http://scm.dspace.org/svn/repo/dspace/tags/dspace-1.6.0/dspace/bin/dsrun


 Also, are you starting the handle server from within the bin directory?  
 (I think that's the way it should be done).



 - Original Message -
 From: Tonny Hjelmberg Laursenthl@cbs.dk
 To: Keith R Gilbertsonkeith.gilbert...@library.gatech.edu
 Cc: dspace-tech@lists.sourceforge.net
 Sent: Monday, May 24, 2010 9:38:51 AM GMT -05:00 US/Canada Eastern
 Subject: Re: [Dspace-tech] Handle server problems after update to 1.6.1 from 
 1.5.2

 Thanks,

 The error is gone now, but now I got another error in the log file (The
 handle server is still not running.)

 Usage:program-name  config-directory

 The bin/start-handle-server line  looks like this now: nohup
 $BINDIR/dsrun net.handle.server.Main $handledir
 -Ddspace.log.init.disable=true
 -Dlog4j.configuration=log4j-handle-plugin.properties/dev/null
 $logdir/handle-server.log 21

 I can't find any other error messages. How can I enable somekind of
 debug logging?


 On 24-05-2010 15:18, Gilbertson, Keith R wrote:

 Try editing the last line of your bin/start-handle-server script so that 
 net.handle.server.Main
 appears directly after dsrun (instead of where it is now).

 That should get rid of the Invalid class name: message.  If there are 
 other error messages after making this change, please post them to the list 
 so that experts on the dspace launcher command can research more.

 --keith


 - Original Message -
 From: Tonny Hjelmberg Laursenthl@cbs.dk
 To: dspace-tech@lists.sourceforge.net
 Sent: Monday, May 24, 2010 7:55:29 AM GMT -05:00 US/Canada Eastern
 Subject: [Dspace-tech] Handle server problems after update to 1.6.1 from 
 1.5.2

 Hey,

 Im in the middle of updating a DSpace installation and everything seems
 fine. But im having a problem with starting the handle server. When I
 execute bin/start-handle-server im getting this error in the
 handle-server logfile:

 Error in launcher.xml: Invalid class name: -Ddspace.log.init.disable=true

 Im running RedHat 5.5

 Any ideas?

 Thanks,
 Tonny





 --

 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech













 --

 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


--

___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server problems after update to 1.6.1 from 1.5.2

2010-05-25 Thread Gilbertson, Keith R
The first suggestion that I made to Tonny, to edit the start-handle-server 
script and change the order of the parameters, was a bad one and didn't work.  

So, if you made changes to the start-handle-server script, undo the changes and 
put the start-handle-server script back the way it was originally.



- Mensaje original -
De: Ricardo Borillo ricardo.bori...@si.uji.es
Para: Keith R Gilbertson keith.gilbert...@library.gatech.edu
CC: Tonny Hjelmberg Laursen thl@cbs.dk, 
dspace-tech@lists.sourceforge.net
Enviados: Martes, 25 de Mayo 2010 8:43:13 GMT -05:00 Región oriental EE. 
UU./Canadá
Asunto: Re: [Dspace-tech] Handle server problems after update to 1.6.1 from  
1.5.2

Hi all,

I have followed your indications, but i still get this error message
and my handle-server didn't start ...
I have replaced my 1.6.1 dsrun file with the one in the 1.6.0 tag and
i get the same error:

Usage: program-name config-directory

Thanks a lot

---
Salut,

Ricardo Borillo Domenech
http://xml-utils.com / http://twitter.com/borillo


--

___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server problems after update to 1.6.1 from 1.5.2

2010-05-24 Thread Gilbertson, Keith R
Try editing the last line of your bin/start-handle-server script so that 
net.handle.server.Main
appears directly after dsrun (instead of where it is now).

That should get rid of the Invalid class name: message.  If there are other 
error messages after making this change, please post them to the list so that 
experts on the dspace launcher command can research more.

--keith


- Original Message -
From: Tonny Hjelmberg Laursen thl@cbs.dk
To: dspace-tech@lists.sourceforge.net
Sent: Monday, May 24, 2010 7:55:29 AM GMT -05:00 US/Canada Eastern
Subject: [Dspace-tech] Handle server problems after update to 1.6.1 from 1.5.2

Hey,

Im in the middle of updating a DSpace installation and everything seems 
fine. But im having a problem with starting the handle server. When I 
execute bin/start-handle-server im getting this error in the 
handle-server logfile:

Error in launcher.xml: Invalid class name: -Ddspace.log.init.disable=true

Im running RedHat 5.5

Any ideas?

Thanks,
Tonny





--

___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech

--

___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server problems after update to 1.6.1 from 1.5.2

2010-05-24 Thread Tonny Hjelmberg Laursen
Thanks,

The error is gone now, but now I got another error in the log file (The 
handle server is still not running.)

Usage: program-name config-directory

The bin/start-handle-server line  looks like this now: nohup 
$BINDIR/dsrun net.handle.server.Main $handledir 
-Ddspace.log.init.disable=true 
-Dlog4j.configuration=log4j-handle-plugin.properties /dev/null  
$logdir/handle-server.log 21 

I can't find any other error messages. How can I enable somekind of 
debug logging?


On 24-05-2010 15:18, Gilbertson, Keith R wrote:
 Try editing the last line of your bin/start-handle-server script so that 
 net.handle.server.Main
 appears directly after dsrun (instead of where it is now).

 That should get rid of the Invalid class name: message.  If there are other 
 error messages after making this change, please post them to the list so that 
 experts on the dspace launcher command can research more.

 --keith


 - Original Message -
 From: Tonny Hjelmberg Laursenthl@cbs.dk
 To: dspace-tech@lists.sourceforge.net
 Sent: Monday, May 24, 2010 7:55:29 AM GMT -05:00 US/Canada Eastern
 Subject: [Dspace-tech] Handle server problems after update to 1.6.1 from 1.5.2

 Hey,

 Im in the middle of updating a DSpace installation and everything seems
 fine. But im having a problem with starting the handle server. When I
 execute bin/start-handle-server im getting this error in the
 handle-server logfile:

 Error in launcher.xml: Invalid class name: -Ddspace.log.init.disable=true

 Im running RedHat 5.5

 Any ideas?

 Thanks,
 Tonny





 --

 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech







--

___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server problems after update to 1.6.1 from 1.5.2

2010-05-24 Thread keith . gilbertson
There are log4j configuration files in your config directory,
including a separate one for the handle server.  However, I'm not sure
that the handle server is being started in your case.

You can change the word INFO to DEBUG in these files.  This will fill
up disk space rapidly so remember to change it back when finished.

I'm wondering if your handle server works under 1.6.0?  Did you have a chance 
to try everything with 1.6.0?  You could try using the dsrun file from the 
1.6.0 release, but I'm very much guessing blindly now, so use at your own risk:

http://scm.dspace.org/svn/repo/dspace/tags/dspace-1.6.0/dspace/bin/dsrun


Also, are you starting the handle server from within the bin directory?  (I 
think that's the way it should be done).



- Original Message -
From: Tonny Hjelmberg Laursen thl@cbs.dk
To: Keith R Gilbertson keith.gilbert...@library.gatech.edu
Cc: dspace-tech@lists.sourceforge.net
Sent: Monday, May 24, 2010 9:38:51 AM GMT -05:00 US/Canada Eastern
Subject: Re: [Dspace-tech] Handle server problems after update to 1.6.1 from 
1.5.2

Thanks,

The error is gone now, but now I got another error in the log file (The 
handle server is still not running.)

Usage: program-name config-directory

The bin/start-handle-server line  looks like this now: nohup 
$BINDIR/dsrun net.handle.server.Main $handledir 
-Ddspace.log.init.disable=true 
-Dlog4j.configuration=log4j-handle-plugin.properties /dev/null  
$logdir/handle-server.log 21 

I can't find any other error messages. How can I enable somekind of 
debug logging?


On 24-05-2010 15:18, Gilbertson, Keith R wrote:
 Try editing the last line of your bin/start-handle-server script so that 
 net.handle.server.Main
 appears directly after dsrun (instead of where it is now).

 That should get rid of the Invalid class name: message.  If there are other 
 error messages after making this change, please post them to the list so that 
 experts on the dspace launcher command can research more.

 --keith


 - Original Message -
 From: Tonny Hjelmberg Laursenthl@cbs.dk
 To: dspace-tech@lists.sourceforge.net
 Sent: Monday, May 24, 2010 7:55:29 AM GMT -05:00 US/Canada Eastern
 Subject: [Dspace-tech] Handle server problems after update to 1.6.1 from 1.5.2

 Hey,

 Im in the middle of updating a DSpace installation and everything seems
 fine. But im having a problem with starting the handle server. When I
 execute bin/start-handle-server im getting this error in the
 handle-server logfile:

 Error in launcher.xml: Invalid class name: -Ddspace.log.init.disable=true

 Im running RedHat 5.5

 Any ideas?

 Thanks,
 Tonny





 --

 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech







--

___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server problems after update to 1.6.1 from 1.5.2

2010-05-24 Thread Tonny Hjelmberg Laursen
One of the things that I didn't test on the test server (1.6.0) was the 
handle-server. I have now replaced dsrun with the one from the 1.6.0 
source package and that seems to have fixed it.

Thanks alot for your help Keith ;)

I won't do anymore tests today, since it's a day off and I really need 
som fresh air. But I will be willing to do more testing tomorrow if it's 
needed, but it seemslike theres a bug here :(

Tonny



On 24-05-2010 16:23, keith.gilbert...@library.gatech.edu wrote:
 There are log4j configuration files in your config directory,
 including a separate one for the handle server.  However, I'm not sure
 that the handle server is being started in your case.

 You can change the word INFO to DEBUG in these files.  This will fill
 up disk space rapidly so remember to change it back when finished.

 I'm wondering if your handle server works under 1.6.0?  Did you have a chance 
 to try everything with 1.6.0?  You could try using the dsrun file from the 
 1.6.0 release, but I'm very much guessing blindly now, so use at your own 
 risk:

 http://scm.dspace.org/svn/repo/dspace/tags/dspace-1.6.0/dspace/bin/dsrun


 Also, are you starting the handle server from within the bin directory?  (I 
 think that's the way it should be done).



 - Original Message -
 From: Tonny Hjelmberg Laursenthl@cbs.dk
 To: Keith R Gilbertsonkeith.gilbert...@library.gatech.edu
 Cc: dspace-tech@lists.sourceforge.net
 Sent: Monday, May 24, 2010 9:38:51 AM GMT -05:00 US/Canada Eastern
 Subject: Re: [Dspace-tech] Handle server problems after update to 1.6.1 from 
 1.5.2

 Thanks,

 The error is gone now, but now I got another error in the log file (The
 handle server is still not running.)

 Usage:program-name  config-directory

 The bin/start-handle-server line  looks like this now: nohup
 $BINDIR/dsrun net.handle.server.Main $handledir
 -Ddspace.log.init.disable=true
 -Dlog4j.configuration=log4j-handle-plugin.properties/dev/null
 $logdir/handle-server.log 21

 I can't find any other error messages. How can I enable somekind of
 debug logging?


 On 24-05-2010 15:18, Gilbertson, Keith R wrote:

 Try editing the last line of your bin/start-handle-server script so that 
 net.handle.server.Main
 appears directly after dsrun (instead of where it is now).

 That should get rid of the Invalid class name: message.  If there are 
 other error messages after making this change, please post them to the list 
 so that experts on the dspace launcher command can research more.

 --keith


 - Original Message -
 From: Tonny Hjelmberg Laursenthl@cbs.dk
 To: dspace-tech@lists.sourceforge.net
 Sent: Monday, May 24, 2010 7:55:29 AM GMT -05:00 US/Canada Eastern
 Subject: [Dspace-tech] Handle server problems after update to 1.6.1 from 
 1.5.2

 Hey,

 Im in the middle of updating a DSpace installation and everything seems
 fine. But im having a problem with starting the handle server. When I
 execute bin/start-handle-server im getting this error in the
 handle-server logfile:

 Error in launcher.xml: Invalid class name: -Ddspace.log.init.disable=true

 Im running RedHat 5.5

 Any ideas?

 Thanks,
 Tonny





 --

 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech



  









--

___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server problems after update to 1.6.1 from 1.5.2

2010-05-24 Thread Gilbertson, Keith R
Goodness!  Enjoy the rest of the day!

We'll open a bug report and someone will find a better fix for you.


- Original Message -
From: Tonny Hjelmberg Laursen thl@cbs.dk
To: keith gilbertson keith.gilbert...@library.gatech.edu
Cc: dspace-tech@lists.sourceforge.net
Sent: Monday, May 24, 2010 10:38:06 AM GMT -05:00 US/Canada Eastern
Subject: Re: [Dspace-tech] Handle server problems after update to 1.6.1 from 
1.5.2

One of the things that I didn't test on the test server (1.6.0) was the 
handle-server. I have now replaced dsrun with the one from the 1.6.0 
source package and that seems to have fixed it.

Thanks alot for your help Keith ;)

I won't do anymore tests today, since it's a day off and I really need 
som fresh air. But I will be willing to do more testing tomorrow if it's 
needed, but it seemslike theres a bug here :(

Tonny



On 24-05-2010 16:23, keith.gilbert...@library.gatech.edu wrote:
 There are log4j configuration files in your config directory,
 including a separate one for the handle server.  However, I'm not sure
 that the handle server is being started in your case.

 You can change the word INFO to DEBUG in these files.  This will fill
 up disk space rapidly so remember to change it back when finished.

 I'm wondering if your handle server works under 1.6.0?  Did you have a chance 
 to try everything with 1.6.0?  You could try using the dsrun file from the 
 1.6.0 release, but I'm very much guessing blindly now, so use at your own 
 risk:

 http://scm.dspace.org/svn/repo/dspace/tags/dspace-1.6.0/dspace/bin/dsrun


 Also, are you starting the handle server from within the bin directory?  (I 
 think that's the way it should be done).



 - Original Message -
 From: Tonny Hjelmberg Laursenthl@cbs.dk
 To: Keith R Gilbertsonkeith.gilbert...@library.gatech.edu
 Cc: dspace-tech@lists.sourceforge.net
 Sent: Monday, May 24, 2010 9:38:51 AM GMT -05:00 US/Canada Eastern
 Subject: Re: [Dspace-tech] Handle server problems after update to 1.6.1 from 
 1.5.2

 Thanks,

 The error is gone now, but now I got another error in the log file (The
 handle server is still not running.)

 Usage:program-name  config-directory

 The bin/start-handle-server line  looks like this now: nohup
 $BINDIR/dsrun net.handle.server.Main $handledir
 -Ddspace.log.init.disable=true
 -Dlog4j.configuration=log4j-handle-plugin.properties/dev/null
 $logdir/handle-server.log 21

 I can't find any other error messages. How can I enable somekind of
 debug logging?


 On 24-05-2010 15:18, Gilbertson, Keith R wrote:

 Try editing the last line of your bin/start-handle-server script so that 
 net.handle.server.Main
 appears directly after dsrun (instead of where it is now).

 That should get rid of the Invalid class name: message.  If there are 
 other error messages after making this change, please post them to the list 
 so that experts on the dspace launcher command can research more.

 --keith


 - Original Message -
 From: Tonny Hjelmberg Laursenthl@cbs.dk
 To: dspace-tech@lists.sourceforge.net
 Sent: Monday, May 24, 2010 7:55:29 AM GMT -05:00 US/Canada Eastern
 Subject: [Dspace-tech] Handle server problems after update to 1.6.1 from 
 1.5.2

 Hey,

 Im in the middle of updating a DSpace installation and everything seems
 fine. But im having a problem with starting the handle server. When I
 execute bin/start-handle-server im getting this error in the
 handle-server logfile:

 Error in launcher.xml: Invalid class name: -Ddspace.log.init.disable=true

 Im running RedHat 5.5

 Any ideas?

 Thanks,
 Tonny





 --

 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech



  









--

___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server Problems

2010-03-11 Thread Graham Triggs
Sounds like you need to remove the lock file from the txns directory.

Regards,
G

On 11 March 2010 22:32, Cameron, Jacob jacob.came...@uleth.ca wrote:

  Our handle server has stopped responding.



 I’ve killed and restarted the process several times and had it working
 again this morning.  But it has died again this afternoon and I’m unable to
 resurrect it.  We just renewed our handle server so I know it’s not
 shutdown.  I have even tried restarting the server.



 Does anyone have any suggestions?



 --

 Jake Cameron, BCS(UNB)

 Technical Specialist III

 Information Systems and Technical Services

 University of Lethbridge Library

 Phone:(403)329-2756




 --
 Download Intel#174; Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server Process Stays at 100% CPU

2009-09-02 Thread pennington
Stuart,

Thanks for the quick and accurate reply. Yes, when I came in today (Sept 2nd), 
the CPU issue had gone away on its own, so it must have been date related.

I checked to see that my DSpace Source pom.xml is set to version 5.3.4, so I'll 
update that, maven, and the rest to get the fix in place. Maybe I'll wait until 
Oct 1st to try it, so that I can see if it fixes it! :-)

Thanks again for the excellent help with this issue...

--
Stacy Pennington
Rhodes College
penning...@rhodes.edu
(901) 843-3968


-Original Message-
From: Stuart Lewis [mailto:s.le...@auckland.ac.nz] 
Sent: Tuesday, September 01, 2009 6:25 PM
To: Pennington_Stacy; dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle Server Process Stays at 100% CPU

Hi Stacy,

 My big outstanding issue came after I rebooted the server to give it one last
 kick of the tires before calling the whole thing done. After the reboot,
 everything came back up, but the Java process that is the Handle Server (the
 thing that knows to serve up http://dlynx.rhodes.edu/jspui/handle/10267/2423
 when you hit http://hdl.handle.net/10267/2423 to view an object) has stayed at
 100% CPU.

 I think we are running version 6.2.5_02 of the handle server.
 
 Has anyone ever seen anything like this? Any clues as for what could be
 causing it or how to fix it?

Unless you have manually adjusted pom.xml, you will probably still be using
an older version of the handle server. This has been fixed in 1.6, and you
can make maven use the later 6.2 version by editing the relevant line in
[dspace-src]/pom.xml:

 dependency
groupIdorg.dspace/groupId
artifactIdhandle/artifactId
version6.2/version
 /dependency

This is likely to be the handle bug that hits on the first of the month some
times, where it constantly tries to roll over a log file. Upgrading to
version 6.2 of the handle server usually fixes this. Once you have adjusted
the pom.xml file, re-run mvn / ant etc. You should notice maven download the
new jar file.
 
 BTW, are others occasionally getting a dspace.org This site is down for
 maintenance. Please check back again soon message when going to
 http://www.dspace.org ? The wiki appears to be up and fine, but the main
 website gives this message quite a bit, at least today and yesterday.

AFAIK the hosting company are looking in to this as there have been some
problems with the site at their end.

Thanks,


Stuart Lewis
IT Innovations Analyst and Developer
Te Tumu Herenga The University of Auckland Library
Auckland Mail Centre, Private Bag 92019, Auckland 1142, New Zealand
Ph: 64 9 373-7599 x81928
http://www.library.auckland.ac.nz/


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server Process Stays at 100% CPU

2009-09-01 Thread Stuart Lewis
Hi Stacy,

 My big outstanding issue came after I rebooted the server to give it one last
 kick of the tires before calling the whole thing done. After the reboot,
 everything came back up, but the Java process that is the Handle Server (the
 thing that knows to serve up http://dlynx.rhodes.edu/jspui/handle/10267/2423
 when you hit http://hdl.handle.net/10267/2423 to view an object) has stayed at
 100% CPU.

 I think we are running version 6.2.5_02 of the handle server.
 
 Has anyone ever seen anything like this? Any clues as for what could be
 causing it or how to fix it?

Unless you have manually adjusted pom.xml, you will probably still be using
an older version of the handle server. This has been fixed in 1.6, and you
can make maven use the later 6.2 version by editing the relevant line in
[dspace-src]/pom.xml:

 dependency
groupIdorg.dspace/groupId
artifactIdhandle/artifactId
version6.2/version
 /dependency

This is likely to be the handle bug that hits on the first of the month some
times, where it constantly tries to roll over a log file. Upgrading to
version 6.2 of the handle server usually fixes this. Once you have adjusted
the pom.xml file, re-run mvn / ant etc. You should notice maven download the
new jar file.
 
 BTW, are others occasionally getting a dspace.org This site is down for
 maintenance. Please check back again soon message when going to
 http://www.dspace.org ? The wiki appears to be up and fine, but the main
 website gives this message quite a bit, at least today and yesterday.

AFAIK the hosting company are looking in to this as there have been some
problems with the site at their end.

Thanks,


Stuart Lewis
IT Innovations Analyst and Developer
Te Tumu Herenga The University of Auckland Library
Auckland Mail Centre, Private Bag 92019, Auckland 1142, New Zealand
Ph: 64 9 373-7599 x81928
http://www.library.auckland.ac.nz/


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] handle-server setup (psql)

2009-08-28 Thread François Parmentier
May I suggest to use update-handle-prefix?

On Fri, Aug 28, 2009 at 11:16 AM, Lewatle
Phaladilewatle.phal...@wits.ac.za wrote:
 Hi

 As my [dspace]/dspace/bin/update-handle-prefix gives error, I also come with
 an idea of modifying the handle table and change 123456789/ handle prefix

 I tried on one collection it worked, but I need an SQL statement that will
 update only 123456789 and leave other value, If you can check the values in
 handle table and specifically handle column start with prefix and followed
 by id like
 123456789/7135

 SQL statement that can alter our prefix (123456789) only in that column and
 leaves the id (/7135)

 I was using the statement :

 Table name is handle
 Column name is also handle

   dspace= UPDATE handle SET handle = '85642/7178' WHERE handle =
 '123456789/7178';

 that worked for updating single item,
 we need to update them simultaneously.

 Regards
 Lewatle





 -Original Message-
 From: Kim Shepherd [mailto:k...@waikato.ac.nz]
 Sent: Thu 8/27/2009 10:22 PM
 To: Lewatle Phaladi; dspace-tech@lists.sourceforge.net
 Subject: RE: [Dspace-tech] handle-server setup

 Hi Lewatle,



 In your [dspace]/bin directory, there is a script called
 update-handle-prefix



 If, for example, your new handle is 858585:



 [dspace]/bin/update-handle-prefix 123456789 858585



 This will update the old handles with a default handle prefix without
 bothering your new, correct items/collections/communities.



 Cheers,



 Kim



 From: Lewatle Phaladi [mailto:lewatle.phal...@wits.ac.za]
 Sent: Friday, 28 August 2009 1:42 a.m.
 To: dspace-tech@lists.sourceforge.net
 Subject: [Dspace-tech] handle-server setup



 Hi All

 I was setting up handle server for my University, and everything went well
 in such a way that changes apply only for new submissions, if we submit or
 import a file the file will take a new prefix not default like 123456789,

 What we really need is to change the default handle prefix e.g 123456789 to
 all our previous stored digital files and even to the new imported or
 submited file.

 Regards
 Lewatle

 This communication is intended for the addressee only. It is confidential.
 If you have received this communication in error, please notify us
 immediately and destroy the original message. You may not copy or
 disseminate this communication without the permission of the University.
 Only authorized signatories are competent to enter into agreements on behalf
 of the University and recipients are thus advised that the content of this
 message may not be legally binding on the University and may contain the
 personal views and opinions of the author, which are not necessarily the
 views and opinions of The University of the Witwatersrand, Johannesburg. All
 agreements between the University and outsiders are subject to South African
 Law unless the University agrees in writing to the contrary.




 This communication is intended for the addressee only. It is confidential.
 If you have received this communication in error, please notify us
 immediately and destroy the original message. You may not copy or
 disseminate this communication without the permission of the University.
 Only authorized signatories are competent to enter into agreements on behalf
 of the University and recipients are thus advised that the content of this
 message may not be legally binding on the University and may contain the
 personal views and opinions of the author, which are not necessarily the
 views and opinions of The University of the Witwatersrand, Johannesburg. All
 agreements between the University and outsiders are subject to South African
 Law unless the University agrees in writing to the contrary.

 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus
 on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] handle-server setup

2009-08-27 Thread Kim Shepherd
Hi Lewatle,

 

In your [dspace]/bin directory, there is a script called “update-handle-prefix”

 

If, for example, your new handle is 858585:

 

[dspace]/bin/update-handle-prefix 123456789 858585

 

This will update the old handles with a default handle prefix without bothering 
your new, correct items/collections/communities.

 

Cheers,

 

Kim

 

From: Lewatle Phaladi [mailto:lewatle.phal...@wits.ac.za] 
Sent: Friday, 28 August 2009 1:42 a.m.
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] handle-server setup

 

Hi All

I was setting up handle server for my University, and everything went well in 
such a way that changes apply only for new submissions, if we submit or import 
a file the file will take a new prefix not default like 123456789,

What we really need is to change the default handle prefix e.g 123456789 to all 
our previous stored digital files and even to the new imported or submited file.

Regards
Lewatle

This communication is intended for the addressee only. It is confidential. If 
you have received this communication in error, please notify us immediately and 
destroy the original message. You may not copy or disseminate this 
communication without the permission of the University. Only authorized 
signatories are competent to enter into agreements on behalf of the University 
and recipients are thus advised that the content of this message may not be 
legally binding on the University and may contain the personal views and 
opinions of the author, which are not necessarily the views and opinions of The 
University of the Witwatersrand, Johannesburg. All agreements between the 
University and outsiders are subject to South African Law unless the University 
agrees in writing to the contrary.

 

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server 6.2 installation

2009-08-03 Thread clive gould
Hi Stuart

There are quite a number of pom.xml files around in my DSpace installation.

I need to make sure I'm editing the right one ;)

[r...@standbyvle ~]# grep -RH handle /home/dspace/*/pom.xml
/home/dspace/dspace-1.5.1-release/pom.xml:
artifactIdhandle/artifactId
/home/dspace/dspace-1.5.2-release/pom.xml:
artifactIdhandle/artifactId
/home/dspace/dspace-1.5.2-src-release/pom.xml:
artifactIdhandle/artifactId

My best guess is /home/dspace/dspace-1.5.2-src-release/pom.xml

Am I right please?

Thanks

Clive


On Sun, Aug 2, 2009 at 10:24 PM, Stuart Lewiss.le...@auckland.ac.nz wrote:
 Hi Clive,

 That is one of the examples where our documentation is a little out of
 date (there is a concerted documentation effort going on for 1.6 which
 will hopefully improve on this situation).

 In 1.5+ where Maven is used as the build and dependency management
 system, you can instruct maven which version of the jar you wish to use,
 and it will download and install it for you.

 The required change can be seen at:

 http://scm.dspace.org/trac/dspace/changeset/3759/trunk/pom.xml

 Thanks,


 Stuart Lewis
 IT Innovations Analyst and Developer
 Te Tumu Herenga The University of Auckland Library
 Auckland Mail Centre, Private Bag 92019, Auckland 1142, New Zealand
 Ph: 64 9 373-7599 x81928
 http://www.library.auckland.ac.nz/



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server 6.2 installation

2009-08-03 Thread Claudia Jürgen
Hi Clive,

the directories you mentioned are different source directories (1.5.1, 
1.5.2 and 1.5.2 source release). You seem to have checked out different 
versions.

It depends which source is the base of your installation.

The dependency is in two pom's if you are using a source release:
- [dspace-source]/pom.xml
- [dspace-source]/dspace-api/pom.xml

Hope that helps

Claudia Jürgen


clive gould schrieb:
 Hi Stuart
 
 There are quite a number of pom.xml files around in my DSpace installation.
 
 I need to make sure I'm editing the right one ;)
 
 [r...@standbyvle ~]# grep -RH handle /home/dspace/*/pom.xml
 /home/dspace/dspace-1.5.1-release/pom.xml:
 artifactIdhandle/artifactId
 /home/dspace/dspace-1.5.2-release/pom.xml:
 artifactIdhandle/artifactId
 /home/dspace/dspace-1.5.2-src-release/pom.xml:
 artifactIdhandle/artifactId
 
 My best guess is /home/dspace/dspace-1.5.2-src-release/pom.xml
 
 Am I right please?
 
 Thanks
 
 Clive
 
 
 On Sun, Aug 2, 2009 at 10:24 PM, Stuart Lewiss.le...@auckland.ac.nz wrote:
 Hi Clive,

 That is one of the examples where our documentation is a little out of
 date (there is a concerted documentation effort going on for 1.6 which
 will hopefully improve on this situation).

 In 1.5+ where Maven is used as the build and dependency management
 system, you can instruct maven which version of the jar you wish to use,
 and it will download and install it for you.

 The required change can be seen at:

 http://scm.dspace.org/trac/dspace/changeset/3759/trunk/pom.xml

 Thanks,


 Stuart Lewis
 IT Innovations Analyst and Developer
 Te Tumu Herenga The University of Auckland Library
 Auckland Mail Centre, Private Bag 92019, Auckland 1142, New Zealand
 Ph: 64 9 373-7599 x81928
 http://www.library.auckland.ac.nz/


 
 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
 trial. Simplify your report design, integration and deployment - and focus on 
 what you do best, core application coding. Discover what's new with 
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server 6.2 installation

2009-08-03 Thread clive gould
Hi Claudia

I'm working with DSpace 1.5.2 built from source so the file must be
/home/dspace/dspace-1.5.2-src-release/pom.xml

This is the only file I can find which contains reference to the
version of the handle server. i.e.

dependency
groupIdorg.dspace/groupId
artifactIdhandle/artifactId
version5.3.4/version
/dependency

The other file you mentioned
(/home/dspace/dspace-1.5.2-src-release/dspace-api/pom.xml) does not
contain a reference to the specific version of the handle server.

dependency
 groupIdorg.dspace/groupId
artifactIdhandle/artifactId
/dependency

When I rebuild the DSpace installation later this month I'll give it a
go by changing the handle version to 6.2 in
/home/dspace/dspace-1.5.2-src-release/pom.xml

Thanks :)

Clive






2009/8/3 Claudia Jürgen claudia.juer...@ub.uni-dortmund.de:
 Hi Clive,

 the directories you mentioned are different source directories (1.5.1, 1.5.2
 and 1.5.2 source release). You seem to have checked out different versions.

 It depends which source is the base of your installation.

 The dependency is in two pom's if you are using a source release:
 - [dspace-source]/pom.xml
 - [dspace-source]/dspace-api/pom.xml

 Hope that helps

 Claudia Jürgen


 clive gould schrieb:

 Hi Stuart

 There are quite a number of pom.xml files around in my DSpace
 installation.

 I need to make sure I'm editing the right one ;)

 [r...@standbyvle ~]# grep -RH handle /home/dspace/*/pom.xml
 /home/dspace/dspace-1.5.1-release/pom.xml:
 artifactIdhandle/artifactId
 /home/dspace/dspace-1.5.2-release/pom.xml:
 artifactIdhandle/artifactId
 /home/dspace/dspace-1.5.2-src-release/pom.xml:
 artifactIdhandle/artifactId

 My best guess is /home/dspace/dspace-1.5.2-src-release/pom.xml

 Am I right please?

 Thanks

 Clive



--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server 6.2 installation

2009-08-02 Thread Stuart Lewis
Hi Clive,

That is one of the examples where our documentation is a little out of
date (there is a concerted documentation effort going on for 1.6 which
will hopefully improve on this situation).

In 1.5+ where Maven is used as the build and dependency management
system, you can instruct maven which version of the jar you wish to use,
and it will download and install it for you.

The required change can be seen at:

http://scm.dspace.org/trac/dspace/changeset/3759/trunk/pom.xml

Thanks,


Stuart Lewis
IT Innovations Analyst and Developer
Te Tumu Herenga The University of Auckland Library
Auckland Mail Centre, Private Bag 92019, Auckland 1142, New Zealand
Ph: 64 9 373-7599 x81928
http://www.library.auckland.ac.nz/


-Original Message-
From: clive gould [mailto:cli...@gmail.com] 
Sent: Friday, 31 July 2009 9:33 p.m.
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] Handle server 6.2 installation

Hi

I am looking at upgrading the handle system in our test installation
of DSpace 1.5.2 to version 6.2 later in August.

In the DSpace installation documentation it refers to:

If you decide to update, you should replace the existing handle.jar
in [dspace-source]/lib with the new version and rebuild your war
files.

I cannot locate an existing handle.jar file - the only file I can find
is handle-5.3.4.jar which exists in the following locations:-

/home/dspace/dspace-1.5.2-release/dspace/modules/jspui/target/jspui-1.5.
2/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-release/dspace/modules/lni/target/lni-1.5.2/WE
B-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-release/dspace/modules/oai/target/oai-1.5.2/WE
B-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-release/dspace/modules/sword/target/sword-1.5.
2/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-release/dspace/modules/xmlui/target/xmlui-1.5.
2/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-release/dspace/target/dspace-1.5.2-build.dir/l
ib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-release/dspace/target/dspace-1.5.2-build.dir/w
ebapps/jspui/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-release/dspace/target/dspace-1.5.2-build.dir/w
ebapps/lni/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-release/dspace/target/dspace-1.5.2-build.dir/w
ebapps/oai/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-release/dspace/target/dspace-1.5.2-build.dir/w
ebapps/sword/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-release/dspace/target/dspace-1.5.2-build.dir/w
ebapps/xmlui/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace/modules/jspui/target/jspui-
1.5.2/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace/modules/lni/target/lni-1.5.
2/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace/modules/oai/target/oai-1.5.
2/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace/modules/sword/target/sword-
1.5.2/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace/modules/xmlui/target/xmlui-
1.5.2/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.d
ir/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.d
ir/webapps/jspui/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.d
ir/webapps/lni/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.d
ir/webapps/oai/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.d
ir/webapps/sword/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace/target/dspace-1.5.2-build.d
ir/webapps/xmlui/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace-jspui/dspace-jspui-webapp/t
arget/dspace-jspui-webapp-1.5.2/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace-lni/dspace-lni-webapp/targe
t/dspace-lni-webapp-1.5.2/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace-oai/dspace-oai-webapp/targe
t/dspace-oai-webapp-1.5.2/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace-sword/dspace-sword-webapp/t
arget/dspace-sword-webapp-1.5.2/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/dspace-1.5.2-src-release/dspace-xmlui/dspace-xmlui-webapp/t
arget/dspace-xmlui-webapp-1.5.2/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/lib/handle-5.3.4.jar
/home/dspace/lib.bak-20090709-061925/handle-5.3.4.jar
/home/dspace/lib.bak-20090718-083852/handle-5.3.4.jar
/home/dspace/webapps/jspui/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/webapps/lni/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/webapps/oai/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/webapps/sword/WEB-INF/lib/handle-5.3.4.jar
/home/dspace/webapps/xmlui/WEB-INF/lib/handle-5.3.4.jar

If I want to rebuild DSpace from SOURCE which handle*.jar file do I
need to replace please?

Is it /home/dspace/lib/handle-5.3.4.jar that I need 

Re: [Dspace-tech] Handle Server problem

2009-03-09 Thread Hlias Stavrakis


The connection could take several minutes to be established.

I tried the solution proposed by Tom and seems to be ok.

Thanks,
Ilias


smime.p7s
Description: S/MIME Cryptographic Signature
--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server problem

2009-03-06 Thread Mark H. Wood
On Fri, Mar 06, 2009 at 04:34:58PM +0200, Hlias Stavrakis wrote:
 After an idle period without requests from clients, the attempt to create a 
 new connection to the database (postgreSQL) is extremely slow.  
 I have increased the maximum number of connections to the database to 300 
 (db.maxconnections = 300)   and the rest of the database configuration is:

 db.maxwait = 5000

 db.maxidle = 10

 db.statementpool = false

 The problem  is in DatabaseManager. When  the getConnection method is 
 called, the method

 DriverManager.getConnection(jdbc:apache:commons:dbcp: + poolName) does not 
 return in normal time.

How much time is extremely slow?  Busy-process slow?  Busy-network
slow?  Misconfigured-DNS-lookup slow?

This action passes through several different contexts:  the DSpace
process, at least one kernel network stack (two or more if your DBMS
is on a different host), and the database monitor process.  The delay
could be anywhere along that path.

How full is memory on the indicated host(s)?  Is it likely that pages
on this code path are being displaced by other demands, given the longer
interval?

-- 
Mark H. Wood, Lead System Programmer   mw...@iupui.edu
Friends don't let friends publish revisable-form documents.


smime.p7s
Description: S/MIME cryptographic signature
--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server problem

2009-03-06 Thread Thomas A McGee
We had a similar problem, only it was with Oracle. The first connection of the 
day, when we were still in set-up mode, would take two to three minutes to come 
up!

Our solution was to set up a cron job to wget the home page every 10 minutes 
or so. Since then, no problem. 

--Tom

--
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server

2009-02-03 Thread Claudia Jürgen
Hi Zaya,

if you want to use handles as persistent identifiers e.g. 
http://hdl.handle.net/2003/26015 you got to get a prefix from handle.net 
and register as a resolution service provider. There is a 50$ fee for 
getting the prefix and an additional annual 50$ fee for the resolving 
service see http://www.handle.net/service_agreement.html.

You can use dspace without having a real handle. Just don't create the 
handle as persistent identifier.

Hope that helps

Claudia Jürgen




Zaya Kh schrieb:
 hi all,
 I installed Dspace 1.5.1 on fedora, But i'm not understand handle server,
 i have a question,
 
 Must I have pay some money?
 
 Sorry, my English is not well
 
 Best regards, Zoloo
 
 
 
 
 
 --
 Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
 software. With Adobe AIR, Ajax developers can use existing skills and code to
 build responsive, highly engaging applications that combine the power of local
 resources and data with the reach of the web. Download the Adobe AIR SDK and
 Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com
 
 
 
 
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

--
Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
software. With Adobe AIR, Ajax developers can use existing skills and code to
build responsive, highly engaging applications that combine the power of local
resources and data with the reach of the web. Download the Adobe AIR SDK and
Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server

2009-02-03 Thread Robin Taylor
Hi Zoloo,

Yes you do need to pay something but its not a lot, something like $50. The 
Handle service is something provided by CNRI (see 
http://www.cnri.reston.va.us/index.html and http://www.handle.net/). Dspace has 
the Handle software integrated so you don't need to install the software, but 
you do need to create a file called a sitebndl that you send to CNRI. They will 
send you your handle, its just a number that uniquely identifies your site. Its 
been a while since I did this but there should be a script in Dspace to create 
the sitebndl file. I would suggest that you email CNRI, I have found them to be 
very helpful in the past.

I think it is better explained here in the Dspace docs 
http://www.dspace.org/1_5_1Documentation/ch03.html#N10AA9

Cheers, Robin.   


Robin Taylor
Main Library
University of Edinburgh
Tel. 0131 6515208  

 -Original Message-
 From: Zaya Kh [mailto:zayak...@gmail.com] 
 Sent: 03 February 2009 11:20
 To: dspace-tech
 Subject: [Dspace-tech] Handle server
 
 hi all,
 I installed Dspace 1.5.1 on fedora, But i'm not understand 
 handle server, i have a question, 
 
 Must I have pay some money?
 
 Sorry, my English is not well
 
 Best regards, Zoloo
 



-- 
The University of Edinburgh is a charitable body, registered in
Scotland, with registration number SC005336.


--
Create and Deploy Rich Internet Apps outside the browser with Adobe(R)AIR(TM)
software. With Adobe AIR, Ajax developers can use existing skills and code to
build responsive, highly engaging applications that combine the power of local
resources and data with the reach of the web. Download the Adobe AIR SDK and
Ajax docs to start building applications today-http://p.sf.net/sfu/adobe-com
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server starting problem

2009-01-28 Thread Claudia Jürgen
Hi Jozsef,

seems as if you're using gcj instead of jdk. Check the environment in 
which you are calling start-handle-server.

Hope that helps

Claudia Jürgen




Jozsef Gabor Bone schrieb:
 Dear Members!
 
 Unfortunately it seems, that in our site (http://snap.archivum.ws/dspace - 
 dspace. 1.4), the handle server is not running.
 If I click on a handle.net lin, it gives me the 'Error - Cannot Connect to 
 Server'.
 
 Unfortunately I'm a new colleague here, so who installed dspace has already 
 left us.
 
 I tried to start Handle Server in two ways:
 1. 
 osasite:~# /usr/local/dspace/bin/start-handle-server
 Nothing has happened, the error log said:
 
 2009/01/23 11:17:03 GMT+01:00 25 Started new run.
 Exception in thread main java.lang.NoClassDefFoundError: 
 net.handle.security.provider.SunJceHdlSecurityProvider
at java.lang.Class.initializeClass(libgcj.so.70)
at java.lang.Class.forName(libgcj.so.70)
at java.lang.Class.forName(libgcj.so.70)
at 
 net.handle.security.HdlSecurityProvider.getInstance(HdlSecurityProvider.java:36)
at net.handle.hdllib.Util.decrypt(Util.java:961)
at net.handle.server.HandleServer.init(HandleServer.java:270)
at net.handle.server.AbstractServer.getInstance(AbstractServer.java:74)
at net.handle.server.Main.initialize(Main.java:172)
at net.handle.server.Main.main(Main.java:96)
 Caused by: java.lang.ClassNotFoundException: com.sun.crypto.provider.SunJCE 
 not found in 
 gnu.gcj.runtime.SystemClassLoader{urls=[file:/usr/local/mysql-connec
 tor-java/mysql-connector-java-5.0.6-bin.jar,file:/usr/local/tomcat/lib/JavaBridge.jar,file:/usr/local/tomcat/lib/php-servlet.jar,file:/usr/local/tomcat/lib/p
 hp-script.jar,file:/usr/local/dspace/lib/PDFBox.jar,file:/usr/local/dspace/lib/activation.jar,file:/usr/local/dspace/lib/commons-cli.jar,file:/usr/local/dspa
 ce/lib/commons-codec-1.3.jar,file:/usr/local/dspace/lib/commons-collections.jar,file:/usr/local/dspace/lib/commons-dbcp.jar,file:/usr/local/dspace/lib/common
 s-fileupload.jar,file:/usr/local/dspace/lib/commons-pool.jar,file:/usr/local/dspace/lib/dspace.jar,file:/usr/local/dspace/lib/handle.jar,file:/usr/local/dspa
 ce/lib/jakarta-poi.jar,file:/usr/local/dspace/lib/jargon.jar,file:/usr/local/dspace/lib/jaxen-1.1-beta-7.jar,file:/usr/local/dspace/lib/jdom.jar,file:/usr/lo
 cal/dspace/lib/jena.jar,file:/usr/local/dspace/lib/jstl.jar,file:/usr/local/dspace/lib/log4j.jar,file:/usr/local/dspace/lib/lucene-sandbox.jar,file:/usr/loca
 l/dspace/lib/lucene.jar,file:/usr/local/dspace/lib/mail.jar,file:/usr/local/dspace/lib/mets.jar,file:/usr/local/dspace/lib/oaicat.jar,file:/usr/local/dspace/
 lib/oro.jar,file:/usr/local/dspace/lib/postgresql-8.2dev-503.jdbc3.jar,file:/usr/local/dspace/lib/rome.jar,file:/usr/local/dspace/lib/servlet.jar,file:/usr/l
 ocal/dspace/lib/standard.jar,file:/usr/local/dspace/lib/tm-extractors.jar,file:/usr/local/dspace/lib/xalan.jar,file:/usr/local/dspace/lib/xercesImpl.jar,file
 :/usr/local/dspace/lib/xml-apis.jar,file:/usr/local/dspace/config/], 
 parent=gnu.gcj.runtime.ExtensionClassLoader{urls=[], parent=null}}
at java.net.URLClassLoader.findClass(libgcj.so.70)
at gnu.gcj.runtime.SystemClassLoader.findClass(libgcj.so.70)
at java.lang.ClassLoader.loadClass(libgcj.so.70)
at java.lang.ClassLoader.loadClass(libgcj.so.70)
at java.lang.Class.forName(libgcj.so.70)
at java.lang.Class.initializeClass(libgcj.so.70)
...8 more
 
 2.
 java -cp /hs/bin/handle.jar net.handle.server.Main /hs/svr_1
 2009/01/23 11:20:30 GMT+01:00 25 Rotating log files
 
 The error log:
 2009/01/23 11:20:30 GMT+01:00 25 Started new run.
 Exception in thread main java.lang.NoClassDefFoundError: 
 net.handle.security.provider.SunJceHdlSecurityProvider
at java.lang.Class.initializeClass(libgcj.so.70)
at java.lang.Class.forName(libgcj.so.70)
at java.lang.Class.forName(libgcj.so.70)
at 
 net.handle.security.HdlSecurityProvider.getInstance(HdlSecurityProvider.java:36)
at net.handle.hdllib.Util.decrypt(Util.java:965)
at net.handle.server.HandleServer.init(HandleServer.java:285)
at net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
at net.handle.server.Main.initialize(Main.java:172)
at net.handle.server.Main.main(Main.java:96)
 Caused by: java.lang.ClassNotFoundException: com.sun.crypto.provider.SunJCE 
 not found in 
 gnu.gcj.runtime.SystemClassLoader{urls=[file:/hs/bin/handle.jar], pa
 rent=gnu.gcj.runtime.ExtensionClassLoader{urls=[], parent=null}}
at java.net.URLClassLoader.findClass(libgcj.so.70)
at gnu.gcj.runtime.SystemClassLoader.findClass(libgcj.so.70)
at java.lang.ClassLoader.loadClass(libgcj.so.70)
at java.lang.ClassLoader.loadClass(libgcj.so.70)
at java.lang.Class.forName(libgcj.so.70)
at java.lang.Class.initializeClass(libgcj.so.70)
...8 more
 
 To be honest, I have absolutely no idea where to start to debug this error!
 If anyone can advise me a good solution, I would be very pleased and thankful!
 
 

Re: [Dspace-tech] Handle Server starting problem

2009-01-28 Thread Van Ly
Have a look in /etc/rc.d or /etc/init.d and see if you've a script for 
stop/starting the handle server. On my system, I have the following

$ head /etc/init.d/handled
#!/bin/sh
#
# chkconfig: 345 86 14
# description: Starts and stops the handle service
#
# Source function library.
if [ -f /etc/init.d/functions ] ; then
. /etc/init.d/functions

-- Van Ly : University of Sydney Library




From: Jozsef Gabor Bone
Sent: Thu 29/01/2009 12:54 AM
To: dspace-tech@lists.sourceforge.net
Subject: [Dspace-tech] Handle Server starting problem


Dear Members!

Unfortunately it seems, that in our site (http://snap.archivum.ws/dspace - 
dspace. 1.4), the handle server is not running.
If I click on a handle.net lin, it gives me the 'Error - Cannot Connect to 
Server'.

Unfortunately I'm a new colleague here, so who installed dspace has already 
left us.

I tried to start Handle Server in two ways:
1. 
osasite:~# /usr/local/dspace/bin/start-handle-server
Nothing has happened, the error log said:


2.
java -cp /hs/bin/handle.jar net.handle.server.Main /hs/svr_1
2009/01/23 11:20:30 GMT+01:00 25 Rotating log files
--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] HANDLE server / Oracle / Firewall

2009-01-15 Thread Jordi Barrios

HI,

I solved my problem.

Looking the code of the HandlePluging, it on the method haveNA, do a
comprovation about the name authority that in my case allways return false,
then the server never follow the operations.

Adding the variable handle.plugin.checknameauthority to false on
dspace.cfg, this method return allways true and continue fine with the
process of resolution of the handle.

Thank you and I hope that this can help to others.


Jordi Barrios wrote:
 
 Hi Stuart,
 
 
 Stuart Lewis [sdl] wrote:
 
 Hi Tom,
 
 I have my handle server up and running, it¹s responding over the
 necessary
 ports. But it¹s not able to get the actual handles from my Oracle
 database.
 The database box is located across a firewall, and we¹ve already opened
 a
 port
 so that the DSpace application itself can communicate with it. Does the
 handle
 server require or use a separate port that we will need to open, or
 does it
 use a different protocol?
 Which logs would even contain the errors I'm looking for?
 
 Edit [dspace]/config/log4j-handle-plugin.properties and change it so that
 rather than logging at the INFO level it logs at the DEBUG level. That
 file
 will also tell you where the log file is, probably
 [dspace]/log/handle-plugin.log
 
 If you then restart the handle server (make sure all the old handle
 server
 processes are killed - there might be two of them) and start it again,
 debug-level logs should appear in that file. Hopefully these will help
 track
 down the problem.
 
 Thanks,
 
 
 Stuart
 _
 
 Gwasanaethau Gwybodaeth  Information Services
 Prifysgol Aberystwyth  Aberystwyth University
 
 E-bost / E-mail: stuart.le...@aber.ac.uk
  Ffon / Tel: (01970) 622860
 _
 
 
 --
 Check out the new SourceForge.net Marketplace.
 It is the best place to buy or sell services for
 just about anything Open Source.
 http://p.sf.net/sfu/Xq1LFB
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 
 
 
 I'm detecting the same problem.
 
 The installation of dspace works fine.
 Like Thomas I can do a telnet to 2641 or 8000 ports and the server
 respond.
 If I use the gui tools of handle server and I do a Home Naming Authority I
 can see the response of the server.
 If I query any handle from other entity like 10.1000/3 my server redirect
 to correct page, but if I query some local handle the client throw this
 exception
 
   sending HDL-TCP request (version=2.1; oc=1; rc=0; snId=0 caCrt noAuth
 10363/573 [ ] [ ]) to 213.73.40.217:2641
 Saving global values to: /home/jbarrios/.handle/root_info
 java.net.SocketTimeoutException: Read timed out
 
 
 
 Changing the loglevel to DEBUG the application don't show more info. 
 
 Any suggestion to solve this throuble ?
 
 
 

-- 
View this message in context: 
http://www.nabble.com/HANDLE-server---Oracle---Firewall-tp21338385p21477847.html
Sent from the DSpace - Tech mailing list archive at Nabble.com.


--
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] HANDLE server / Oracle / Firewall

2009-01-14 Thread Jordi Barrios

Hi Stuart,


Stuart Lewis [sdl] wrote:
 
 Hi Tom,
 
 I have my handle server up and running, it¹s responding over the
 necessary
 ports. But it¹s not able to get the actual handles from my Oracle
 database.
 The database box is located across a firewall, and we¹ve already opened
 a
 port
 so that the DSpace application itself can communicate with it. Does the
 handle
 server require or use a separate port that we will need to open, or does
 it
 use a different protocol?
 Which logs would even contain the errors I'm looking for?
 
 Edit [dspace]/config/log4j-handle-plugin.properties and change it so that
 rather than logging at the INFO level it logs at the DEBUG level. That
 file
 will also tell you where the log file is, probably
 [dspace]/log/handle-plugin.log
 
 If you then restart the handle server (make sure all the old handle server
 processes are killed - there might be two of them) and start it again,
 debug-level logs should appear in that file. Hopefully these will help
 track
 down the problem.
 
 Thanks,
 
 
 Stuart
 _
 
 Gwasanaethau Gwybodaeth  Information Services
 Prifysgol Aberystwyth  Aberystwyth University
 
 E-bost / E-mail: stuart.le...@aber.ac.uk
  Ffon / Tel: (01970) 622860
 _
 
 
 --
 Check out the new SourceForge.net Marketplace.
 It is the best place to buy or sell services for
 just about anything Open Source.
 http://p.sf.net/sfu/Xq1LFB
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
 
 

I'm detecting the same problem.

The installation of dspace works fine.
Like Thomas I can do a telnet to 2641 or 8000 ports and the server respond.
If I use the gui tools of handle server and I do a Home Naming Authority I
can see the response of the server.
If I query any handle from other entity like 10.1000/3 my server redirect to
correct page, but if I query some local handle the client throw this
exception

  sending HDL-TCP request (version=2.1; oc=1; rc=0; snId=0 caCrt noAuth
10363/573 [ ] [ ]) to 213.73.40.217:2641
Saving global values to: /home/jbarrios/.handle/root_info
java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at
net.handle.hdllib.HandleResolver.sendHdlTcpRequest(HandleResolver.java:1740)
at
net.handle.hdllib.HandleResolver.sendRequestToInterface(HandleResolver.java:1294)
at
net.handle.hdllib.HandleResolver.sendRequestToServerByProtocol(HandleResolver.java:1033)
at
net.handle.hdllib.HandleResolver.sendRequestToSite(HandleResolver.java:849)
at
net.handle.hdllib.HandleResolver.sendRequestToService(HandleResolver.java:747)
at
net.handle.hdllib.HandleResolver.processRequestGlobally(HandleResolver.java:544)
at
net.handle.hdllib.HandleResolver.processRequest(HandleResolver.java:519)
at
net.handle.hdllib.HandleResolver.processRequest(HandleResolver.java:529)
at
net.handle.apps.gui.hadmin.HandleTool$ProcessRequest.run(HandleTool.java:578)
at net.handle.awt.TaskIndicator.run(TaskIndicator.java:99)
at java.lang.Thread.run(Thread.java:619)
  sending HDL-HTTP request (version=2.1; oc=1; rc=0; snId=0 caCrt noAuth
10363/573 [ ] [ ]) to 213.73.40.217:8000
java.net.SocketTimeoutException: Read timed out
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(SocketInputStream.java:129)
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
at java.io.BufferedInputStream.read(BufferedInputStream.java:237)
at java.io.DataInputStream.readLine(DataInputStream.java:496)
at
net.handle.hdllib.HandleResolver.sendHttpRequest(HandleResolver.java:1930)
at
net.handle.hdllib.HandleResolver.sendRequestToInterface(HandleResolver.java:1297)
at
net.handle.hdllib.HandleResolver.sendRequestToServerByProtocol(HandleResolver.java:1033)
at
net.handle.hdllib.HandleResolver.sendRequestToSite(HandleResolver.java:849)
at
net.handle.hdllib.HandleResolver.sendRequestToService(HandleResolver.java:747)
at
net.handle.hdllib.HandleResolver.processRequestGlobally(HandleResolver.java:544)
at
net.handle.hdllib.HandleResolver.processRequest(HandleResolver.java:519)
at
net.handle.hdllib.HandleResolver.processRequest(HandleResolver.java:529)
at
net.handle.apps.gui.hadmin.HandleTool$ProcessRequest.run(HandleTool.java:578)
at net.handle.awt.TaskIndicator.run(TaskIndicator.java:99)
at java.lang.Thread.run(Thread.java:619)
HandleException (CANNOT_CONNECT_TO_SERVER) Error talking to 213.73.40.217
at

Re: [Dspace-tech] HANDLE server / Oracle / Firewall

2009-01-09 Thread Stuart Lewis
Hi Tom,

 I have my handle server up and running, it¹s responding over the necessary
 ports. But it¹s not able to get the actual handles from my Oracle database.
 The database box is located across a firewall, and we¹ve already opened a port
 so that the DSpace application itself can communicate with it. Does the handle
 server require or use a separate port that we will need to open, or does it
 use a different protocol?

The Handle system should use the same configuration as the rest of DSpace as
defined in dspace.cfg.

What are the symptoms you are seeing? (which bits work, and which do not?
What do the log files say?)

Thanks,


Stuart
_

Gwasanaethau Gwybodaeth  Information Services
Prifysgol Aberystwyth  Aberystwyth University

E-bost / E-mail: stuart.le...@aber.ac.uk
 Ffon / Tel: (01970) 622860
_


--
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] HANDLE server / Oracle / Firewall

2009-01-09 Thread Stuart Lewis
Hi Tom,

 I have my handle server up and running, it¹s responding over the necessary
 ports. But it¹s not able to get the actual handles from my Oracle database.
 The database box is located across a firewall, and we¹ve already opened a
 port
 so that the DSpace application itself can communicate with it. Does the
 handle
 server require or use a separate port that we will need to open, or does it
 use a different protocol?
 Which logs would even contain the errors I'm looking for?

Edit [dspace]/config/log4j-handle-plugin.properties and change it so that
rather than logging at the INFO level it logs at the DEBUG level. That file
will also tell you where the log file is, probably
[dspace]/log/handle-plugin.log

If you then restart the handle server (make sure all the old handle server
processes are killed - there might be two of them) and start it again,
debug-level logs should appear in that file. Hopefully these will help track
down the problem.

Thanks,


Stuart
_

Gwasanaethau Gwybodaeth  Information Services
Prifysgol Aberystwyth  Aberystwyth University

E-bost / E-mail: stuart.le...@aber.ac.uk
 Ffon / Tel: (01970) 622860
_


--
Check out the new SourceForge.net Marketplace.
It is the best place to buy or sell services for
just about anything Open Source.
http://p.sf.net/sfu/Xq1LFB
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server and Multiple DSpace Instances

2008-12-29 Thread mikan.d.dspace listmail
Setting up separate handle servers for each DSpace instance is rather
simple; just set up individual configurations and define different
ports for each, say 2641, 2642 and so on. This is propably the easiest
and as far as I know the only way to listen to multiple ports.


-Mika


2008/12/29 Mr Havercamp mrhaverc...@gmail.com:
 I have a server hosting multiple DSpace instances and set them up using
 the instructions outlined at
 http://wiki.dspace.org/index.php/MultipleDspaceOneServer. Two or more of
 the customers I'm hosting the instances for would like to use a global
 handle and so I'm wondering whether this is possible.

 As far as I know (and please correct me if I'm wrong) I need to have a
 local handle server listen on port 2641 and that a handle server belongs
 to a single DSpace instance.

 What I would like to know is whether I can have a single handle server
 manage handles for multiple DSpace instances and where I might find
 information on going about setting this up. If this is not the case,
 will I need to run a handle server for each instance on a unique port?

 I'd preferably like to implement the former as I'm hoping to make this
 an automated service and don't at to have to manage multiple handle
 servers listening on multiple ports.

 Any help much appreciated.

 --
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


--
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server died

2008-10-20 Thread Graham Triggs
Hi George,

So, you opted to use encryption in the simple setup?

Looks like the encrypted file that was generated is/has become corrupt. 
But this is all entirely with the CNRI provided code (and the JVM).

I would contact CNRI for support.

G

George Kozak wrote:
 Hi...

 Two weeks ago I moved my DSpace instance from one server to
 another.  I set up my new sitebndl.zip and contacted CNRI and got my
 new handle-server running.  I had one day where it seemed to be
 giving me troubles, but I restarted everything and then all was
 well.  This morning, it died.  I have tried to restart it several
 times, but it keeps shutting down.  This is a snippet of the errors that I 
 see:
 javax.crypto.BadPaddingException: Given final block not properly padded
   at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
   at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
   at com.sun.crypto.provider.DESCipher.engineDoFinal(DashoA12275)
   at javax.crypto.Cipher.doFinal(DashoA12275)
   at
 net.handle.security.provider.GenericProvider.decrypt_DES_ECB_PKCS5(GenericProvider.java:146)
   at net.handle.hdllib.Util.decrypt(Util.java:1078)
   at net.handle.server.HandleServer.init(HandleServer.java:306)
   at
 net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
   at net.handle.server.Main.initialize(Main.java:152)
   at net.handle.server.Main.main(Main.java:75)
 Unable to initialize server signature object: java.lang.Exception:
 Incorrect passphrase
 java.lang.Exception: Incorrect passphrase
  at net.handle.hdllib.Util.decrypt(Util.java:1083)
   at net.handle.server.HandleServer.init(HandleServer.java:306)
   at
 net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
   at net.handle.server.Main.initialize(Main.java:152)
   at net.handle.server.Main.main(Main.java:75)
 Shutting down...

 Does anyone have any clues as to what may be wrong?  I didn't change
 anything since I started things a couple of weeks ago.


 ***
 George Kozak
 Coordinator
 Web Development and Management
 Digital Media Group
 501 Olin Library
 Cornell University
 607-255-8924
 ***
 [EMAIL PROTECTED]


 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
 Build the coolest Linux based applications with Moblin SDK  win great prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech


 
 
This e-mail is confidential and should not be used by anyone who is not the 
original intended recipient. BioMed Central Limited does not accept liability 
for any statements made which are clearly the sender's own and not expressly 
made on behalf of BioMed Central Limited. No contracts may be concluded on 
behalf of BioMed Central Limited by means of e-mail communication. BioMed 
Central Limited Registered in England and Wales with registered number 3680030 
Registered Office Middlesex House, 34-42 Cleveland Street, London W1T 4LB
This email has been scanned by Postini.
For more information please visit http://www.postini.com


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server died

2008-10-20 Thread George Kozak
Thanks, Graham:

I don't remember picking encryption when I rebuilt my handle server, 
but I must have.  In any case, I will contact CNRI.

At 10:17 AM 10/20/2008, Graham Triggs wrote:
Hi George,

So, you opted to use encryption in the simple setup?

Looks like the encrypted file that was generated is/has become corrupt.
But this is all entirely with the CNRI provided code (and the JVM).

I would contact CNRI for support.

G

George Kozak wrote:
  Hi...
 
  Two weeks ago I moved my DSpace instance from one server to
  another.  I set up my new sitebndl.zip and contacted CNRI and got my
  new handle-server running.  I had one day where it seemed to be
  giving me troubles, but I restarted everything and then all was
  well.  This morning, it died.  I have tried to restart it several
  times, but it keeps shutting down.  This is a snippet of the 
 errors that I see:
  javax.crypto.BadPaddingException: Given final block not properly padded
at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
at com.sun.crypto.provider.DESCipher.engineDoFinal(DashoA12275)
at javax.crypto.Cipher.doFinal(DashoA12275)
at
  
 net.handle.security.provider.GenericProvider.decrypt_DES_ECB_PKCS5(GenericProvider.java:146)
at net.handle.hdllib.Util.decrypt(Util.java:1078)
at net.handle.server.HandleServer.init(HandleServer.java:306)
at
  net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
at net.handle.server.Main.initialize(Main.java:152)
at net.handle.server.Main.main(Main.java:75)
  Unable to initialize server signature object: java.lang.Exception:
  Incorrect passphrase
  java.lang.Exception: Incorrect passphrase
   at net.handle.hdllib.Util.decrypt(Util.java:1083)
at net.handle.server.HandleServer.init(HandleServer.java:306)
at
  net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
at net.handle.server.Main.initialize(Main.java:152)
at net.handle.server.Main.main(Main.java:75)
  Shutting down...
 
  Does anyone have any clues as to what may be wrong?  I didn't change
  anything since I started things a couple of weeks ago.
 
 
  ***
  George Kozak
  Coordinator
  Web Development and Management
  Digital Media Group
  501 Olin Library
  Cornell University
  607-255-8924
  ***
  [EMAIL PROTECTED]
 
 
  -
  This SF.Net email is sponsored by the Moblin Your Move 
 Developer's challenge
  Build the coolest Linux based applications with Moblin SDK  win 
 great prizes
  Grand prize is a trip for two to an Open Source event anywhere in the world
  http://moblin-contest.org/redirect.php?banner_id=100url=/
  ___
  DSpace-tech mailing list
  DSpace-tech@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/dspace-tech




This e-mail is confidential and should not be used by anyone who is 
not the original intended recipient. BioMed Central Limited does not 
accept liability for any statements made which are clearly the 
sender's own and not expressly made on behalf of BioMed Central 
Limited. No contracts may be concluded on behalf of BioMed Central 
Limited by means of e-mail communication. BioMed Central Limited 
Registered in England and Wales with registered number 3680030 
Registered Office Middlesex House, 34-42 Cleveland Street, London W1T 4LB
This email has been scanned by Postini.
For more information please visit http://www.postini.com


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech

***
George Kozak
Coordinator
Web Development and Management
Digital Media Group
501 Olin Library
Cornell University
607-255-8924
***
[EMAIL PROTECTED] 


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server died

2008-10-20 Thread George Kozak
Hi...

It turns out that to fix my problem I had to rebuild my sitebndl.zip 
file and send it to CNRI.  Jane Euler at CNRI was very helpful and 
now my handle server is working.  I am not sure what happened since 
the timestamps had not changed on my public and private keys, but in 
any case, all is fine.


George Kozak wrote:
  Hi...
 
  Two weeks ago I moved my DSpace instance from one server to
  another.  I set up my new sitebndl.zip and contacted CNRI and got my
  new handle-server running.  I had one day where it seemed to be
  giving me troubles, but I restarted everything and then all was
  well.  This morning, it died.  I have tried to restart it several
  times, but it keeps shutting down.  This is a snippet of the 
 errors that I see:
  javax.crypto.BadPaddingException: Given final block not properly padded
at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
at com.sun.crypto.provider.SunJCE_h.b(DashoA12275)
at com.sun.crypto.provider.DESCipher.engineDoFinal(DashoA12275)
at javax.crypto.Cipher.doFinal(DashoA12275)
at
  
 net.handle.security.provider.GenericProvider.decrypt_DES_ECB_PKCS5(GenericProvider.java:146)
at net.handle.hdllib.Util.decrypt(Util.java:1078)
at net.handle.server.HandleServer.init(HandleServer.java:306)
at
  net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
at net.handle.server.Main.initialize(Main.java:152)
at net.handle.server.Main.main(Main.java:75)
  Unable to initialize server signature object: java.lang.Exception:
  Incorrect passphrase
  java.lang.Exception: Incorrect passphrase
   at net.handle.hdllib.Util.decrypt(Util.java:1083)
at net.handle.server.HandleServer.init(HandleServer.java:306)
at
  net.handle.server.AbstractServer.getInstance(AbstractServer.java:72)
at net.handle.server.Main.initialize(Main.java:152)
at net.handle.server.Main.main(Main.java:75)
  Shutting down...
 
  Does anyone have any clues as to what may be wrong?  I didn't change
  anything since I started things a couple of weeks ago.
 
 
  ***
  George Kozak
  Coordinator
  Web Development and Management
  Digital Media Group
  501 Olin Library
  Cornell University
  607-255-8924
  ***
  [EMAIL PROTECTED]
 
 
  -
  This SF.Net email is sponsored by the Moblin Your Move 
 Developer's challenge
  Build the coolest Linux based applications with Moblin SDK  win 
 great prizes
  Grand prize is a trip for two to an Open Source event anywhere 
 in the world
  http://moblin-contest.org/redirect.php?banner_id=100url=/
  ___
  DSpace-tech mailing list
  DSpace-tech@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/dspace-tech




This e-mail is confidential and should not be used by anyone who is 
not the original intended recipient. BioMed Central Limited does 
not accept liability for any statements made which are clearly the 
sender's own and not expressly made on behalf of BioMed Central 
Limited. No contracts may be concluded on behalf of BioMed Central 
Limited by means of e-mail communication. BioMed Central Limited 
Registered in England and Wales with registered number 3680030 
Registered Office Middlesex House, 34-42 Cleveland Street, London W1T 4LB
This email has been scanned by Postini.
For more information please visit http://www.postini.com


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech

***
George Kozak
Coordinator
Web Development and Management
Digital Media Group
501 Olin Library
Cornell University
607-255-8924
***
[EMAIL PROTECTED]

***
George Kozak
Coordinator
Web Development and Management
Digital Media Group
501 Olin Library
Cornell University
607-255-8924
***
[EMAIL PROTECTED] 


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net

Re: [Dspace-tech] Handle server

2008-08-21 Thread Claudia Jürgen
Hi Zico,

did you run [dspace]/bin/make-handle-config ?
See [dspace]/docs/install.html The Handle Server for details about the 
handle system in DSpace and it's setting up.

Claudia




Zico schrieb:
 Hi,
 We are trying to generate the handle system for our university`s dspace
 server. We completed our all official jobs for that. Now, they told us to
 send our sitebnld file. Now, i haven`t get anything regarding sitebnld by
 google. So, can you please help me regarding this? Any link or info or
 something like that? What is it actually?
 
 
 
 
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
 Build the coolest Linux based applications with Moblin SDK  win great prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 
 
 
 
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server

2008-08-21 Thread Robin Taylor
Hi Zico,

It’s a typo, it should be sitebndl, I believe its short for 'site bundle'.
Follow Claudia's guidance and it will produce the file.

Cheers, Robin.
 


-- 
The University of Edinburgh is a charitable body, registered in
Scotland, with registration number SC005336.


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Claudia
Jürgen
Sent: 21 August 2008 11:08
To: Zico
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle server

Hi Zico,

did you run [dspace]/bin/make-handle-config ?
See [dspace]/docs/install.html The Handle Server for details about the
handle system in DSpace and it's setting up.

Claudia




Zico schrieb:
 Hi,
 We are trying to generate the handle system for our university`s 
 dspace server. We completed our all official jobs for that. Now, they 
 told us to send our sitebnld file. Now, i haven`t get anything 
 regarding sitebnld by google. So, can you please help me regarding 
 this? Any link or info or something like that? What is it actually?
 
 
 
 --
 --
 
 --
 --- This SF.Net email is sponsored by the Moblin Your Move Developer's 
 challenge Build the coolest Linux based applications with Moblin SDK  
 win great prizes Grand prize is a trip for two to an Open Source event 
 anywhere in the world 
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 
 
 --
 --
 
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great
prizes Grand prize is a trip for two to an Open Source event anywhere in the
world http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server fails to connect on dspace 1.4.1

2008-01-04 Thread Nigel Pegus
Hello Yin,

I have a system with an internal IP mapped to an external IP both of
which CNRI are aware of(we had a test server that worked fine..). The
prefix entry seams fine in config file and it doesn't look like there
any hanging java threads..
The version of Java I used conflicted with a default java that came with
our O/S originally but that was solved by making an entry in the
Environmental Variables I am thinking about changing the java now...

I have included below an entry I noticed in the handle-server error log
when I start the handle-server. There is no notification of an error
otherwise...
I am wandering what socket closed is referring to.?

Thanks again for any input

Nigel

2008/01/04 02:52:47 GMT 25 Started new run.
Saving global values to: /root/.handle/root_info
2008/01/04 02:52:48 GMT 50 unspecified max_handlers count, using
default: 200
2008/01/04 02:52:48 GMT 50 unspecified max_handlers count, using
default: 200
2008/01/04 02:52:48 GMT 50 unspecified max_handlers count, using
default: 200
2008/01/04 02:52:56 GMT 25 Shutting down server at Fri Jan 04 14:52:56
GMT 2008
Error (java.lang.ThreadDeath) writing class
net.handle.server.HdlTcpInterface: Error handling request:
java.net.SocketException: Socket closed to error log.
2008/01/04 02:52:56 GMT 75 class net.handle.server.HdlHttpInterface:
Error handling request: java.net.SocketException: Socket closed
java.net.SocketException: Socket closed
at java.net.PlainSocketImpl.socketAccept(Native Method)
at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:384)
at java.net.ServerSocket.implAccept(ServerSocket.java:450)
at java.net.ServerSocket.accept(ServerSocket.java:421)
at
net.handle.server.HdlTcpInterface.serveRequests(HdlTcpInterface.java:155
)
at
net.handle.server.NetworkInterface.run(NetworkInterface.java:150)
at java.lang.Thread.run(Thread.java:595)
~

-Original Message-
From: Yin Latt [mailto:[EMAIL PROTECTED] 
Sent: Thursday, January 03, 2008 6:19 PM
To: dspace-tech@lists.sourceforge.net
Cc: Nigel Pegus
Subject: RE: DSpace-tech Digest, Vol 21, Issue 3

Hi Nigel,


1. Do you have different IP address for external and internal firewall?

Here is some info for handle installation
http://www.linuxtraining.org.uk/blogger.html#two

2. When you edit prefix in dspace.cfg, please make sure there is no
extra space or hidden character behind your handle prefix (2139)

3. Checking any java hanging process that was left by your previous
stop/start of your handle server.

Hope this will help.

Cheers,
Yin Yin
Digital Services
University of Auckland Library
Phone +64-9-3737599 Ext 88251

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, 3 January 2008 9:21 a.m.
To: dspace-tech@lists.sourceforge.net
Subject: DSpace-tech Digest, Vol 21, Issue 3

Send DSpace-tech mailing list submissions to
dspace-tech@lists.sourceforge.net

To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/dspace-tech
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]

You can reach the person managing the list at
[EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than Re: Contents of DSpace-tech digest...


Today's Topics:

   1. Re: Handle Server fails to connect on dspace 1.4.1 (Nigel Pegus)
   2. not displaying all three questions on Submit:Describe this
  Item (Maike Dulk)


--

Message: 1
Date: Wed, 2 Jan 2008 14:06:45 -0400
From: Nigel Pegus [EMAIL PROTECTED]
Subject: Re: [Dspace-tech] Handle Server fails to connect on dspace
1.4.1
To: Claudia J?rgen [EMAIL PROTECTED]
Cc: dspace-tech@lists.sourceforge.net
Message-ID:

[EMAIL PROTECTED]
Content-Type: text/plain;   charset=iso-8859-1

Hello and Happy New Yr to you too Claudia :)

I edited dspace.cfg but could not get make-handle-config to run so I ran
command dspace/bin/dsrun net.handle.server.SimpleSetup
/dspace/handle-server which was listed in older instructions to create
the handle server config..that worked... then started server with
command dspace/bin/dsrun net.handle.server.Main /dspace/handle-server. I
sent the new sitebndl to CNRI and they updated our records. They are
getting a cannot connect error but we have verified the ports 2641 and
8000 are open so we are at somewhat of a standstill on options..

Thanks for your response,
Nigel

-Original Message-
From: Claudia J?rgen [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 02, 2008 12:30 PM
To: Nigel Pegus
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle Server fails to connect on dspace
1.4.1

Hi Nigel,


first a Happy New Year.

So you edited dspace.cfg to include the handle prefix and then ran 
dspace]/bin/make-handle-config and started the handle

Re: [Dspace-tech] Handle Server fails to connect on dspace 1.4.1

2008-01-02 Thread Claudia Jürgen
Hi Nigel,


first a Happy New Year.

So you edited dspace.cfg to include the handle prefix and then ran 
dspace]/bin/make-handle-config and started the handle server with 
[dspace]/bin/start-handle-server.

Did you register the sitebndl.zip with 
http://hdl.handle.net/4263537/5014 after you ran make-handle-config?

Claudia



Nigel Pegus schrieb:
 Hi
 
 Hello,
 
 I have confirmed that ports 2641 and 8000 had been opened.. Telnet is
 off on my Linux system but I can connect to the system using ssh and a
 program called putty. I'm assuming the ports are therefore not an issue.
 Tried running the handle update prefix script also, even though the
 prefix was already correct and we hadn't made any entries prior to
 setting up handle server(I had edited the config file in advance with
 our pre existing prefix from our test server).
 
 Any more insight will be greatly appreciated
 
 Thanks for your input
 
 Nigel
 
 -Original Message-
 From: Graham Triggs [mailto:[EMAIL PROTECTED] 
 Sent: Monday, December 24, 2007 1:16 PM
 To: Nigel Pegus
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Handle Server fails to connect on dspace
 1.4.1
 
 Hi,
 
 Can you telnet to that machine / ports - both from the machine itself, 
 from the wider network, and from the even wider internet?
 
 Then you'll know if there is a firewall / port binding issue, which 
 would be the most obvious / easiest to resolve problem.
 
 Next, check that you actually have handles with the correct prefix in 
 the database - if you've got old items prior to receiving a prefix, you 
 have to ensure that they are migrated to the prefix 
 (/dspace/bin/update-handle-prefix).
 
 G
 
 Nigel Pegus wrote:
 Hello all,

 I am running dspace 1.4.1 on Linux Enterprise AS v3 update6

 I originally had a problem setting up the handle server with the 
 provided script, having gotten around that (I ran command 
 /dspace/bin/dsrun net.handle.server.Main /dspace/handle-server instead
 
 of /dspace/bin/make-handle-config) I am unable to resolve any handles.
 
 I have updated my config.dct with the required entries (see contents 
 below). I noted that I had to create the storage_type and 
 storage_class entries as opposed to just filling in the appropriate 
 vals after the = sign and wandered if that is a sign of a setup 
 problem on my end... To the best of my knowledge ports 2641 and 8000
 are 
 opened to the wider internet. Is there something I have overlooked?

 num_threads = 15

 bind_port = 2641

 backlog = 5

 log_accesses = yes

 }

 log_save_config = {

 log_save_weekday = N/A

 log_save_time = 02:00:00

 log_save_directory = /dspace/handle-server/logs

 log_save_interval = Monthly

 }

 no_udp_resolution = y

 interfaces = (

 hdl_udp

 hdl_tcp

 hdl_http

 )

 server_config = {

 server_admins = (

 300:0.NA/2139

 )

 replication_admins = (

 300:0.NA/2139

 )

 max_session_time = 8640

 this_server_id = 1

 max_auth_time = 6

 backup_admins = (

 300:0.NA/2139

 )

 case_sensitive = no

 storage_type = CUSTOM

 storage_class = org.dspace.handle.HandlePlugin

 }

 }

 Thanks for any input,

 **/Nigel Pegus/**

 **/Main Library, Systems Unit/**

 **/The University of the West Indies/**

 **/ext: 2241/**


 

 
 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2005.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/

 
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
   
 
 This email has been scanned by Postini.
 For more information please visit http://www.postini.com
 
 
 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2005.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech

-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server fails to connect on dspace 1.4.1

2008-01-02 Thread Nigel Pegus
Hello and Happy New Yr to you too Claudia :)

I edited dspace.cfg but could not get make-handle-config to run so I ran 
command dspace/bin/dsrun net.handle.server.SimpleSetup /dspace/handle-server 
which was listed in older instructions to create the handle server config..that 
worked... then started server with command dspace/bin/dsrun 
net.handle.server.Main /dspace/handle-server. I sent the new sitebndl to CNRI 
and they updated our records. They are getting a cannot connect error but we 
have verified the ports 2641 and 8000 are open so we are at somewhat of a 
standstill on options..

Thanks for your response,
Nigel

-Original Message-
From: Claudia Jürgen [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, January 02, 2008 12:30 PM
To: Nigel Pegus
Cc: dspace-tech@lists.sourceforge.net
Subject: Re: [Dspace-tech] Handle Server fails to connect on dspace 1.4.1

Hi Nigel,


first a Happy New Year.

So you edited dspace.cfg to include the handle prefix and then ran 
dspace]/bin/make-handle-config and started the handle server with 
[dspace]/bin/start-handle-server.

Did you register the sitebndl.zip with 
http://hdl.handle.net/4263537/5014 after you ran make-handle-config?

Claudia



Nigel Pegus schrieb:
 Hi
 
 Hello,
 
 I have confirmed that ports 2641 and 8000 had been opened.. Telnet is
 off on my Linux system but I can connect to the system using ssh and a
 program called putty. I'm assuming the ports are therefore not an issue.
 Tried running the handle update prefix script also, even though the
 prefix was already correct and we hadn't made any entries prior to
 setting up handle server(I had edited the config file in advance with
 our pre existing prefix from our test server).
 
 Any more insight will be greatly appreciated
 
 Thanks for your input
 
 Nigel
 
 -Original Message-
 From: Graham Triggs [mailto:[EMAIL PROTECTED] 
 Sent: Monday, December 24, 2007 1:16 PM
 To: Nigel Pegus
 Cc: dspace-tech@lists.sourceforge.net
 Subject: Re: [Dspace-tech] Handle Server fails to connect on dspace
 1.4.1
 
 Hi,
 
 Can you telnet to that machine / ports - both from the machine itself, 
 from the wider network, and from the even wider internet?
 
 Then you'll know if there is a firewall / port binding issue, which 
 would be the most obvious / easiest to resolve problem.
 
 Next, check that you actually have handles with the correct prefix in 
 the database - if you've got old items prior to receiving a prefix, you 
 have to ensure that they are migrated to the prefix 
 (/dspace/bin/update-handle-prefix).
 
 G
 
 Nigel Pegus wrote:
 Hello all,

 I am running dspace 1.4.1 on Linux Enterprise AS v3 update6

 I originally had a problem setting up the handle server with the 
 provided script, having gotten around that (I ran command 
 /dspace/bin/dsrun net.handle.server.Main /dspace/handle-server instead
 
 of /dspace/bin/make-handle-config) I am unable to resolve any handles.
 
 I have updated my config.dct with the required entries (see contents 
 below). I noted that I had to create the storage_type and 
 storage_class entries as opposed to just filling in the appropriate 
 vals after the = sign and wandered if that is a sign of a setup 
 problem on my end... To the best of my knowledge ports 2641 and 8000
 are 
 opened to the wider internet. Is there something I have overlooked?

 num_threads = 15

 bind_port = 2641

 backlog = 5

 log_accesses = yes

 }

 log_save_config = {

 log_save_weekday = N/A

 log_save_time = 02:00:00

 log_save_directory = /dspace/handle-server/logs

 log_save_interval = Monthly

 }

 no_udp_resolution = y

 interfaces = (

 hdl_udp

 hdl_tcp

 hdl_http

 )

 server_config = {

 server_admins = (

 300:0.NA/2139

 )

 replication_admins = (

 300:0.NA/2139

 )

 max_session_time = 8640

 this_server_id = 1

 max_auth_time = 6

 backup_admins = (

 300:0.NA/2139

 )

 case_sensitive = no

 storage_type = CUSTOM

 storage_class = org.dspace.handle.HandlePlugin

 }

 }

 Thanks for any input,

 **/Nigel Pegus/**

 **/Main Library, Systems Unit/**

 **/The University of the West Indies/**

 **/ext: 2241/**


 

 
 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2005.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/

 
 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
   
 
 This email has been scanned by Postini.
 For more information please visit http://www.postini.com
 
 
 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2005.
 http://clk.atdmt.com/MRT/go

Re: [Dspace-tech] Handle server + funky firewall

2007-09-19 Thread Graham Triggs
On Tue, 2007-09-18 at 22:16 +0100, [EMAIL PROTECTED] wrote:
 On the configuration wizard, i gave the external IP, and sent the zip
 file to handle.net
 Then, I've changed in config.dct the bind_address the external IP to
 the 10.x.x.x 

Yes, you should initially register the external IP address.

Note that you can simply remove the bind_address entry from the
config.dct, and the handle server will bind to all available addresses
on that machine.

G
This email has been scanned by Postini.
For more information please visit http://www.postini.com


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server + funky firewall

2007-09-18 Thread E. Stuart Hicks
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Well, this is what I had to do just to get it to start up.  The latest
on this is that the handle server starts and seems alright; however, it
absolutely _refuses_ to accept the fact that it's the authority for our
handle subdomain.

We opted to use a setup like 1234.abc where the numbers are our
top-level domain and the letters after the period are the institution
code that we're setting DSpace up for.  Handle.net seems to be perfectly
fine with this less-than-common setup but I'm wondering how happy DSpace
is with it.

Since DSpace replaces the handle.net database backend with its own, not
only does 1234.abc need to be compatible with handle.net (something I
checked on before registering it) but also with the DSpace code.  Unless
I hear back on here, I'm going to post to the developers list tomorrow
asking this very question and, if I turn out to be correct, how soon
they could have a bug fix patch ready.

I think I'll also mention how nice it would be if the next version of
DSpace used the handle.net daemon's API rather than hijacking its entire
backend.

- --
E. Stuart Hicks
Access Manager / Systems Engineer
OhioLINK
[EMAIL PROTECTED]


[EMAIL PROTECTED] wrote:
 I had this problem while our Dspace was in the internal network.
 
 It had an internal addr 10.x.x.x, and an external IP, that would be
 translated to it's internal IP, to all outside requests.
 
 What was the problem with the handle:
 
 Since you have an external IP you have to configure that external IP in
 the handle.net, but you cannot start the deamon because the machine has
 an internal IP, and not the one you providade to handle.net
 
   To test the handle server i did a little workaround. Don't know if all
 the users agree with this situation, or if there's a better situation,
 but i did the following:
 
 On the configuration wizard, i gave the external IP, and sent the zip
 file to handle.net
 Then, I've changed in config.dct the bind_address the external IP to
 the 10.x.x.x
 
 Then, started the handle and everything was working. The only problem i
 had: When you are on the internal network and you acess you Dspace by
 it's internal IP, when acessing via handle, will go to it's external IP.
 Altough it's untested, you can avoid this by using it's name, instead
 the IP.
 
 Hope this helps,
 
 Marcelo
 
 Citando E. Stuart Hicks [EMAIL PROTECTED]:
 
 We have a rather unorthidox firewall setup and I'm having problems
 getting the DSpace handle.net server to work through it.
 
 Basically, the DSpace server doesn't actually know what its
 world-accessable IP is - it's on a 10. IP and has its traffic
 translated/routed by a firewall.  This appears to cause problems with
 the handle.net service and I'm not even able to home it properly.  Has
 anyone encountered this before and been able to come up with a viable
 solution that didn't require overhauling the network configuration?
 
 Frankly, we would prefer to put the handle service on an entirely
 separate box because this will not be the only DSpace instance that
 we'll be hosting; however, that doesn't appear to be an option right
 now.  Does anyone know if 1.5 will support this?
 
 Any help at all is appreciated.  We have an end-of-the-week deadline to
 meet and this is the final hurdle to overcome.
 
 
 --
 E. Stuart Hicks
 Access Manager / Systems Engineer
 OhioLINK
 [EMAIL PROTECTED]


- -
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech



 

 -
 This SF.net email is sponsored by: Microsoft
 Defy all challenges. Microsoft(R) Visual Studio 2005.
 http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/


 

 ___
 DSpace-tech mailing list
 DSpace-tech@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/dspace-tech
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.7 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFG8G/yqmBbivzHElIRAnAuAKCLOg7SARthuca+bfv5wGfj32zOXQCfReeD
9yQWwU6QD2/KxYJBrzRVMwI=
=QDII
-END PGP SIGNATURE-


-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net

Re: [Dspace-tech] Handle Server - passphrase

2007-07-30 Thread Rafa Carreres
Hi,

In order to remove the password from the Handle Server you can run  the 
Key Util program. 

It allows decrypting and encrypting of private key files. It can be 
invoked using the command:  

|java -cp handle.jar net.handle.apps.tools.KeyUtil privkey.bin|

|After that, you can choose from a menu:
|

|Choose an operation:|

| 1: Encrypt private key with passphrase|

| 2: Save private key without encryption|

| 3: Exit
|

|and then restart the Handle Server without typing the password
|


Regards.

-- 

Rafael Carreres Paredes.  | [EMAIL PROTECTED] 
Área UNIX.| http://www.ua.es/es/servicios/si/
Servicio de Informática.  | +34-965903400 [ext] 2925
Universidad de Alicante.  | +34-965903499
Ctra. San Vicente s/n. Apdo.99, 03080 Alicante. Spain.



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle Server

2007-07-28 Thread Christian Voelker
Hello,

Am 28.07.2007 um 04:14 schrieb [EMAIL PROTECTED]:
 I'm testing the handle server system, but the start-handle-server  
 doesn't allow me to write the passphrase for my certificates.
I guess this is the same as discussed two days ago:

http://sourceforge.net/mailarchive/forum.php?forum_name=dspace- 
techstyle=threaded

Bye, Christian




-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server error

2007-06-14 Thread Sam Alloing
To answer my own question: The problem was that I used my external IP
address of my router in the configuration file. I had to use the
internal IP address (192)

Sam


 I'm trying to setup a Handle server but I get an error in the error.log:

 100 class net.handle.server.HdlUdpInterface: Error setting up server
 socket: java.net.BindException: Can't assign requested address
 ...

-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] handle server on windows

2007-06-01 Thread Graham Triggs
Hi Karen,

The Unix script won't work (it might be OK under Cygwin) - you can
convert to dos, but if the logged in session is exited, the console app
*will* be closed and the handle server shutdown.

The best way to run the handle server under Windows is to install it as
a service. There isn't anything provided 'out of the box' to do this,
but it's actually quite easy to achieve with the Java Service Wrapper

http://wrapper.tanukisoftware.org/doc/english/introduction.html

You should download this and install it somewhere on your server. Then
create a configuration file for it - I've attached a template for you to
get started. You will need to replace the @@@@ sections with
appropriate values at least.

IMPORTANT: This is used to start the wrapper, and won't have access to
the dspace.cfg at this point, so you MUST define the full correct path
names explicitly.

Then, from the wrapper's bin directory, run:

wrapper -i path.to.configuration.file

to install the service.

As it stands, the template will set the service to automatically start
with windows. You can manually start / stop it by running 'net start' or
'net stop'  with the value defined for wrapper.ntservice.name - ie:

net stop handleServerDSPACE

(given the name in the template configuration file).

Or, you can control the service from the services control panel.

G

On Fri, 2007-06-01 at 15:23 +0200, karen janssens wrote:
 Hello,
 
 I've installed DSpace on my personal computer (running windowsXP) in order to
 explore its possibilities as part of an assignment for my Library and
 Information Science study.
 I really would like to install the Handle Server as well, but ran into
 problems when trying to actually start the server.
 When executing the command 'start-handle-server', i get the message 
 The name specified is not recognized as an internal or external command,
 operable program or batch file.
 
 I tried already to convert the unix-commands into dos-commands (but have
 problems with the nohup). 
 
 Also I tried to follow the instructions on handle.net (they give windows/dos 
 commands), but then I encouter the error:
 java.lang.ClassNotFoundException: org.dspace.handle.HandlePlugin
 
 Does anyone have an idea what could be the best way to make Handle run in 
 DSpace and under Windows?
 
 Thanks very much!!
 
 Karen
 
 
 
#
# Wrapper Properties
#

# Give app 5 minutes to startup
wrapper.startup.timeout=300

# This is a hack - it can't run the lock file as a command, but it will remove 
it after 5 seconds ;-)
wrapper.commandfile=@@dspace.dir@@\handle-server\txns\lock

# Java Application
wrapper.java.command=@@path.to.java.exe@@

# Java Main class.  This class must implement the WrapperListener interface
#  or guarantee that the WrapperManager class is initialized.  Helper
#  classes are provided to do this for you.  See the Integration section
#  of the documentation for details.
wrapper.java.mainclass=org.tanukisoftware.wrapper.WrapperSimpleApp

# Java Classpath (include wrapper.jar)  Add class path elements as
#  needed starting from 1
wrapper.java.classpath.1=@@path.to.wrapper.jar - this is where you installed 
the wrapper service@@
wrapper.java.classpath.2=@@dspace.dir@@\config
wrapper.java.classpath.3=@@dspace.dir@@\lib\*.jar

# Java Library Path (location of Wrapper.DLL or libwrapper.so)
wrapper.java.library.path.1=@@path.to.the.lib.directory.within.the.wrapper.installation@@

# Java Additional Parameters
wrapper.java.additional.1=-Dlog4j.configuration=log4j-handle-plugin.properties

# Initial Java Heap Size (in MB)
#wrapper.java.initmemory=3

# Maximum Java Heap Size (in MB)
wrapper.java.maxmemory=256

# Application parameters.  Add parameters as needed starting from 1
wrapper.app.parameter.1=net.handle.server.Main
wrapper.app.parameter.2=@@dspace.dir@@\handle-server

wrapper.working.dir=@@dspace.dir@@\bin

#
# Wrapper Logging Properties
#
# Format of output for the console.  (See docs for formats)
wrapper.console.format=PM

# Log Level for console output.  (See docs for log levels)
wrapper.console.loglevel=INFO

# Log file to use for wrapper output logging.
wrapper.logfile=@@dspace.dir@@\logs\wrapper.log

# Format of output for the log file.  (See docs for formats)
wrapper.logfile.format=LPTM

# Log Level for log file output.  (See docs for log levels)
wrapper.logfile.loglevel=INFO

# Maximum size that the log file will be allowed to grow to before
#  the log is rolled. Size is specified in bytes.  The default value
#  of 0, disables log rolling.  May abbreviate with the 'k' (kb) or
#  'm' (mb) suffix.  For example: 10m = 10 megabytes.
wrapper.logfile.maxsize=5m

# Maximum number of rolled log files which will be allowed before old
#  files are deleted.  The 

Re: [Dspace-tech] handle server necessary?

2007-05-08 Thread Kyle Brentnell

Hello Eric,

snip
I can see that the handle URI can be edited _after_ submission, but is 
there some way of disabling it automatically so that the admin does not 
have to edit each and every article/paper/report submission?

/snip

There is a patch available that makes DSpace use a local URL instead of a 
handle server URL, but you will need to apply it and rebuild DSpace.  It is 
available here:

http://sourceforge.net/tracker/index.php?func=detailaid=1597225group_id=19984atid=319984



snip
What does the handle URI provide that the local item page does not?
/snip

At a basic level, the reason for using a handle server is to get a 
persistent URL for your DSpace content.  Your Dspace URL contains machine 
names and domain name(s) that may change for the course of years and 
decades.  The hope with using a handle server URL is that it will never 
change, even if the DSpace URL changes.


Kyle


PS:  You are likely aware of this, but your existing URL 
http://localhost:8080..  will only work on the DSpace server.  The URL 
will not work on other machines.  Update the dspace.url and 
dspace.hostname in your DSpace config file resolve this issue.




At / À 04:54 PM 08/05/2007, Eric Anderson wrote / a écrit:

Hello all!  Fresh DSpace user here, first posting to the list.  Question:
The handle URI's point to bogus locations (ie: 
http://hdl.handle.net/123456789/5http://hdl.handle.net/123456789/5 ).  I 
understand that this is by design and I've read the Handle Server section 
of the Advanced Install instructions.  Is there a way to get around the 
$100 on the handle prefix through CNRI?  --Is it possible to set the 
article submissions not to include the http://handle.nethandle.net 
URI?  I can see that the handle URI can be edited _after_ submission, but 
is there some way of disabling it automatically so that the admin does not 
have to edit each and every article/paper/report submission?


Although we're in the evaluating stages of DSpace, this will eventually be 
a production-level University service offering.  Is there any reason why 
it would be beneficial to retain the handle server in such a case?  I'm 
not sure I understand the difference between the handle server and local 
item pages.  For example, the local item page for one article is 
http://localhost:8080/dspace/handle/123456789/5http://localhost:8080/dspace/handle/123456789/5 
and the handle URI for this same page is 
http://hdl.handle.net/123456789/5http://hdl.handle.net/123456789/5 
What does the handle URI provide that the local item page does not?  I've 
been to http://handle.nethandle.net and I've read that handles resolve 
into the information necessary to locate, access, contact, authenticate, 
or otherwise make use of the resources.  Doesn't the localhost URL do 
just the same?


I appreciate any advice given.  Thank you kindly!



-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech
-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech


Re: [Dspace-tech] Handle server error

2007-04-17 Thread marcelo.carius
Tiago,
can you try execute a command, on prompt: telnet ip server handle port , to 
identify a response of server. If has any problem, you will contact a MIT. If 
the telnet sucess, return for identify other possible problem.

[]'s
Marcelo Carius

On Tue, 17 Apr 2007 15:16:51 -0300, Tiago Ferreira wrote
 I´m getting this error, when starting my handle server
 
 2007/04/17 02:46:00 BRT 100 class net.handle.server.HdlUdpInterface: Error 
 setting up server socket: java.net.BindException: Cannot assign requested 
 address: Cannot bind
 2007/04/17 02:46:00 BRT 100 class net.handle.server.HdlUdpInterface: Error 
 setting up server socket: java.net.BindException: Cannot assign requested 
 address: Cannot bind
 2007/04/17 02:46:00 BRT 100 class net.handle.server.HdlTcpInterface: Error 
 setting up server socket: java.net.BindException: Cannot assign requested 
 address: JVM_Bind
 2007/04/17 02:46:00 BRT 100 class net.handle.server.HdlTcpInterface: Error 
 setting up server socket: java.net.BindException: Cannot assign requested 
 address: JVM_Bind
 2007/04/17 02:46:00 BRT 100 class net.handle.server.HdlHttpInterface: Error 
 setting up server socket: java.net.BindException: Cannot assign requested 
 address: JVM_Bind
 2007/04/17 02:46:00 BRT 100 class net.handle.server.HdlHttpInterface: Error 
 setting up server socket: java.net.BindException: Cannot assign requested 
 address: JVM_Bind
 
 Any Ideas?
 
 Thanks in advance
 Tiago Ferreira

 
-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
DSpace-tech mailing list
DSpace-tech@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-tech