summaryrefslogtreecommitdiff
path: root/topics/systems/virtuoso.gmi
diff options
context:
space:
mode:
authorArun Isaac2022-10-25 14:32:21 +0530
committerArun Isaac2022-10-25 14:34:52 +0530
commit980f8e4995f762a31ad39306999b8b43f4197b67 (patch)
tree6646f4c5287fa244ca4448c884883967c164ec20 /topics/systems/virtuoso.gmi
parenta2988350c7bd2894a71c36976e9570aff68811d3 (diff)
downloadgn-gemtext-980f8e4995f762a31ad39306999b8b43f4197b67.tar.gz
Document virtuoso password change commands.
Diffstat (limited to 'topics/systems/virtuoso.gmi')
-rw-r--r--topics/systems/virtuoso.gmi7
1 files changed, 7 insertions, 0 deletions
diff --git a/topics/systems/virtuoso.gmi b/topics/systems/virtuoso.gmi
index f895e50..425a2bd 100644
--- a/topics/systems/virtuoso.gmi
+++ b/topics/systems/virtuoso.gmi
@@ -102,6 +102,13 @@ SQL> SPARQL SELECT * WHERE {?s ?p ?o};
After running virtuoso, you will want to change the default password of the `dba` user. The default password of the `dba` user is `dba`. You can change passwords using the isql command-line client. See
=> http://docs.openlinksw.com/virtuoso/defpasschange/ Virtuoso users and how to set their passwords
+In a typical production virtuoso installation, you will want to change the password of the dba user and disable the dav user. Here are the commands to do so. Pay attention to the single versus double quoting.
+```
+SQL> set password "dba" "new-password";
+SQL> UPDATE ws.ws.sys_dav_user SET u_account_disabled=1 WHERE u_name='dav';
+SQL> CHECKPOINT;
+```
+
## Loading data into virtuoso
Virtuoso supports at least three different ways to load RDF.