-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solr instal #6
Comments
Hi I will have to check my install tomorrow to be sure but I likely used something like: sudo docker network create foswiki_net sudo docker run --rm --network=foswiki_net --name docker-foswiki -idt -p 80:80 -p 443:443 -v foswiki_www:/var/www/foswiki:z -v nginx:/etc/nginx:z timlegge/docker-foswiki:v1.06 sudo docker run --rm --network=foswiki_net --name my_solr -d -P -idt -p 8983:8983 -v solr:/var/log/solr:z solr That creates a new network that can be used between the containers. At that point you can use my_solr as the host name in foswiki. At this point you can copy the required files from the foswiki volume to the solr volume Version may be an issue as I forget off hand which solr version will work. I will take a look at the install tonight to see if I can replicate it. I was planning to document it anyway. |
Many thanks, that is really helpful
Le mar. 12 nov. 2019 à 17:54, Timothy Legge <notifications@github.com> a
écrit :
… Hi
I will have to check my install tomorrow to be sure but I likely used
something like:
sudo docker network create foswiki_net
sudo docker run --rm --network=foswiki_net --name docker-foswiki -idt -p
80:80 -p 443:443 -v foswiki_www:/var/www/foswiki:z -v nginx:/etc/nginx:z
timlegge/docker-foswiki:v1.06
sudo docker run --rm --network=foswiki_net --name my_solr -d -P -idt -p
8983:8983 -v solr:/var/log/solr:z solr
That creates a new network that can be used between the containers. At
that point you can use my_solr as the host name in foswiki.
At this point you can copy the required files from the foswiki volume to
the solr volume
Version may be an issue as I forget off hand which solr version will work.
I will take a look at the install tonight to see if I can replicate it. I
was planning to document it anyway.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=ACZAG2MULVR7SYQHHGBPGXTQTMXZBA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOED4HSVA#issuecomment-553154900>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZAG2JGJH4JAYMNS5H2HTTQTMXZBANCNFSM4JMIATKA>
.
|
So, the schema in the foswiki configs does not work with version 8 so: sudo docker run --rm --network=foswiki_net --name my_solr -d -P -idt -p 8983:8983 -v solr:/var/log/solr:z -v solr_data:/var/solr/data:z solr:7 Works cd /var/lib/docker/volumes/solr_data/_data/ That should get you a semi working solr install Note the docs say to link the directories but I forget what exactly I did |
sudo docker run --rm --network=foswiki_net --name my_solr -d -P -idt -p 8983:8983 -v solr:/var/log/solr:z -v solr_home:/opt/solr/server/solr:z solr:5 The above will get a working install after you copy the files in place and change the permissions sudo docker stop my_solr docker exec -it my_solr /bin/sh |
I've made some progress on updating the solr configs for foswiki to support 6.6 of Solr in the attached file. sudo docker run --rm --network=foswiki_net --name my_solr -d -P -idt -p 8983:8983 -v solr_home6:/opt/solr/server/solr:z -v solr_home7:/var/solr solr:6 Let me know if it works for you |
Awesome. I'll have a look at it and merge it with the next upcoming changes. |
And for 7.7.2 |
Here is a command that seems to work well for solr. It creates volumes for the logs, configsets and cores. It also mounts the volume that the foswiki container uses. Because of that the instructions to do symbolic links will work fine. sudo docker run --rm --network foswiki-net --name my_solr -d -P If you choose to use the update solr 6 or 7 configs from above use solr:6 or solr:7 |
I'll let you know. Many thanks ! |
Hi
I was looking at docker-compose just today and I was thinking of how to
make it easier. The setup itself is not that hard but docker-compose looks
like it could make it a one line command to start up both solr and
foswiki. If you write something I can add it to the repo. If not over the
next bit I will likely create one.
…On Wed, Nov 13, 2019 at 5:45 PM MichelMallejac ***@***.***> wrote:
I'll let you know. Many thanks !
I am trying to set up a docker-compose.yml, that will ease the setup I
guess
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=AAH3N63UXRO7BD6VM2CHYNDQTRYPXA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOED7YWUY#issuecomment-553618259>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAH3N6YDGIP35NJFUIBMOG3QTRYPXANCNFSM4JMIATKA>
.
|
I've made some progress. I have a I m using local port 8765 to access foswiki locally.
Then I run the following two commands (later will be included somehow in the compose file), and restart the solr container :
Most probably the second line of commands is not correct. I see in the logs that the foswiki configset is read, but it crashes after that about the core :
I am not too much familiar with the foswiki / solr config. Any idea of whats wrong ? |
solr | 2771 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SchemaCodecFactory Using default compressionMode: BEST_SPEED
solr | 2798 ERROR (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SolrCore :java.nio.file.AccessDeniedException:
/opt/solr/server/solr/solr_foswiki/data
Are you on RedHat with SELINUX? Append :z to the end of the volume names
Tim
…On Thu, Nov 14, 2019 at 1:25 PM MichelMallejac ***@***.***> wrote:
I've made some progress. I have a docker-compose.yml file which works
fine, that reproduces the volumes and environment variables that you have
described previously :
I m using local port 8765 to access foswiki locally.
version: '3'
services:
foswiki:
image: timlegge/docker-foswiki
container_name: foswiki
depends_on:
- solr
ports:
- 8765:80
volumes:
- solr_logs:/opt/solr/server/logs
- solr_configsets:/opt/solr/server/solr/configsets
- solr_foswiki:/opt/solr/server/solr/solr_foswiki
- foswiki_www:/var/www/foswiki
networks:
- foswiki-network
solr:
image: solr:5
container_name: solr
# only to have access to solr console, delete in prodcution
ports:
- 8983:8983
volumes:
- solr_logs:/opt/solr/server/logs
- solr_configsets:/opt/solr/server/solr/configsets
- solr_foswiki:/opt/solr/server/solr/solr_foswiki
- foswiki_www:/var/www/foswiki
environment:
- GC_LOG_OPTS=''
- SOLR_LOG_LEVEL='WARN'
networks:
- foswiki-network
volumes:
foswiki_www:
solr_logs:
solr_configsets:
solr_foswiki:
networks:
foswiki-network:
Then I run the following two commands (later will be included somehow in
the compose file), and restart the solr container :
cd /opt/solr/server/solr/configsets ; ln -s /var/www/foswiki/solr/configsets/foswiki_configs/ .
cd /opt/solr/server/solr/solr_foswiki ; ln -s /var/www/foswiki/solr/cores/foswiki/core.properties .
Most probably the second line of commands is not correct. I see in the
logs that the foswiki configset is read, but it crashes after that about
the core :
...
solr | 1263 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Looking for core definitions underneath /opt/solr/server/solr
solr | 1282 INFO (main) [ ] o.a.s.c.CoreDescriptor Created CoreDescriptor: {name=foswiki, config=solrconfig.xml, transient=false, schema=schema.xml, loadOnStartup=true, configSetProperties=configsetprops.json, configSet=foswiki_configs, solr.autoSoftCommit.maxTime=6000, solr.autoCommit.maxTime=15000, dataDir=data/}
solr | 1282 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found core foswiki in /opt/solr/server/solr/solr_foswiki
solr | 1282 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found 1 core definitions
solr | 1288 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.c.SolrResourceLoader new SolrResourceLoader for directory: '/opt/solr/server/solr/configsets/foswiki_configs'
solr | 1289 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.c.SolrResourceLoader JNDI not configured for solr (NoInitialContextEx)
solr | 1289 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.c.SolrResourceLoader using system property solr.solr.home: /opt/solr/server/solr
solr | 1294 INFO (main) [ ] o.a.s.s.SolrDispatchFilter user.dir=/opt/solr/server
solr | 1294 INFO (main) [ ] o.a.s.s.SolrDispatchFilter SolrDispatchFilter.init() done
solr | 1314 INFO (main) [ ] o.e.j.s.h.ContextHandler Started ***@***.***{/solr,file:/opt/solr/server/solr-webapp/webapp/,AVAILABLE}{/opt/solr/server/solr-webapp/webapp}
solr | 1330 INFO (main) [ ] o.e.j.s.ServerConnector Started ***@***.***{HTTP/1.1}{0.0.0.0:8983}
solr | 1330 INFO (main) [ ] o.e.j.s.Server Started @1655ms
...
solr | 1588 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.c.SolrConfig Using Lucene MatchVersion: 5.0.0
solr | 1777 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.c.SolrConfig Loaded SolrConfig: solrconfig.xml
solr | 1881 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.s.IndexSchema [foswiki] Schema name=foswiki
solr | 2421 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.s.IndexSchema default search field in schema is catchall
solr | 2422 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.s.IndexSchema query parser default operator is AND
solr | 2424 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.s.IndexSchema unique key field: id
solr | 2554 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.s.FileExchangeRateProvider Reloading exchange rates from file currency.xml
solr | 2560 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.s.FileExchangeRateProvider Reloading exchange rates from file currency.xml
solr | 2718 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.c.ConfigSetProperties Did not find ConfigSet properties, assuming default properties: Can't find resource 'configsetprops.json' in classpath or '/opt/solr/server/solr/configsets/foswiki_configs'
solr | 2718 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.c.CoreContainer Creating SolrCore 'foswiki' using configuration from configset /opt/solr/server/solr/configsets/foswiki_configs
solr | 2748 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.c.SolrCore solr.NRTCachingDirectoryFactory
solr | 2763 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.c.SolrCore [[foswiki] ] Opening new SolrCore at [/opt/solr/server/solr/configsets/foswiki_configs], dataDir=[/opt/solr/server/solr/solr_foswiki/data/]
solr | 2765 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.c.JmxMonitoredMap No JMX servers found, not exposing Solr information with JMX.
solr | 2768 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.c.SolrCore [[foswiki] ] Added SolrEventListener for newSearcher: [org.apache.solr.core.QuerySenderListener{queries=[{q=foswiki}]}]
solr | 2768 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.c.SolrCore [[foswiki] ] Added SolrEventListener for firstSearcher: [org.apache.solr.core.QuerySenderListener{queries=[{q=foswiki}]}]
solr | 2771 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.c.SchemaCodecFactory Using default compressionMode: BEST_SPEED
solr | 2798 ERROR (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.c.SolrCore :java.nio.file.AccessDeniedException: /opt/solr/server/solr/solr_foswiki/data
...
solr | 2799 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.c.SolrCore New index directory detected: old=null new=/opt/solr/server/solr/solr_foswiki/data/index/
solr | 2800 WARN (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.c.SolrCore [foswiki] Solr index directory '/opt/solr/server/solr/solr_foswiki/data/index' doesn't exist. Creating new index...
solr | 2813 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.c.SolrCore [foswiki] CLOSING SolrCore ***@***.***
solr | 2814 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.u.SolrCoreState Closing SolrCoreState
solr | 2814 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.u.DefaultSolrCoreState SolrCoreState ref count has reached 0 - closing IndexWriter
solr | 2814 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.c.SolrCore [foswiki] Closing main searcher on request.
solr | 2814 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.c.CachingDirectoryFactory Closing NRTCachingDirectoryFactory - 0 directories currently being tracked
solr | 2815 ERROR (coreLoadExecutor-6-thread-1) [ x:foswiki] o.a.s.c.CoreContainer Error creating core [foswiki]: /opt/solr/server/solr/solr_foswiki/data
solr | org.apache.solr.common.SolrException: /opt/solr/server/solr/solr_foswiki/data
...
I am not too much familiar with the foswiki / solr config. Any idea of
whats wrong ?
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=AAH3N63EYH3BNFOVXTDTD63QTWCYJA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEECT5JA#issuecomment-553991844>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAH3N6ZY6EYIKH4TSEQAESTQTWCYJANCNFSM4JMIATKA>
.
|
Nope. Ubuntu without SELinux. I'll give a try with :z just to be sure
Most probably a symlink issue : is the core.properties link correct from
the foswiki perspective ?
Le jeu. 14 nov. 2019 à 13:27, Timothy Legge <notifications@github.com> a
écrit :
… solr | 2771 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SchemaCodecFactory Using default compressionMode: BEST_SPEED
solr | 2798 ERROR (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SolrCore :java.nio.file.AccessDeniedException:
/opt/solr/server/solr/solr_foswiki/data
Are you on RedHat with SELINUX? Append :z to the end of the volume names
Tim
On Thu, Nov 14, 2019 at 1:25 PM MichelMallejac ***@***.***>
wrote:
> I've made some progress. I have a docker-compose.yml file which works
> fine, that reproduces the volumes and environment variables that you have
> described previously :
>
> I m using local port 8765 to access foswiki locally.
>
> version: '3'
>
> services:
> foswiki:
> image: timlegge/docker-foswiki
> container_name: foswiki
> depends_on:
> - solr
> ports:
> - 8765:80
> volumes:
> - solr_logs:/opt/solr/server/logs
> - solr_configsets:/opt/solr/server/solr/configsets
> - solr_foswiki:/opt/solr/server/solr/solr_foswiki
> - foswiki_www:/var/www/foswiki
> networks:
> - foswiki-network
>
> solr:
> image: solr:5
> container_name: solr
> # only to have access to solr console, delete in prodcution
> ports:
> - 8983:8983
> volumes:
> - solr_logs:/opt/solr/server/logs
> - solr_configsets:/opt/solr/server/solr/configsets
> - solr_foswiki:/opt/solr/server/solr/solr_foswiki
> - foswiki_www:/var/www/foswiki
> environment:
> - GC_LOG_OPTS=''
> - SOLR_LOG_LEVEL='WARN'
> networks:
> - foswiki-network
>
> volumes:
> foswiki_www:
> solr_logs:
> solr_configsets:
> solr_foswiki:
>
> networks:
> foswiki-network:
>
>
> Then I run the following two commands (later will be included somehow in
> the compose file), and restart the solr container :
>
> cd /opt/solr/server/solr/configsets ; ln -s
/var/www/foswiki/solr/configsets/foswiki_configs/ .
> cd /opt/solr/server/solr/solr_foswiki ; ln -s
/var/www/foswiki/solr/cores/foswiki/core.properties .
>
> Most probably the second line of commands is not correct. I see in the
> logs that the foswiki configset is read, but it crashes after that about
> the core :
>
> ...
> solr | 1263 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Looking for
core definitions underneath /opt/solr/server/solr
> solr | 1282 INFO (main) [ ] o.a.s.c.CoreDescriptor Created
CoreDescriptor: {name=foswiki, config=solrconfig.xml, transient=false,
schema=schema.xml, loadOnStartup=true,
configSetProperties=configsetprops.json, configSet=foswiki_configs,
solr.autoSoftCommit.maxTime=6000, solr.autoCommit.maxTime=15000,
dataDir=data/}
> solr | 1282 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found core
foswiki in /opt/solr/server/solr/solr_foswiki
> solr | 1282 INFO (main) [ ] o.a.s.c.CorePropertiesLocator Found 1 core
definitions
> solr | 1288 INFO (coreLoadExecutor-6-thread-1) [ ]
o.a.s.c.SolrResourceLoader new SolrResourceLoader for directory:
'/opt/solr/server/solr/configsets/foswiki_configs'
> solr | 1289 INFO (coreLoadExecutor-6-thread-1) [ ]
o.a.s.c.SolrResourceLoader JNDI not configured for solr (NoInitialContextEx)
> solr | 1289 INFO (coreLoadExecutor-6-thread-1) [ ]
o.a.s.c.SolrResourceLoader using system property solr.solr.home:
/opt/solr/server/solr
> solr | 1294 INFO (main) [ ] o.a.s.s.SolrDispatchFilter
user.dir=/opt/solr/server
> solr | 1294 INFO (main) [ ] o.a.s.s.SolrDispatchFilter
SolrDispatchFilter.init() done
> solr | 1314 INFO (main) [ ] o.e.j.s.h.ContextHandler Started
***@***.***
{/solr,file:/opt/solr/server/solr-webapp/webapp/,AVAILABLE}{/opt/solr/server/solr-webapp/webapp}
> solr | 1330 INFO (main) [ ] o.e.j.s.ServerConnector Started
***@***.***{HTTP/1.1}{0.0.0.0:8983}
> solr | 1330 INFO (main) [ ] o.e.j.s.Server Started @1655ms
> ...
> solr | 1588 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.c.SolrConfig
Using Lucene MatchVersion: 5.0.0
> solr | 1777 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.c.SolrConfig
Loaded SolrConfig: solrconfig.xml
> solr | 1881 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.s.IndexSchema
[foswiki] Schema name=foswiki
> solr | 2421 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.s.IndexSchema
default search field in schema is catchall
> solr | 2422 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.s.IndexSchema
query parser default operator is AND
> solr | 2424 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.s.IndexSchema
unique key field: id
> solr | 2554 INFO (coreLoadExecutor-6-thread-1) [ ]
o.a.s.s.FileExchangeRateProvider Reloading exchange rates from file
currency.xml
> solr | 2560 INFO (coreLoadExecutor-6-thread-1) [ ]
o.a.s.s.FileExchangeRateProvider Reloading exchange rates from file
currency.xml
> solr | 2718 INFO (coreLoadExecutor-6-thread-1) [ ]
o.a.s.c.ConfigSetProperties Did not find ConfigSet properties, assuming
default properties: Can't find resource 'configsetprops.json' in classpath
or '/opt/solr/server/solr/configsets/foswiki_configs'
> solr | 2718 INFO (coreLoadExecutor-6-thread-1) [ ] o.a.s.c.CoreContainer
Creating SolrCore 'foswiki' using configuration from configset
/opt/solr/server/solr/configsets/foswiki_configs
> solr | 2748 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SolrCore solr.NRTCachingDirectoryFactory
> solr | 2763 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SolrCore [[foswiki] ] Opening new SolrCore at
[/opt/solr/server/solr/configsets/foswiki_configs],
dataDir=[/opt/solr/server/solr/solr_foswiki/data/]
> solr | 2765 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.JmxMonitoredMap No JMX servers found, not exposing Solr information
with JMX.
> solr | 2768 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SolrCore [[foswiki] ] Added SolrEventListener for newSearcher:
[org.apache.solr.core.QuerySenderListener{queries=[{q=foswiki}]}]
> solr | 2768 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SolrCore [[foswiki] ] Added SolrEventListener for firstSearcher:
[org.apache.solr.core.QuerySenderListener{queries=[{q=foswiki}]}]
> solr | 2771 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SchemaCodecFactory Using default compressionMode: BEST_SPEED
> solr | 2798 ERROR (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SolrCore :java.nio.file.AccessDeniedException:
/opt/solr/server/solr/solr_foswiki/data
> ...
> solr | 2799 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SolrCore New index directory detected: old=null
new=/opt/solr/server/solr/solr_foswiki/data/index/
> solr | 2800 WARN (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SolrCore [foswiki] Solr index directory
'/opt/solr/server/solr/solr_foswiki/data/index' doesn't exist. Creating new
index...
> solr | 2813 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SolrCore [foswiki] CLOSING SolrCore
***@***.***
> solr | 2814 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.u.SolrCoreState Closing SolrCoreState
> solr | 2814 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.u.DefaultSolrCoreState SolrCoreState ref count has reached 0 -
closing IndexWriter
> solr | 2814 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.SolrCore [foswiki] Closing main searcher on request.
> solr | 2814 INFO (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.CachingDirectoryFactory Closing NRTCachingDirectoryFactory - 0
directories currently being tracked
> solr | 2815 ERROR (coreLoadExecutor-6-thread-1) [ x:foswiki]
o.a.s.c.CoreContainer Error creating core [foswiki]:
/opt/solr/server/solr/solr_foswiki/data
> solr | org.apache.solr.common.SolrException:
/opt/solr/server/solr/solr_foswiki/data
> ...
>
>
> I am not too much familiar with the foswiki / solr config. Any idea of
> whats wrong ?
>
> —
> You are receiving this because you commented.
> Reply to this email directly, view it on GitHub
> <
#6?email_source=notifications&email_token=AAH3N63EYH3BNFOVXTDTD63QTWCYJA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEECT5JA#issuecomment-553991844
>,
> or unsubscribe
> <
https://github.com/notifications/unsubscribe-auth/AAH3N6ZY6EYIKH4TSEQAESTQTWCYJANCNFSM4JMIATKA
>
> .
>
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=ACZAG2LH5CJQV5VRYTW4EF3QTWKAZA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEEC2C4A#issuecomment-554017136>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZAG2NTNWWZJJ6MB77KWMLQTWKAZANCNFSM4JMIATKA>
.
|
I can give your docker-compose file a shot tonight. Will let you know |
Here is an improved version of the Still having problems, most probably an issue with these symlinks : solr does not have access to foswiki data : Here is the file :
|
Add ; chown -R 8983:8983 /opt/solr/server/solr to the command in the setup Tim |
A working version:
|
The above also required: Once that is done you need to update the solr URL in foswiki to be: The container name "solr" is used as the hostname. Since both share the same network docker resolves solr to the ip of the container. |
I pushed a new version of the docker image that fixes an issue: TopicTitlePlugin needs to be enabled for SolrPlugin to work I also updated the setup command in the docker-compose to change the Solr Plugin URL to point to the solr docker in the foswiki settings. At this point your docker-compose results in a working install that will allow you to successfully test the Solr foswiki integration |
Thanks a lot, it seems to work great. Also, my goal is to have this setup + Natskin, IMHO much better looking than the default skin. |
Hi
Yes, I would support natskin and solr8 by default. The main Foswiki guys
will look at the changes I made in #7 for the foswiki configs eventually
but it would be nice to move it along in an environment that is being used.
Tim
Tim
…On Fri, Nov 15, 2019 at 11:49 AM MichelMallejac ***@***.***> wrote:
Thanks a lot, it seems to work great.
Do you think we should modify things so that Solr 8 is by default ?
Also, my goal is to have this setup + Natskin, IMHO much better looking
than the default skin.
Would you consider including this in you setup ? I have to do it anyway,
so I can submit this to you when its done. Let me know !
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=AAH3N653SOAQL5NGN3QLIWLQT3AJZA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEEF23YQ#issuecomment-554413538>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAH3N66OHNKZ2HJKSFT55HTQT3AJZANCNFSM4JMIATKA>
.
|
Hi Tim, I am having hard time with NatSkin. I've enabled it within SitePreferences but lot of macros are not working (which are perfectly working under the default skin). See the attached screenshot : I've tried to fix all warnings and issues within Any idea ? Michel |
Probably a few plugins not enabled. Let me look |
I've also tried to remove and reinstall all the 3 Nat plugins, no more luck :-\ |
A number of Plugins are not enabled as they are installed as dependancys of other plugins. They include: Enable them manually for now but the best bet is for me to enable them in the Docker Image. Tim |
v1.08 (latest was pushed with all installed plugins enabled (well not TWikiCompatibilityPlugin or EditTablePlugin) |
Thanks ! |
Do you know a way to modify a topic from CLI ? |
Hello Tim, Just talked to M. Daum this morning about the Recent Changes bug. He has open a new ticket for that. ClassificationPlugin will be upgraded and this should fix this issue ! |
nice
…On Wed., Nov. 27, 2019, 6:04 a.m. MichelMallejac, ***@***.***> wrote:
Hello Tim,
Just talked to M. Daum this morning about the *Recent Changes* bug. He
has open a new ticket <https://foswiki.org/Tasks/Item14888> for that.
ClassificationPlugin will be upgraded and this should fix this issue !
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=AAH3N63FYZJD74B4CXVNRGLQVZA3TA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFI7HIY#issuecomment-559018915>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAH3N63JJTKZUFA2RHU5SE3QVZA3TANCNFSM4JMIATKA>
.
|
Also while talking to him, I've proposed to mention your project in foswiki.org. He was very positive and said : we would do that on the download page of a release. for that we have to restructure it a bit, in the vein of alternative install methods. What do you think ? Would you start this page ? |
Its, unpublished but I wrote this last night: https://blog.foswiki.org/Blog/DockerFoswikiAndSolr if you can't see it I can ask M. Daum to give you write permissions or send you the text |
Can't see ! :-)
Le mer. 27 nov. 2019 à 14:59, Timothy Legge <notifications@github.com> a
écrit :
… Its, unpublished but I wrote this last night:
https://blog.foswiki.org/Blog/DockerFoswikiAndSolr if you can't see it I
can ask M. Daum to give you write permissions or send you the text
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=ACZAG2LBSTHJQG4J637E6WTQVZ4NDA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFJSXIQ#issuecomment-559098786>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZAG2MYM65MXKRBHH7QHLLQVZ4NDANCNFSM4JMIATKA>
.
|
Will likely publish soon |
Great !
Maybe two things :
In second chapter, you can replace *[where the project has been cloned]*
with *docker-foswiki*, since the git clone will always create a
*docker-foswiki* folder.
Generally, I think you can remove the "cd ..." everywhere (when outside the
container) since - I think - it'll be quite obvious for docker-aware folks
In Resetting the Admin Password, / Testing Foswiki and Solr /
*docker exec -it $(pwd)_foswiki_1 /bin/bash* is not correct I think :
- docker container name will always be dockerfoswiki (without the dash)
: since it takes the folder name and removes dashes, dot, ...
- or it will be projectname_foswiki_1 if -p projectname is used, but
that's more and advance feature
Le mer. 27 nov. 2019 à 15:33, Timothy Legge <notifications@github.com> a
écrit :
… Will likely publish soon
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=ACZAG2IMMFKZY2KCPQFWQS3QV2AM5A5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFJV7UA#issuecomment-559112144>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZAG2IBYBFK3FV5I6QTIFTQV2AM5ANCNFSM4JMIATKA>
.
|
Made some changes. You should be able to login now with your MichelMallejac user. Feel free to make changes |
Will do, thanks !
BTW, have you seen the "logout" link in the new default Skin template ??
Le jeu. 28 nov. 2019 à 04:45, Timothy Legge <notifications@github.com> a
écrit :
… Made some changes. You should be able to login now with your
MichelMallejac user. Feel free to make changes
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=ACZAG2MFUTVD7KPV74J6BZTQV45EXA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFLLFXI#issuecomment-559330013>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZAG2OY4FYU7C6HE4XMXY3QV45EXANCNFSM4JMIATKA>
.
|
Hello Tim, I think we have an issue with Solr : this guy is not able to index .odt files :
I've simply removed the few .ods files that we had in our wiki :-) Also I don't think that the Personally, I set :
|
Tried to edit https://blog.foswiki.org/Blog/DockerFoswikiAndSolr |
will look this evening but it's likely a mdaum issue
…On Thu., Nov. 28, 2019, 4:06 p.m. MichelMallejac, ***@***.***> wrote:
Tried to edit https://blog.foswiki.org/Blog/DockerFoswikiAndSolr
I can see but not edit !
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=AAH3N62B3ZVJZOV5FUFONVDQWAQEDA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFNL2ZI#issuecomment-559594853>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAH3N656IJLJRBCVX43TJPLQWAQEDANCNFSM4JMIATKA>
.
|
I will log this as a separate issue as its a missing alpine linux package. It will take me a few days/week to get it packaged and accepted in alpine linux. |
Not sure you have to go this way : it is within the Solr image that
something is missing, not in the Foswiki one ! Both images sees each other
partly only (on the same docker LAN, and the volumes declared on both
services in the docker-compose file)
I'll open an issue with Solr guys and let you know about it.
BTW, I've found the logout link :-) In this NatSkin variation, it is
located within the more menu !
I'll try to catch MDaum for the blog.
Le ven. 29 nov. 2019 à 02:17, Timothy Legge <notifications@github.com> a
écrit :
… I will log this as a separate issue as its a missing alpine linux package.
It will take me a few days/week to get it packaged and accepted in alpine
linux.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=ACZAG2M6JQRDZEMCATTVRL3QWBURFA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFNUHWY#issuecomment-559629275>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZAG2NUS4MFVTV3UI4WPYLQWBURFANCNFSM4JMIATKA>
.
|
Also the blog is now RW for me :-)
Le ven. 29 nov. 2019 à 08:48, Michel Mallejac <Michel.Mallejac@gmail.com> a
écrit :
… Not sure you have to go this way : it is within the Solr image that
something is missing, not in the Foswiki one ! Both images sees each other
partly only (on the same docker LAN, and the volumes declared on both
services in the docker-compose file)
I'll open an issue with Solr guys and let you know about it.
BTW, I've found the logout link :-) In this NatSkin variation, it is
located within the more menu !
I'll try to catch MDaum for the blog.
Le ven. 29 nov. 2019 à 02:17, Timothy Legge ***@***.***> a
écrit :
> I will log this as a separate issue as its a missing alpine linux
> package. It will take me a few days/week to get it packaged and accepted in
> alpine linux.
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub
> <#6?email_source=notifications&email_token=ACZAG2M6JQRDZEMCATTVRL3QWBURFA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFNUHWY#issuecomment-559629275>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/ACZAG2NUS4MFVTV3UI4WPYLQWBURFANCNFSM4JMIATKA>
> .
>
|
perfect
…On Fri., Nov. 29, 2019, 6:27 a.m. MichelMallejac, ***@***.***> wrote:
Also the blog is now RW for me :-)
Le ven. 29 nov. 2019 à 08:48, Michel Mallejac ***@***.***>
a
écrit :
> Not sure you have to go this way : it is within the Solr image that
> something is missing, not in the Foswiki one ! Both images sees each
other
> partly only (on the same docker LAN, and the volumes declared on both
> services in the docker-compose file)
> I'll open an issue with Solr guys and let you know about it.
>
> BTW, I've found the logout link :-) In this NatSkin variation, it is
> located within the more menu !
>
> I'll try to catch MDaum for the blog.
>
> Le ven. 29 nov. 2019 à 02:17, Timothy Legge ***@***.***> a
> écrit :
>
>> I will log this as a separate issue as its a missing alpine linux
>> package. It will take me a few days/week to get it packaged and
accepted in
>> alpine linux.
>>
>> —
>> You are receiving this because you authored the thread.
>> Reply to this email directly, view it on GitHub
>> <
#6?email_source=notifications&email_token=ACZAG2M6JQRDZEMCATTVRL3QWBURFA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFNUHWY#issuecomment-559629275
>,
>> or unsubscribe
>> <
https://github.com/notifications/unsubscribe-auth/ACZAG2NUS4MFVTV3UI4WPYLQWBURFANCNFSM4JMIATKA
>
>> .
>>
>
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=AAH3N6ZYRR2UVM4BVVM4IO3QWDVBBA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFOP2AA#issuecomment-559742208>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAH3N66XQCFAOFZZU4YX67DQWDVBBANCNFSM4JMIATKA>
.
|
That's possible but the package is required for the classification plug-in
anyway
…On Fri., Nov. 29, 2019, 3:49 a.m. MichelMallejac, ***@***.***> wrote:
Not sure you have to go this way : it is within the Solr image that
something is missing, not in the Foswiki one ! Both images sees each other
partly only (on the same docker LAN, and the volumes declared on both
services in the docker-compose file)
I'll open an issue with Solr guys and let you know about it.
BTW, I've found the logout link :-) In this NatSkin variation, it is
located within the more menu !
I'll try to catch MDaum for the blog.
Le ven. 29 nov. 2019 à 02:17, Timothy Legge ***@***.***> a
écrit :
> I will log this as a separate issue as its a missing alpine linux
package.
> It will take me a few days/week to get it packaged and accepted in alpine
> linux.
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub
> <
#6?email_source=notifications&email_token=ACZAG2M6JQRDZEMCATTVRL3QWBURFA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFNUHWY#issuecomment-559629275
>,
> or unsubscribe
> <
https://github.com/notifications/unsubscribe-auth/ACZAG2NUS4MFVTV3UI4WPYLQWBURFANCNFSM4JMIATKA
>
> .
>
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=AAH3N6YU4BKRFGLS6DCBGADQWDCPLA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFOD6MA#issuecomment-559693616>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAH3N62BOEWF3CM7JSWEWS3QWDCPLANCNFSM4JMIATKA>
.
|
@mmallejac do you have any updates you want to make on the blog entry? I did not get around to making your suggestions yet... |
Yes sure I will ! Did not get time to do it yet.
When do you need it by? I'll try to make it today...
Le lun. 2 déc. 2019 à 15:17, Timothy Legge <notifications@github.com> a
écrit :
… @mmallejac <https://github.com/mmallejac> do you have any updates you
want to make on the blog entry? I did not get around to making your
suggestions yet...
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=ACZAG2PWMM27BXCVD37YN4LQWUKGDA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFTT67A#issuecomment-560414588>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZAG2LXQGH6YQAXCZBHUQTQWUKGDANCNFSM4JMIATKA>
.
|
I would like to publish it soon but time is relative - I started that blog months ago (before you docker compose work) |
Hello Tim,
I've done some edit to the blog post.
I've removed the assumption about where the repo is git-cloned.
The name of the containers is always dockerfoswiki_... (based on the
current folder minus special characters : docker-foswiki -> dockerfoswiki)
About *With Docker one often uses a nginx container to proxy to multiple
docker containers on one server *: to me this sounds like load-balancing,
see what I've done, is it clearer ?
I woud also suggest to put the Features chapter at the end of the topic ?
Also maybe to put the %TOC% above the introduction / tease ?
Do not hesitate to revert some of the changes I've done !
Have a good day,
Michel
Le lun. 2 déc. 2019 à 15:41, Timothy Legge <notifications@github.com> a
écrit :
… I would like to publish it soon but time is relative - I started that blog
months ago (before you docker compose work)
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=ACZAG2NE227XHLBPC3NZSZTQWUNCBA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFTWREY#issuecomment-560425107>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZAG2M7YWXAKMXHSNNUD4LQWUNCBANCNFSM4JMIATKA>
.
|
Thanks. I will review. Michael usually gives it a final review too so
when I am done I will let him know
…On Tue, Dec 3, 2019 at 8:18 AM MichelMallejac ***@***.***> wrote:
Hello Tim,
I've done some edit to the blog post.
I've removed the assumption about where the repo is git-cloned.
The name of the containers is always dockerfoswiki_... (based on the
current folder minus special characters : docker-foswiki -> dockerfoswiki)
About *With Docker one often uses a nginx container to proxy to multiple
docker containers on one server *: to me this sounds like load-balancing,
see what I've done, is it clearer ?
I woud also suggest to put the Features chapter at the end of the topic ?
Also maybe to put the %TOC% above the introduction / tease ?
Do not hesitate to revert some of the changes I've done !
Have a good day,
Michel
Le lun. 2 déc. 2019 à 15:41, Timothy Legge ***@***.***> a
écrit :
> I would like to publish it soon but time is relative - I started that
blog
> months ago (before you docker compose work)
>
> —
> You are receiving this because you were mentioned.
> Reply to this email directly, view it on GitHub
> <
#6?email_source=notifications&email_token=ACZAG2NE227XHLBPC3NZSZTQWUNCBA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFTWREY#issuecomment-560425107
>,
> or unsubscribe
> <
https://github.com/notifications/unsubscribe-auth/ACZAG2M7YWXAKMXHSNNUD4LQWUNCBANCNFSM4JMIATKA
>
> .
>
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=AAH3N6ZN327O3EZEV66VKADQWZFAPA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFZFWAQ#issuecomment-561142530>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAH3N65OA5MJE4E2ZOW24PDQWZFAPANCNFSM4JMIATKA>
.
|
What distro do you use? I have tested on Ubuntu and RedHat EL and the
name of the container is docker-foswiki_solr_1 and
docker-foswiki_foswiki_1
The command that I use works fine
Tim
…On Tue, Dec 3, 2019 at 8:18 AM MichelMallejac ***@***.***> wrote:
Hello Tim,
I've done some edit to the blog post.
I've removed the assumption about where the repo is git-cloned.
The name of the containers is always dockerfoswiki_... (based on the
current folder minus special characters : docker-foswiki -> dockerfoswiki)
About *With Docker one often uses a nginx container to proxy to multiple
docker containers on one server *: to me this sounds like load-balancing,
see what I've done, is it clearer ?
I woud also suggest to put the Features chapter at the end of the topic ?
Also maybe to put the %TOC% above the introduction / tease ?
Do not hesitate to revert some of the changes I've done !
Have a good day,
Michel
Le lun. 2 déc. 2019 à 15:41, Timothy Legge ***@***.***> a
écrit :
> I would like to publish it soon but time is relative - I started that blog
> months ago (before you docker compose work)
>
> —
> You are receiving this because you were mentioned.
> Reply to this email directly, view it on GitHub
> <#6?email_source=notifications&email_token=ACZAG2NE227XHLBPC3NZSZTQWUNCBA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFTWREY#issuecomment-560425107>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/ACZAG2M7YWXAKMXHSNNUD4LQWUNCBANCNFSM4JMIATKA>
> .
>
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
yes you're right ! sorry about that mess
In details :
Hmm.... got it, but on my Ubuntu 18.04 laptop, docker ps returns me the
following containers name :
- dockerfoswiki_solr_1
- dockerfoswiki_setup_1
- dockerfoswiki_foswiki_1
within the cloned git hub project folder : docker-foswiki
I am using :
$ docker-compose --version
docker-compose version 1.17.1, build unknown
Which looks pretty old !! I've installed that from the standard Ubuntu
repo. I see now thath the newest version is 1.25
I believe that you have a much newer version than mine ?
See docker/compose#6316 It looks like an long
story !
But if the new version uses correctly the folder name, why don't you just
use
docker-foswiki_solr_1 ??
everyone will have docker-foswiki as the folder name, so there is no reason
to use a basename(pwd) ??
Le mar. 3 déc. 2019 à 13:51, Timothy Legge <notifications@github.com> a
écrit :
… What distro do you use? I have tested on Ubuntu and RedHat EL and the
name of the container is docker-foswiki_solr_1 and
docker-foswiki_foswiki_1
The command that I use works fine
Tim
On Tue, Dec 3, 2019 at 8:18 AM MichelMallejac ***@***.***>
wrote:
>
> Hello Tim,
>
> I've done some edit to the blog post.
>
> I've removed the assumption about where the repo is git-cloned.
>
> The name of the containers is always dockerfoswiki_... (based on the
> current folder minus special characters : docker-foswiki ->
dockerfoswiki)
>
> About *With Docker one often uses a nginx container to proxy to multiple
> docker containers on one server *: to me this sounds like load-balancing,
> see what I've done, is it clearer ?
>
> I woud also suggest to put the Features chapter at the end of the topic ?
> Also maybe to put the %TOC% above the introduction / tease ?
>
> Do not hesitate to revert some of the changes I've done !
>
> Have a good day,
> Michel
>
>
>
>
> Le lun. 2 déc. 2019 à 15:41, Timothy Legge ***@***.***> a
> écrit :
>
> > I would like to publish it soon but time is relative - I started that
blog
> > months ago (before you docker compose work)
> >
> > —
> > You are receiving this because you were mentioned.
> > Reply to this email directly, view it on GitHub
> > <
#6?email_source=notifications&email_token=ACZAG2NE227XHLBPC3NZSZTQWUNCBA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFTWREY#issuecomment-560425107
>,
> > or unsubscribe
> > <
https://github.com/notifications/unsubscribe-auth/ACZAG2M7YWXAKMXHSNNUD4LQWUNCBANCNFSM4JMIATKA
>
> > .
> >
>
> —
> You are receiving this because you were mentioned.
> Reply to this email directly, view it on GitHub, or unsubscribe.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=ACZAG2ODY3P5PBZ4HFV4WH3QWZI4DA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEFZIJYY#issuecomment-561153251>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZAG2IPMNPV3PSM2XAK5N3QWZI4DANCNFSM4JMIATKA>
.
|
Yeah, I will change it to that. But I had been moving the yaml file from location to location to test a clean build for something and the basename was easier to up arrow... |
Yes, I was 1.24.1 |
I have also added a blurb to the top of the blog about an issue I ran into today. My Foswiki installation has never had that issue but... |
*version *: thanks ! I'll update my servers, not use the default Ubuntu
repo (I usually check this, I was too confident on this one !)
*$(basename(pwd)) and d_type* : I think these are two among dozens of
specifics that one can have during its docker experience and its own way of
doing things.... KISS principle ?
Le mer. 4 déc. 2019 à 02:40, Timothy Legge <notifications@github.com> a
écrit :
… I have also added a blurb to the top of the blog about an issue I ran into
today. My Foswiki installation has never had that issue but...
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#6?email_source=notifications&email_token=ACZAG2IB3K2LD7SYJ333ZHDQW4DAPA5CNFSM4JMIATKKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEF3NLRY#issuecomment-561436103>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACZAG2INL6JOIS4YRKAR2BDQW4DAPANCNFSM4JMIATKA>
.
|
Hello again,
Not being familiar yet with docker (learning !), I am wondering about the Solr install.
Should I use docker-compose with the solr docker image and combine it with your using docker-compose ? Or should it be installed within your docker image ?
Also which version of Solr should I use here ? The SolrPlugin page mention 5 or later : is the latest Solr image (8.3.0) fine ?
Many thanks !
Michel
The text was updated successfully, but these errors were encountered: