Friday, July 17, 2015

Creating a new user account in DSpace

[dspace]/bin/dspace user --add --email openbharat@gmail.com -g bharat -s User --password abcdefg
[dspace]/bin/dspace user --add --netid bharat --telephone 999-999-999 --password abcdefg

To See the list of users

[dspace]/bin/dspace user --list


To modify an account:


[dspace]/bin/dspace user --modify -m opedinesh@gmail.com




To delete an account


[dspace]/bin/dspace user --delete -n bharat

Create Superuser in Mysql

Login MySQL using mysql -u root -p CREATE USER 'superuser'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGE...