Changes for page Owncloud Infinite Scale
Last modified by chrisby on 2024/03/03 14:53
Summary
-
Page properties (2 modified, 0 added, 0 removed)
Details
- Page properties
-
- Title
-
... ... @@ -1,1 +1,1 @@ 1 -Owncloud Infinite Scale 1 +Owncloud Infinite Scale (with Full Text Search) - Content
-
... ... @@ -1,9 +1,9 @@ 1 -Owncloud Infinite Scale (OCIS) can be used as a file cloud and it is very easy to integrate **full text searchand OCR**using a "tika" server. It is recommended that you use this setup in conjunction with the [[Owncloud client>>https://owncloud.com/desktop-app/]] to synchronize data between the cloud and your PC.1 +Owncloud Infinite Scale (OCIS) can be used as a file cloud and it is very easy to integrate full text search using a "tika" server. It is recommended that you use this setup in conjunction with the [[Owncloud client>>https://owncloud.com/desktop-app/]] to synchronize data between the cloud and your PC. 2 2 3 3 4 - ======docker-compose.yml======4 +**docker-compose.yml** 5 5 6 -{{code language=" none"}}6 +{{code language="yaml"}} 7 7 version: "3.3" 8 8 9 9 volumes: ... ... @@ -59,15 +59,13 @@ 59 59 - "traefik.http.services.ocis.loadbalancer.server.port=9200" 60 60 61 61 tika: 62 - image: apache/tika:2.9.0.0 -full62 + image: apache/tika:2.9.0.0 63 63 container_name: tika 64 64 restart: unless-stopped 65 65 {{/code}} 66 66 67 -====== Instructions ====== 68 - 69 69 * Obtain the admin password via {{code language="bash"}}docker logs ocis 2>&1 | grep password{{/code}}. 70 70 * Go to {{code language="none"}}https://<subdomain>{{/code}} and login as "admin" using the password you have just received. 71 71 * ((( 72 -For example, to test the full-text search feature, simply upload a file called "test.txt" containing "hello". Now search for "hello" in the search bar at the top. The result should be an empty list, as the default search only looks for file names. However,you can enable "Search in content only",whichuses full-text search, so"text.txt" shouldnowbe found.70 +For example, to test the full-text search feature, simply upload a file called "test.txt" containing "hello". Now search for "hello" in the search bar at the top. The result should be an empty list, as the default search only looks for file names. But you can enable "Search in content only". Now "text.txt" should be found. 73 73 )))