create-administrator ... makes an admin user in dspace
This cmd line function steps you though creating a admmin user in dspace
location:
/usr/local/dspace-sr-dev/bin/create-administrator
I had to make changes to the script documented below:
###########################################################################
# Shell script creating a starting administrator account
# Get the DSPACE/bin directory
BINDIR=`dirname $0`
#*****************************************************************
# Within the dspace.jar for Agecon there was no class called:
# edu.umn.dspace.administer.CreateAdministrator
# however I found a class called:
# org/dspace/administer/CreateAdministrator
# I used that jar and this script worked properly
#
#
#$BINDIR/dsrun edu.umn.dspace.administer.CreateAdministrator
#
# J Silvis
# 29 Nov 2007
#*****************************************************************
$BINDIR/dsrun org/dspace/administer/CreateAdministrator
location:
/usr/local/dspace-sr-dev/bin/create-administrator
I had to make changes to the script documented below: