How to run Query-to-file in my system #328
-
I have cloned the repo, How do I run on my Linux system? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi Jagrit The README.md on github has quite some instructions on how to get the Query-to-File running. First, you need to make sure to be working with Java 11. Furthermore, you need to install FUSE. The installation guide of JNR-FUSE contains useful information on how to install on different operating systems. After installing FUSE, you need to locate the FUSE binary (.dll / .dylib / .so) and specify the path in the config file ( The main-method is located in |
Beta Was this translation helpful? Give feedback.
-
Polypheny-DB should provide Apache FtpServer? |
Beta Was this translation helpful? Give feedback.
Hi Jagrit
The README.md on github has quite some instructions on how to get the Query-to-File running. First, you need to make sure to be working with Java 11. Furthermore, you need to install FUSE. The installation guide of JNR-FUSE contains useful information on how to install on different operating systems.
After installing FUSE, you need to locate the FUSE binary (.dll / .dylib / .so) and specify the path in the config file (
Query-to-File/src/main/resources/config.properties
). There are already common paths and library names in there (see this link). Make sure that there is only one entry forlibraryPath
andlibfuse
enabled in the config file.The main-method is located in
src/main/jav…