Posts

Showing posts with the label Dspace 6

Dspace Statistics Report Generate

 Dspace Statistics Report Generate Change the directory cd {dspace-DIR} /bin/ Ex. cd /dspace/bin Run the below commands one by one  ./dspace index-discovery -b ./dspace stat-initial ./dspace stat-report-initial ./dspace stat-general ./dspace stat-monthly ./dspace stat-report-monthly ./dspace stat-report-general Then log in to your dspace ( http://localhost:8080 ) go to statistics to view the all report.

Restrict access to logged-in users only in Dspace

 Restrict access to logged-in users only in Dspace 1. Login as an Admin 2. Edit the Item or Community 3. Click on "Authorizations..." button (on the Right-Side Item Status tab) 4. Find the Bitstream (File) access policy and click on the "ID" column. (for Community Restriction add E-people or E-Group in READ Access only.) 5. Change the Group from "Anonymous" (which means anyone can access it) to a different Group 6. Save the changes

Customize the logo and header in XMLUI interface

 Customize the XMLUI interface Open following file in a terminal, sudo su sudo gedit /opt/tomcat/webapps/xmlui/i18n/messages.xml  Find the line (Line no.27) (Change the location bar title) <message key="xmlui.general.dspace_home">P SG College of Technology </message> Find the line  (Line no. 2170) <message key="xmlui.dri2xhtml.structural.head-subtitle"> DSpace Repository </message> Change the text Dspace Repository Save and close the file.  Prepare a logo as follows (125x74 pixel). Place the image in home folder. Open a Linux Terminal and apply following command to copy the logo image to the folder. cp logo.png /opt/tomcat/webapps/xmlui/themes/Mirage/images Open the css file to change the logo image attribute. Open a terminal and apply following command.  Here Dspace webapps directory located in /opt/tomcat/.  Dspace webapps may be located in /dspace folder.  Confirm it before the execution of the below command; sudo gedit /opt/tomcat/webapp

Dspace 6 JSPUI Customization

 Replace the default DSpace Branding Heading and Dspace logo Install Locater   sudo apt install mlocate Change The ''Dspace at My University'' from the Location bar Apply the following command to open configure file sudo gedit /dspace/config/dspace.cfg Create a Header image, Put it in the home folder, and Copy it into the jspui/image folder from the home folder. cp header.png /opt/tomcat/webapps/jspui/image Open the terminal, log in with the root user and apply the following command to open the file. sudo gedit /opt/tomcat/webapps/jspui/layout/header-default.jsp Find the below lines in the file and comment with the tags ( <%--   --%> )    <%-- <div class="container banner">     <div class="row">         <div class="col-md-9 brand">             <h1><fmt:message key="jsp.layout.header-default.brand.heading" /></h1>             <fmt:message key="jsp.layout.header-default.brand.de

Install Dspace-6.3 or 6.4 on Ubuntu 20.04

Image
How to Install Dspace-6.3 on Ubuntu   sudo apt-get update sudo apt-get upgrade sudo apt-get install git git --version sudo add-apt-repository ppa:git-core/ppa sudo apt update; apt install git sudo apt-get install openjdk-8-jdk sudo apt-get install maven sudo apt-get install ant   Add Postgresql Source file location sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'   Add Postgresql Key wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - sudo apt-get update   Install Postgresql -9.6 Version sudo apt-get install postgresql-9.6   sudo su postgres createuser --username=postgres --no-superuser --pwprompt dspace createdb --username=postgres --owner=dspace --encoding=UNICODE -T template0 dspace psql --username=postgres dspace -c "CREATE EXTENSION pgcrypto;" exit sudo gedit /etc/postgresql/9.6/ma

Install Dspace 6.3 on Windows10

Image
Install Dspace 6.3 on Windows10 Pre-Requisite Software: i) Java JDK ii) Apache Maven iii) Apache Ant iv) Apache Tomcat v) PostgreSQL vi) Dspace Step-1: Download Java jdk-8u111-windows-x64.exe from below link. ( Note: If you are new to Oracle, you need to create user account otherwise you can log in to download the software).     https://www.oracle.com/java/technologies/javase/javase8-archive-downloads.html Step-2: Download apache-maven-3.3.9-bin.zip file from below link. https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.3.9/ Step-3: Download apache-ant-1.9.7-bin.zip file from below link.              https://archive.apache.org/dist/ant/binaries/ Step-4: Download apache-tomcat-9.0.0.M13.exe file from below link. https://archive.apache.org/dist/tomcat/tomcat-9/v9.0.0.M13/bin/ Step-5: Download postgresql-9.4.26-1-windows-x64.exe file from below link. https://www.enterprisedb.com/downloads/postgres-postgresql-downloads Step-6: Dow

Total views