Thursday, October 17, 2019

Creating New Users in DSpace

If you have not configured email with DSpace, then you can create User in DSpace using bellow command line:

Open terminal in Ubuntu.

issue the below commands:

/home/dspace/bin/dspace user --add --email youremilID -g FirstName -s LastName --password yourpassword


No comments:

Create Superuser in Mysql

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