-
Notifications
You must be signed in to change notification settings - Fork 500
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 2391-file-edit-tags
- Loading branch information
Showing
129 changed files
with
5,192 additions
and
1,107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# RFI Checklist | ||
|
||
_**Before** submitting the pull request, fill out sections (1.) Related Issues and (2.) Pull Request Checklist._ | ||
|
||
### 1. Related Issues | ||
|
||
_List and [link](https://guides.github.com/features/issues/#notifications) to the issues in this Pull Request._ | ||
|
||
- [#### + Title HERE] | ||
|
||
--- | ||
### 2. Pull Request Checklist | ||
|
||
- [ ] Functionality completed as described in FRD | ||
- [ ] Dependencies, risks, assumptions in FRD addressed | ||
- [ ] Unit tests completed | ||
- [ ] Deployment requirements identified (e.g., SQL scripts, indexing) | ||
- [ ] Documentation completed | ||
- [ ] All code checkins completed | ||
|
||
--- | ||
### 3. Review Checklist | ||
|
||
_**After** the pull request has been submitted, fill out this section._ | ||
|
||
- [ ] Code review completed or waived | ||
- [ ] Testing requirements completed | ||
- [ ] Usability testing completed or waived | ||
- [ ] Support testing completed or waived | ||
- [ ] Merged with develop branch and resolved conflicts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
doc/sphinx-guides/source/_static/installation/files/etc/init.d/glassfish
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#! /bin/sh | ||
# chkconfig: 2345 99 01 | ||
# description: GlassFish App Server | ||
|
||
set -e | ||
|
||
ASADMIN=/usr/local/glassfish4/bin/asadmin | ||
|
||
case "$1" in | ||
start) | ||
echo -n "Starting GlassFish server: glassfish" | ||
# Increase file descriptor limit: | ||
ulimit -n 32768 | ||
# Allow "memory overcommit": | ||
# (basically, this allows to run exec() calls from inside the | ||
# app, without the Unix fork() call physically hogging 2X | ||
# the amount of memory glassfish is already using) | ||
echo 1 > /proc/sys/vm/overcommit_memory | ||
|
||
#echo | ||
#echo "GLASSFISH IS UNDER MAINTENANCE;" | ||
#echo "PLEASE DO NOT USE service init script." | ||
#echo | ||
LANG=en_US.UTF-8; export LANG | ||
$ASADMIN start-domain domain1 | ||
echo "." | ||
;; | ||
stop) | ||
echo -n "Stopping GlassFish server: glassfish" | ||
#echo | ||
#echo "GLASSFISH IS UNDER MAINTENANCE;" | ||
#echo "PLEASE DO NOT USE service init script." | ||
#echo | ||
|
||
$ASADMIN stop-domain domain1 | ||
echo "." | ||
;; | ||
|
||
*) | ||
echo "Usage: /etc/init.d/glassfish {start|stop}" | ||
exit 1 | ||
esac | ||
|
||
exit 0 |
35 changes: 35 additions & 0 deletions
35
doc/sphinx-guides/source/_static/installation/files/etc/init.d/solr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
**** | ||
#!/bin/sh | ||
|
||
# Starts, stops, and restarts Apache Solr. | ||
# | ||
# chkconfig: 35 92 08 | ||
# description: Starts and stops Apache Solr | ||
|
||
SOLR_DIR="/usr/local/solr-4.6.0/example" | ||
JAVA_OPTIONS="-Xmx1024m -DSTOP.PORT=8079 -DSTOP.KEY=mustard -jar start.jar" | ||
LOG_FILE="/var/log/solr.log" | ||
JAVA="/usr/bin/java" | ||
|
||
case $1 in | ||
start) | ||
echo "Starting Solr" | ||
cd $SOLR_DIR | ||
$JAVA $JAVA_OPTIONS 2> $LOG_FILE & | ||
;; | ||
stop) | ||
echo "Stopping Solr" | ||
cd $SOLR_DIR | ||
$JAVA $JAVA_OPTIONS --stop | ||
;; | ||
restart) | ||
$0 stop | ||
sleep 1 | ||
$0 start | ||
;; | ||
*) | ||
echo "Usage: $0 {start|stop|restart}" >&2 | ||
exit 1 | ||
;; | ||
esac | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
Use to fix hidden section headers behind the navbar when using links with targets | ||
See: http://stackoverflow.com/questions/10732690/offsetting-an-html-anchor-to-adjust-for-fixed-header | ||
*/ | ||
$jqTheme(document).ready(function() { | ||
$jqTheme('a[href*=#]:not([href=#])').on('click', function() { | ||
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') | ||
&& location.hostname == this.hostname) { | ||
var target = $jqTheme(this.hash); | ||
target = target.length ? target : $('a.headerlink[href="#' + this.hash.slice(1) +'""]'); | ||
if (target.length) { | ||
$jqTheme('html,body').animate({ | ||
scrollTop: target.offset().top - 60 //offsets for fixed header | ||
}, 1000); | ||
return false; | ||
} | ||
} | ||
}); | ||
//Executed on page load with URL containing an anchor tag. | ||
if($jqTheme(location.href.split("#")[1])) { | ||
var target = $('#'+location.href.split("#")[1]); | ||
if (target.length) { | ||
$jqTheme('html,body').animate({ | ||
scrollTop: target.offset().top - 60 //offset height of header here too. | ||
}, 1000); | ||
return false; | ||
} | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,85 @@ | ||
Administration | ||
============== | ||
|
||
This section focuses on system and database administration tasks. Please see the :doc:`/user/index` for tasks having to do with having the "Admin" role on a dataverse or dataset. | ||
|
||
.. contents:: :local: | ||
|
||
Solr Search Index | ||
----------------- | ||
|
||
Dataverse requires Solr to be operational at all times. If you stop Solr, you should see a error about this on the home page, which is powered by the search index Solr provides. You set up Solr by following the steps in the :doc:`prerequisites` section and the :doc:`config` section explained how to configure it. This section is about the care and feeding of the search index. PostgreSQL is the "source of truth" and the Dataverse application will copy data from PostgreSQL into Solr. For this reason, the search index can be rebuilt at any time but depending on the amount of data you have, this can be a slow process. You are encouraged to experiment with production data to get a sense of how long a full reindexing will take. | ||
|
||
Full Reindex | ||
++++++++++++ | ||
|
||
There are two ways to perform a full reindex of the Dataverse search index. Starting with a "clear" ensures a completely clean index but involves downtime. Reindexing in place doesn't involve downtime but does not ensure a completely clean index. | ||
|
||
Clear and Reindex | ||
~~~~~~~~~~~~~~~~~ | ||
|
||
Clearing Data from Solr | ||
....................... | ||
|
||
Please note that the moment you issue this command, it will appear to end users looking at the home page that all data is gone! This is because the home page is powered by the search index. | ||
|
||
``curl http://localhost:8080/api/admin/index/clear`` | ||
|
||
Start Async Reindex | ||
................... | ||
|
||
Please note that this operation may take hours depending on the amount of data in your system. This known issue is being tracked at https://github.com/IQSS/dataverse/issues/50 | ||
|
||
``curl http://localhost:8080/api/admin/index`` | ||
|
||
Reindex in Place | ||
~~~~~~~~~~~~~~~~ | ||
|
||
An alternative to completely clearing the search index is to reindex in place. | ||
|
||
Clear Index Timestamps | ||
...................... | ||
|
||
``curl -X DELETE http://localhost:8080/api/admin/index/timestamps`` | ||
|
||
Start or Continue Async Reindex | ||
................................ | ||
|
||
If indexing stops, this command should pick up where it left off based on which index timestamps have been set, which is why we start by clearing these timestamps above. These timestamps are stored in the ``dvobject`` database table. | ||
|
||
``curl http://localhost:8080/api/admin/index/continue`` | ||
|
||
Glassfish | ||
--------- | ||
|
||
``server.log`` is the main place to look when you encounter problems. Hopefully an error message has been logged. If there's a stack trace, it may be of interest to developers, especially they can trace line numbers back to a tagged version. | ||
|
||
For debugging purposes, you may find it helpful to increase logging levels as mentioned in the :doc:`/developers/debugging` section of the Developer Guide. | ||
|
||
This guide has focused on using the command line to manage Glassfish but you might be interested in an admin GUI at http://localhost:4848 | ||
|
||
Monitoring | ||
---------- | ||
|
||
In production you'll want to monitor the usual suspects such as CPU, memory, free disk space, etc. | ||
|
||
https://github.com/IQSS/dataverse/issues/2595 contains some information on enabling monitoring of Glassfish, which is disabled by default. | ||
|
||
There is a database table called ``actionlogrecord`` that captures events that may be of interest. See https://github.com/IQSS/dataverse/issues/2729 for more discussion around this table. | ||
|
||
User Administration | ||
------------------- | ||
|
||
Deleting an API token | ||
~~~~~~~~~~~~~~~~~~~~~ | ||
There isn't much in the way of user administration tools built in to Dataverse. | ||
|
||
Deleting an API Token | ||
+++++++++++++++++++++ | ||
|
||
If an API token is compromised it should be deleted. Users can generate a new one for themselves, but someone with access to the database can delete tokens as well. | ||
If an API token is compromised it should be deleted. Users can generate a new one for themselves as explained in the :doc:`/user/account` section of the User Guide, but you may want to preemptively delete tokens from the database. | ||
|
||
Using the API token 7ae33670-be21-491d-a244-008149856437 as an example: | ||
|
||
``delete from apitoken where tokenstring = '7ae33670-be21-491d-a244-008149856437';`` | ||
|
||
You should expect the output ``DELETE 1`` after issuing the command above. | ||
|
||
After the API token has been deleted, users can generate a new one per :doc:`/user/account`. |
Oops, something went wrong.