Displaying 20 results from an estimated 10000 matches similar to: "No connection between nodes on same LAN"
2014 Jan 21
3
Network pause issue.
Howdy Folks,
I've got a 5 node setup here. My server "home" is the primary server that all other servers connect to. The configs on all the servers look like this:
# cat /etc/tinc/home/hosts/node1
Subnet = 10.2.0.0/16
Address = 192.168.2.1
<RSA KEY>
# cat /etc/tinc/home/hosts/node2
Subnet = 10.3.0.0/16
Address = 192.168.3.1
<RSA KEY>
Etc. All the hosts are setup
2011 Mar 03
1
OCFS2 1.4 + DRBD + iSCSI problem with DLM
An HTML attachment was scrubbed...
URL: http://oss.oracle.com/pipermail/ocfs2-users/attachments/20110303/0fbefee6/attachment.html
2012 Nov 14
2
How to filter xml value in R?
Hi,
I have one xml file.
<Class>
<Node1 code ="1"> First node </Node1>
<Node2 code ="1"> Second node </Node2>
<Node3 code ="1"> Third node </Node3>
<Node1 code ="2"> Fourth node </Node1>
</Class>
for (i in 1:xmlSize())
{
print(Class[i]) # how can i filter Node1 ?
}
by
2018 Mar 21
2
how to add a child to a child in XML
I am trying to add a child to a child using XML package in R. the following fails
library(XML)
node1 <- c("val1","val2","val3")
names(node1) <- c("att1","att2","att3")
root <- xmlNode("root", attrs=node1)
node2 <- LETTERS[1:3]
names(node2) <- paste("name",1:3,sep="")
root <-
2012 Nov 01
2
Does anyone know how to evaluate a node hostname in nodes.pp file?
Does any one know how to evaluate a node hostname in the nodes.pp file?
for example something like this..
node ''node1.com'', ''node2.com'', ''node3.com'' {
case node.name {
''node1.com'' : { include solaris }
''node2.com'' : { include redhat }
''node3.com'' : { include aix
2012 Feb 22
3
Error 400 on SERVER: Cannot append, variable node_data is defined in this scope at
Hi,
I have an problem that I can''t get resolved. I have an hash like
www.krzywanski.net/archives/703.
With this hash i whould like the add some extra hashes before passing to
the module, i have tryed the code below.
node testnode {
class { ''testclass'':
nodes_data => {
''node1'' => { ''server'' =>
2012 Oct 29
2
array and string
hi all,
I have an array and i would like to convert it into a string format.
e.g.
$server = ["node1", "node2", "node3"]
when I write my puppet codes
exec { "myscript -S $server":
path => XXXX
}
my $server becomes a continual string like: "node1node2node3", instead of
"node1 node2 node3". How can i have a delimiter of space in
2013 Jan 17
2
mcollective puppet plugin not working for centos
I have a test setup like this:
host
=======
*puppet-idc*: Ubuntu 12.04 running ActiveMQ, Mcollective, puppet agent and
server
*puppet-node1*: Ubuntu 12.04 running MCollective and puppet agent
*puppet-node2*: Ubuntu 12.04 running MCollective and puppet agent
*puppet-node3*: CentOS 6.3 running MCollective and puppet agent
I installed the *mcollective-plugins-puppetd plugin* on all *3 Ubuntu
2018 Mar 22
2
how to add a child to a child in XML
Big thanks. newXMLNode works great. Wonder why it is not included in the documentation.
There is newXMLDoc and newXMLNamespace, but no mention of newXMLNode.
Stephen
From: Ben Tupper [mailto:btupper at bigelow.org]
Sent: Wednesday, March 21, 2018 6:18 PM
To: Bond, Stephen
Cc: r-help
Subject: Re: [R] how to add a child to a child in XML
Hi,
XML doesn't use the `$` to access child nodes.
2018 Mar 21
0
how to add a child to a child in XML
Hi,
XML doesn't use the `$` to access child nodes. Instead use either `[name]` to get a list of children of that name or `[[name]]` to get the just the first child of that name encountered in the genealogy. Thus for your example...
> root$child1
NULL
> root[['child1']]
<child1 name1="A" name2="B" name3="C"/>
On the other hand, you might
2018 Mar 13
1
trashcan on dist. repl. volume with geo-replication
Hi Kotresh,
thanks for your repsonse...
answers inside...
best regards
Dietmar
Am 13.03.2018 um 06:38 schrieb Kotresh Hiremath Ravishankar:
> Hi Dietmar,
>
> I am trying to understand the problem and have few questions.
>
> 1. Is trashcan enabled only on master volume?
no, trashcan is also enabled on slave. settings are the same as on
master but trashcan on slave is complete
2014 Apr 11
1
BF_encrypt & BF_decrypt when using AES ?
Hi,
I'm doing some perf profiling, and I can see that BF_encrypt &
BF_decrypt of libcrypto.so.1.0.0 (used in tincd) are consuming CPU time.
I'm using Tinc 1.0.23 and Cipher = aes-128-cbc
BF_encrypt & BF_decrypt seems related to Blowfish
(https://www.openssl.org/docs/crypto/blowfish.html).
Is it normal that BF functions are used even if AES is used ? I do not
know anything about
2017 Aug 21
2
self-heal not working
Sure, it doesn't look like a split brain based on the output:
Brick node1.domain.tld:/data/myvolume/brick
Status: Connected
Number of entries in split-brain: 0
Brick node2.domain.tld:/data/myvolume/brick
Status: Connected
Number of entries in split-brain: 0
Brick node3.domain.tld:/srv/glusterfs/myvolume/brick
Status: Connected
Number of entries in split-brain: 0
> -------- Original
2018 Mar 22
0
how to add a child to a child in XML
Hi,
It's a reasonable question. The answer is that it actually is included, but there are many instances across packages where multiple functions are documented on a single help page. The following brings up such a page... (for XML_3.98-1.9)
> library(XML)
> ?newXMLNode
You can see the same on line...
https://www.rdocumentation.org/packages/XML/versions/3.98-1.9/topics/newXMLDoc
2023 Feb 07
1
File\Directory not healing
Hi All.
Hoping you can help me with a healing problem. I have one file which didn't
self heal.
it looks to be a problem with a directory in the path as one node says it's
dirty. I have a replica volume with arbiter
This is what the 3 nodes say. One brick on each
Node1
getfattr -d -m . -e hex /path/to/dir | grep afr
getfattr: Removing leading '/' from absolute path names
2024 Jan 01
1
Replacing Failed Server Failing
Hi All (and Happy New Year),
We had to replace one of our Gluster Servers in our Trusted Pool this
week (node1).
The new server is now built, with empty folders for the bricks, peered
to the old Nodes (node2 & node3).
We basically followed this guide:
https://docs.rackspace.com/docs/recover-from-a-failed-server-in-a-glusterfs-array
We are using the same/old IP address.
So when we try
2017 Aug 21
2
self-heal not working
Hi Ben,
So it is really a 0 kBytes file everywhere (all nodes including the arbiter and from the client).
Here below you will find the output you requested. Hopefully that will help to find out why this specific file is not healing... Let me know if you need any more information. Btw node3 is my arbiter node.
NODE1:
STAT:
File:
2017 Jul 20
2
glusterd-locks.c:572:glusterd_mgmt_v3_lock
Hi list,
recently I've noted a strange behaviour of my gluster storage, sometimes
while executing a simple command like "gluster volume status
vm-images-repo" as a response I got "Another transaction is in progress
for vm-images-repo. Please try again after sometime.". This situation
does not get solved simply waiting for but I've to restart glusterd on
the node that
2017 Sep 20
3
Upgrade Gluster 3.7 to 3.12 and add 3rd replica [howto/help]
Hello all fellow GlusterFriends,
I would like you to comment / correct my upgrade procedure steps on replica 2 volume of 3.7.x gluster.
Than I would like to change replica 2 to replica 3 in order to correct quorum issue that Infrastructure currently has.
Infrastructure setup:
- all clients running on same nodes as servers (FUSE mounts)
- under gluster there is ZFS pool running as raidz2 with SSD
2018 Mar 22
1
how to add a child to a child in XML
Just to clarify and hopefully catch the attention of the maintainer:
The newXMLNode function is not mentioned in:
https://cran.r-project.org/web/packages/XML/XML.pdf
which supposedly describes all functions in the package.
Stephen
From: Ben Tupper [mailto:btupper at bigelow.org]
Sent: Thursday, March 22, 2018 10:40 AM
To: Bond, Stephen
Cc: r-help
Subject: Re: [R] how to add a child to a