Displaying 20 results from an estimated 500 matches similar to: "Multicast panic caused by elasticsearch"
2016 Jul 28
2
ElasticSearch Logrotate not working
Hey guys,
I have this log rotation script setup in my /etc/logrotate.d folder
/var/log/elasticsearch/*.log {
daily
rotate 100
size 50M
copytruncate
compress
delaycompress
missingok
notifempty
create 644 elasticsearch elasticsearch
}
And I notice that log files are still being generated that are upwards of 7
or 8 GBs. Can anyone point out to me where the
2019 Feb 19
3
elasticsearch connection refused
Hallo,
is anyone here using elasticsearch on centos?
I tried several configs to configure external access but nothing is working.
My tests:
telnet localhost or 127.0.0.1 9200 works local on the machine
telnet 192.168.242.4 9200 connection refused local on the machine. So
it is clear that access from other systems can not work.
Is there perhaps something special to consider when using centos 7?
2019 Feb 19
3
elasticsearch connection refused
Am 19.02.2019 um 13:55 schrieb Ionut Hoza:
> Hi Ralf,
>
> You should check you firewall configuration ... most probably you need to
> allow port 9200.
> Also check if elasticsearch service is listening on all interfaces or just
> localhost (127.0.0.1).
Hallo,
the firewall is disabled.
I tried several variations in the config-file.
0.0.0.0
192.168.242.4
Only 127.0.0.1 is
2019 Feb 19
3
elasticsearch connection refused
On Tue, 2019-02-19 at 14:17 +0000, Laack, Andrea P wrote:
> Selinux will not allow connections on other than default http ports.
>
> semanage port -m -t http_port_t -p tcp 9200
It's not a web server port - elasticsearch is a database.
P.
2020 Mar 21
2
How to implement Spotlight support using ElasticSearch
Samba 4.12 release notes
<https://www.samba.org/samba/history/samba-4.12.0.html> mention "New
Spotlight backend for Elasticsearch" and specify some new parameters for
smb.conf, but there appear to be zero guides or further instructions for
getting this to work.
I'm not even clear how filesystem indexing is supposed to work.
ElasticSearch appears to be simply a searchable
2015 Jun 23
2
About Xapian vs ElasticSearch
I was looking for performance comparisons.
I just found this link (http://blog.inoi.fi/2010/10/migrating-from-xapian-to-elasticsearch.html <http://blog.inoi.fi/2010/10/migrating-from-xapian-to-elasticsearch.html>).
This was write on 2010.
Could someone comment it ?
Is There some truth in what he said?
I hate java, and didn?t want to back to java search engines...
2013 Jun 26
2
Dovecot FTS using ElasticSearch
Hi,
I would like to know if is possible to use ElasticSearch instead of Solr
for FTS.
Regards,
Erick Vitor de Barros.
2015 Jan 12
1
Initial development work on fts-elasticsearch
Hi all,
I have started work on an ElasticSearch FTS plugin for Dovecot.
It's available now on GitHub at:
https://github.com/ascendantcom/fts-elasticsearch
Please note that it is still in heavy development right now. It
supports indexing, searching and expunging with some caveats (no
multi-mailbox search or attachments).
Pull requests, suggestions and bug reports very welcome!
Cheers,
2020 Sep 17
2
Spotlight with Elasticsearch
Hi,
Is anyone using Spotlight with Elasticsearch in production and what kind of tweaking have you had to do? Certain search types seem to work out of the box, but others not. Perhaps fscrawler and Elasticsearch need some customization that the wiki doesn?t mention. There also seems to be a difference in using the main search box in the Finder window or the more granular options below, even if
2019 Feb 22
1
elasticsearch connection refused
On 2019-02-19, Pete Biggs <pete at biggs.org.uk> wrote:
> On Tue, 2019-02-19 at 14:26 +0000, Pete Biggs wrote:
>>
>> It's not a web server port - elasticsearch is a database.
>
> Sorry, that was a bit abrupt - yes, it sort of looks like a web server.
It's a bit of both. It is queryable like a database, but it answers
requests using HTTP methods.
--keith
--
2011 Nov 15
2
Possible pam_ssh bug?
I have a shell user who is able to login to his accounts via sshd on FreeBSD 8.2 using any password. The user had a .ssh/id_rsa and .ssh/id_rsa.pub key pair without a password but nullok was not specified, so I think this should be considered a bug.
During diagnosis, /etc/pam.d/sshd was configured for authentication using:
-------------
auth required pam_ssh.so
2009 Oct 12
1
How to hide tick lines behind the "box-and-whisker" 's in a boxplot
Dear R people,
I wonder how to hide tick lines behind other figures in a plot, e.g.
in a boxplot.
# Sample code:
x<- c(rep(4,50),rep(5,20),rep(6,50),rnorm(20,5,1))
boxplot(x)
axis(2,tck=1,col.ticks='grey',lty=5 )
# end of sample code
The tick lines is put on top of the box-plot, but I would like to put
these lines behind the box and whiskers..
Regards
Helmer
2002 Jul 25
15
Changing ACLs as administrator
One work-around would be to create a hidden share that only Domain Admins
can access. The use "force user=root" on that share. Then you'll be able to
change ACL's and not be root.
Josh
> -----Original Message-----
> From: Tanstaafl [mailto:tanstaafl_bh@netzero.net]
> Sent: Thursday, July 25, 2002 1:36 PM
> To: 'Samba List'
> Subject: Re: [Samba] Changing
2004 May 09
2
2.6.2 not displaying permissions errors on client side
Hello,
Noticed this (bug?) while testing out rsync. For a little background, I
need to push files real-time to some front-end servers, and I am
thinking of switching from some custom shell scripts that do this job
to rsync. I am thinking of running rsync as a daemon on the front-end
servers, and doing an upload from the back-end server to push the data
out as it comes in.
So, here is the deal:
2002 Jul 24
3
taking ownership
Hello,
I have winbind set up and working with Linux 2.2.20acl, as far as
I can tell everything works except for "Taking Ownership" and
modification of permissions by group members.
I have a user ( we'll call him "user" ) who is in the DOMAIN+Employees group
( this groups has full control over FILE.doc ).
If I try to change permissions from a Windows 2k client, I get an
2016 Jul 28
0
ElasticSearch Logrotate not working
On 07/28/2016 07:40 AM, Tim Dunphy wrote:
> Hey guys,
>
> I have this log rotation script setup in my /etc/logrotate.d folder
>
> /var/log/elasticsearch/*.log {
> daily
> rotate 100
> size 50M
> copytruncate
> compress
> delaycompress
> missingok
> notifempty
> create 644 elasticsearch elasticsearch
> }
>
>
2024 May 30
0
elasticsearch max results ignored
I noticed during testing a new installation that "elasticsearch:max results? seems to be ignored in Samba 4.19.6. Any limit I set doesn?t stick and I get results over the limit.
I tried setting it both in global section and in a share. Leaving it out altogether also results in results over the default limit of 100.
Anyone else notice this? I?m running Samba on Debian 12 LXC container.
2015 Jun 23
0
About Xapian vs ElasticSearch
I've done a number of small projects (<1 mil) docs w xapian. However when our needs grew to a couple of hundred million docs no go. Index times get insanely slow very quickly We add about 250,000 docs a day. You can play games with switching indexes during updates and multiple remote dDBs. But why. Using ES we index 1000 new docs in 4 seconds. Our search times are subsecond in most
2019 Feb 19
0
elasticsearch connection refused
Hi Ralf,
You should check you firewall configuration ... most probably you need to
allow port 9200.
Also check if elasticsearch service is listening on all interfaces or just
localhost (127.0.0.1).
-I.
On Tue, Feb 19, 2019 at 2:48 PM Ralf Prengel <ralf.prengel at rprengel.de>
wrote:
> Hallo,
> is anyone here using elasticsearch on centos?
> I tried several configs to configure
2019 Feb 19
0
elasticsearch connection refused
Selinux will not allow connections on other than default http ports.
semanage port -m -t http_port_t -p tcp 9200
Andrea
-----Original Message-----
From: CentOS [mailto:centos-bounces at centos.org] On Behalf Of Ralf Prengel
Sent: Tuesday, February 19, 2019 8:09 AM
To: centos at centos.org
Subject: {EXTERNAL} Re: [CentOS] elasticsearch connection refused
Am 19.02.2019 um 13:55 schrieb Ionut