Displaying 2 results from an estimated 2 matches for "host03".
Did you mean:
host0
2008 Nov 14
11
External_nodes definition not working. Client states "could not find node"
Hello folks,
Im trying to migrate from static nodes-definition to external nodes
definition.
My script looks like this stolen from
http://reductivelabs.com/trac/puppet/wiki/ExternalNodes:
{{{
#!/usr/bin/perl -w
use warnings;
use YAML qw( Dump );
use Switch;
#initialize vars
our @classes;
our %parameters;
Function to fill @classes and %parameters with correct values
....
print Dump( {
2008 Jul 22
1
NFS V4?
...reading the script, reading the man pages, and looking at the ports using
netstat -l).
However, I can connect using -t nfs in the mount, and -t nfs4 fails.
I don't believe this is a firewall issue, internal IPs are fully open to
each other according to an early rule in iptables.
$ sudo mount host03:/home/ddb /mnt/ddb -t nfs4 -o rw,hard,intr
mount: permission denied
but
$ sudo mount host03:/home/ddb /mnt/ddb -t nfs -o rw,hard,intr
$
I'm not sure I especially care about NFS V4 (this is to share the
programmers' home directories, so it's easy to work on any of the
production syste...