Displaying 20 results from an estimated 34 matches for "testnodes".
Did you mean:
testnode
2013 Aug 12
2
Error while starting the node on ESXi hypervisor
Hi,
Today I was trying to start a node using libvirt on ESX (esxi-5.1)
hypervisor and I got the following error message:
*virsh # define /local/myNode/esxdomain.xml*
*Domain testNode defined from /local/myNode/esxdomain.xml*
*virsh # start testNode*
*error: Failed to start domain testNode*
*error: internal error: Could not start domain: GenericVmConfigFault -
Cannot open the disk
2013 Aug 13
1
Re: Error while starting the node on ESXi hypervisor
Thanks a ton for the reply Matthias.
I am little confused here. How to add volume on my esx server using virsh?
I did SCP and copied my vmdk image to [datastore1] testNode/cluster.vmdk
and also modified my xml file as you suggested. Now when I tried starting
the node it gave me an error message saying:
"error: Failed to start testNode
error: internal error: Could not start domain:
2019 Dec 30
2
dovecot cannot drop privileges inside singularity container
Hi all
I'm facing an issue while running dovecot inside a singularity
(https://sylabs.io/singularity/) container
dovecot version is 2.3.4.1 (configuration below) running on debian
buster, inside a container made with singularity version 3.4.2
unfortunately, when I try to start dovecot, it gives:
Singularity test.sif:~> cat /var/log/mail.log
Dec 30 17:23:38 testnode dovecot: master:
2013 Aug 16
1
Re: Error while adding volume through virsh
Hi Ján,
Thanks a lot for the suggestion. It worked and volume is added to the
datastore. Now if I try to start the node it gives an error saying:
Error: internal error: Could not start domain: FileNotFound - File
[datastore1] testNode/cluster.vmdk was not found."
But .vmdk file exist at this location. What is going wrong here can anyobe
plz suggest. Below is my xml:
<domain
2013 Aug 15
6
Error while adding volume through virsh
Hi,
I was trying to add volume...I got one xml snippet and I modified it
according to my node configuration:
< volume>
<name>testNode/cluster.vmdk </name>
<allocation>0 </allocation>
<capacity unit='G'>2<capacity>
</volume>
Now when I executed "virsh vol-create datastore1 /local/new_volume.xml" one
error message came saying:
2013 Aug 13
0
Re: Error while starting the node on ESXi hypervisor
2013/8/12 varun bhatnagar <varun292006@gmail.com>:
> Hi,
>
> Today I was trying to start a node using libvirt on ESX (esxi-5.1)
> hypervisor and I got the following error message:
>
> virsh # define /local/myNode/esxdomain.xml
> Domain testNode defined from /local/myNode/esxdomain.xml
> virsh # start testNode
> error: Failed to start domain testNode
> error:
2011 Sep 11
3
cucumber puppet - ymllookups
Hi all,
Firstly, I''m using 2.6.9 and have updated to the latest cucumber
puppet gems (cucumber-puppet 0.3.5) that allow for storeconfigs to be
tested - thanks to Nikolay and his post (http://blog.nistu.de/
2011/09/04/testing-exported-resources-with-cucumber-puppet/). Yay!
I have been trying to get some testing of a ''testnode'' which would be
a generic node that I can
2012 Apr 05
3
newly added ruby function executes on the server instead of the node
Hi,
1) I added this test function tom my
/etc/puppet/modules/write_line_to_file/lib/puppet/parser/functions/write_line_to_file.rb
:
*module Puppet::Parser::Functions newfunction(:write_line_to_file) do |args|
filename = args[0]
str = args[1]
File.open(args[0], ''a'') {|fd| fd.puts str }
end
end*
2) I invoked it in the
2013 Jan 04
2
[LLVMdev] TableGen patterns with multiple outputs
Are multi-output patterns in TableGen supposed to work, or is that a known
limitation in the current implementation?
If I have TableGen code like the following...
1242 def SDTTestNode : SDTypeProfile<2, 1, [SDTCisSameAs<0, 1>]>;
1243 def TestNode : SDNode<"NVPTXISD::TestNode", SDTTestNode>;
1244
1245 def MyTestNode : NVPTXInst<(outs Int32Regs:$dst0,
2013 Sep 11
4
getting array of hostnames of clients
...clients of the puppet server.
There doesn''t seem to be a simple way to do this so I''ve tried a few
methods.
I''ve tried a curl expression in a fact like this:
curl -s -k -H "Accept: yaml"
https://localhost:8140/production/facts_search/search?facts.nodetypet=testnodes
where I''ve got a nodetype fact which works fine for me.
Now, this used to work but doesn''t any more. Between it working and now
I''ve changed to using puppetdb. I''m not sure if theres a connection.
The error returned is:
Caught NoMethodError: undefined method...
2013 Jan 07
2
[LLVMdev] TableGen patterns with multiple outputs
Thanks for the info. Is this on someone's list of things to do?
On Sun, Jan 6, 2013 at 7:41 PM, Bob Wilson <bob.wilson at apple.com> wrote:
>
> On Jan 4, 2013, at 9:52 AM, Justin Holewinski <justin.holewinski at gmail.com>
> wrote:
>
> Are multi-output patterns in TableGen supposed to work, or is that a known
> limitation in the current implementation?
>
2020 Jan 02
0
dovecot cannot drop privileges inside singularity container
Have you tried setting linux capabilities, like
NET_BIND_SERVICE,CHOWN,SYS_CHROOT,SETGID? Have you checked the
permissions of paths? I had to relocate the run dir with things like
these
&& mkdir /var/dovecot \
&& mkdir /var/lib/dovecot \
&& (umask 027 ; mkdir /var/dovecot/login) \
&& (umask 022 ; mkdir /var/dovecot/empty) \
&& (umask
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'' =>
2013 Jan 07
0
[LLVMdev] TableGen patterns with multiple outputs
On Jan 4, 2013, at 9:52 AM, Justin Holewinski <justin.holewinski at gmail.com> wrote:
> Are multi-output patterns in TableGen supposed to work, or is that a known limitation in the current implementation?
It is a known limitation. You have to write C++ code to match patterns with multiple outputs.
>
> If I have TableGen code like the following...
>
> 1242 def SDTTestNode
2013 Jan 07
0
[LLVMdev] TableGen patterns with multiple outputs
It has been something we've talked about for years, but I'm not aware of anyone working on it right now.
On Jan 6, 2013, at 5:34 PM, Justin Holewinski <justin.holewinski at gmail.com> wrote:
> Thanks for the info. Is this on someone's list of things to do?
>
>
> On Sun, Jan 6, 2013 at 7:41 PM, Bob Wilson <bob.wilson at apple.com> wrote:
>
> On Jan 4,
2013 Sep 02
0
How to add uplink in ESXi virtual switch
Hi,
I have an ESXi server, on top of it I have created one VM whose IP address
is 192.168.79.1.
I want to connect to the VM on ESXi server from my host machine but I am
not able to do it.
I have created a network "networkforSC" and I have pasted my xml file
content below but I am not able to add any uplink (how to add it?) .
Below is the xml file of my node as well as the network which
2013 Sep 11
2
Re: Help needed in simulating libvirt
Hi Eric,
Thanks for your response.
I like to know how test driver works.
In the libvirt.org for test driver it is mentioned as "It can start with a
pre-configured default config, or be given a path to an alternate config".
Is the config is an xml file where we mentioned some dummy data so that the
test driver will return it as response. If yes then where can I find this
dummy file?
As
2011 Jun 16
7
Problem with usage of arrays
Hi there,
i can''t use array in puppet. Here is my codesnipplet:
$callapidata = [ ''wert1'',''wert2'']
notice $callapidata[1]
A puppetrun results in:
Could not retrieve catalog from remote server: Error 400 on SERVER:
can''t convert String into Integer at /etc/puppet/myenv/modules/
uc4client/manifests/init.pp:41 on node testnode
Thanks for your
2012 Jul 05
7
proper usage of global variables / node variables / +=
Hello puppet masters, I am cleaning up some puppet modules, using
puppet-lint. The warning I am getting is:
top-scope variable being used without an explicit namespace
I can turn this particular check off, but in doing my research I''m
finding all sorts of messages saying to avoid using +=, to avoid using
variables in the node scope, and to switch to a parameterized class
whenever
2013 Sep 11
0
Re: Help needed in simulating libvirt
On Wed, Sep 11, 2013 at 12:50:37PM +0530, Arun Viswanath wrote:
> Hi Eric,
>
> Thanks for your response.
> I like to know how test driver works.
>
> In the libvirt.org for test driver it is mentioned as "It can start with a
> pre-configured default config, or be given a path to an alternate config".
> Is the config is an xml file where we mentioned some dummy