Skip to content

Commit

Permalink
Merge branch 'develop' into 6919-preview-tools #6919
Browse files Browse the repository at this point in the history
  • Loading branch information
pdurbin committed Oct 26, 2020
2 parents e73d2f4 + 390cccd commit 132e1ee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions doc/sphinx-guides/source/installation/installation-main.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ This allows the installer to be run in non-interactive mode (with ``./install -y

All the Payara configuration tasks performed by the installer are isolated in the shell script ``dvinstall/as-setup.sh`` (as ``asadmin`` commands).

While Postgres can accomodate usernames and database names containing hyphens, it is strongly recommended to use only alphanumeric characters.

**IMPORTANT:** As a security measure, the ``as-setup.sh`` script stores passwords as "aliases" rather than plaintext. If you change your database password, for example, you will need to update the alias with ``asadmin update-password-alias db_password_alias``, for example. Here is a list of the password aliases that are set by the installation process and entered into Payara's ``domain.xml`` file:

- ``db_password_alias``
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public String getGuidesBaseUrl() {
if (true)

if (guidesBaseUrl == null) {
String saneDefault = "http://guides.dataverse.org";
String saneDefault = "https://guides.dataverse.org";

guidesBaseUrl = getValueForKey(SettingsServiceBean.Key.GuidesBaseUrl);
if (guidesBaseUrl == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ public String getDataverseServer() {
}

public String getGuidesBaseUrl() {
String saneDefault = "http://guides.dataverse.org";
String saneDefault = "https://guides.dataverse.org";
String guidesBaseUrl = settingsService.getValueForKey(SettingsServiceBean.Key.GuidesBaseUrl, saneDefault);
return guidesBaseUrl + "/" + getGuidesLanguage();
}
Expand Down

0 comments on commit 132e1ee

Please sign in to comment.