diff options
author | John Nduli | 2024-09-04 12:35:23 +0300 |
---|---|---|
committer | BonfaceKilz | 2024-09-17 11:30:45 +0300 |
commit | faa285a070ed6f444110cc81e8400345a3815318 (patch) | |
tree | 9bfa6f55036f00daea4cfedb6c3350f9fd2a4c36 /topics | |
parent | 16324531a6b397b42697e9d363dc8587e02fb904 (diff) | |
download | gn-gemtext-faa285a070ed6f444110cc81e8400345a3815318.tar.gz |
docs: fix error in local virtuoso setup
Diffstat (limited to 'topics')
-rw-r--r-- | topics/xapian/xapian-indexing.gmi | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/topics/xapian/xapian-indexing.gmi b/topics/xapian/xapian-indexing.gmi index 55eaf96..1c3aa98 100644 --- a/topics/xapian/xapian-indexing.gmi +++ b/topics/xapian/xapian-indexing.gmi @@ -23,18 +23,23 @@ It is important to note that the performance bottlenecks identified in this docu You'll set up virtuoso locally. Here are guix specific instructions: +``` > guix install virtuoso-ose # or any other means to install virtuoso > cd /path/to/virtuoso/database/folder > cp $HOME/.guix-profile/var/lib/virtuoso/db/virtuoso.ini ./virtuoso.ini > # modify the virtuoso.ini file to save files to the folder you'd prefer > virtuoso-t +foreground +wait +debug +``` and load up data by: +``` > isql > # subsquent commands run in isql prompt -> ld_dir ('/path/to/folder/with/ttls', '*.ttl', 'http://genenetwork.org') # preferable have this folder be in the virtuoso database folder -> rdf_run_loader +> # preferable have this folder be in the virtuoso database folder +> ld_dir ('/path/to/folder/with/ttls', '*.ttl', 'http://genenetwork.org'); +> rdf_loader_run(); +``` Ping @bmunyoki for the ttl folder backups. |