Author
|
zPlus <zplus@peers.community>
2024-06-20 07:19:36
|
Committer
|
zPlus <zplus@peers.community>
2024-06-20 07:19:36
|
Commit
|
193c9aa
(patch)
|
Tree
|
1503464
|
Parent(s)
|
|
Update README instructions.
- Add -Xmx for Fuseki
- Remove wget2 since it's no longer used
commits diff:
d3cd1d5..193c9aa
1 file changed,
4 insertions,
6 deletions
—
download
Diffstat
Diff options
+4/-6
M README
13
|
13
|
|
|
14
|
14
|
|
Databases can be created with:
|
15
|
15
|
|
|
16
|
|
- |
tdb2.tdbloader --loc=database_name *.ttl
|
|
16
|
+ |
# Increase Java heap size
|
|
17
|
+ |
# If there's not enough RAM, try with a different loader, such as --loader=basic
|
|
18
|
+ |
export JVM_ARGS=-Xmx16G
|
|
19
|
+ |
tdb2.tdbloader --loc=database_name *.nt
|
17
|
20
|
|
|
18
|
21
|
|
Place all the databases into the folder "fuseki_base/databases/".
|
19
|
22
|
|
Now to start the server, just run the systemd service file "fuseki.service" available
|
26
|
29
|
|
source venv/bin/activate
|
27
|
30
|
|
pip install -r requirements.txt
|
28
|
31
|
|
gunicorn --reload --worker-connections=4 --threads=4 --bind 0.0.0.0:8080 --error-logfile=- app:application
|
29
|
|
- |
|
30
|
|
- |
# Crawl website for static HTML pages:
|
31
|
|
- |
|
32
|
|
- |
wget2 --mirror --max-threads=16 --page-requisites --adjust-extension --execute robots=off localhost:8080
|
33
|
|
- |
|