Displaying 20 results from an estimated 213 matches for "ip_addresses".
2009 May 15
0
[PATCH server] use service layer for Network controller.
...te failed for some networks",
+ failures, successes)
+ end
+ render :json => { :object => "network", :success => true,
+ :alert => "Networks were successfully deleted." }
+ end
- def edit_network_ip_addresses
- @network = Network.find(params[:id])
+ def edit_network_ip_addresses
+ svc_modify(params[:id])
render :layout => 'popup'
- end
+ end
########################## Ip Address related actions
- def ip_addresses_json
- @parent_type = params[:parent_type]
- if...
2008 Sep 18
2
o2hb_do_disk_heartbeat:982:ERROR
Hi everyone;
I have a problem on my 10 nodes cluster with ocfs2 1.2.9 and the OS is RHEL 4.7 AS.
9 nodes can start o2cb service and mount san disks on startup however one node can not do that. My cluster configuration is :
node:
ip_port = 7777
ip_address = 192.168.5.1
number = 0
name = fa01
cluster = ocfs2
node:
ip_port =
2009 Nov 03
0
[PATCH server] suggest ip address for nics/bondings on edit host/vm network forms
...trollers/vm_controller.rb
+++ b/src/app/controllers/vm_controller.rb
@@ -193,7 +193,7 @@ class VmController < ApplicationController
networks.each{ |net|
nnic = Nic.new(:mac => Nic::gen_mac, :network => net)
if(net.boot_type.proto == 'static')
- nnic.ip_addresses << IpAddress.new(:address => '127.0.0.1') # FIXME
+ nnic.ip_addresses << IpAddress.new(:address => net.gen_address)
end
@nics.push nnic
}
diff --git a/src/app/models/ip_address.rb b/src/app/models/ip_address.rb
index 13f5d19..2909e4e 100644...
2009 Sep 23
0
[PATCH server] consolidated network & routing info ui's
...2 +-
src/app/models/network.rb | 2 +-
src/app/models/nic.rb | 2 +-
src/app/views/network/_form.rhtml | 15 +++++++++++
src/app/views/network/_ip_address_form.rhtml | 8 +++++-
.../views/network/edit_network_ip_addresses.rhtml | 13 ---------
src/app/views/network/show.rhtml | 4 ---
8 files changed, 46 insertions(+), 27 deletions(-)
delete mode 100644 src/app/views/network/edit_network_ip_addresses.rhtml
diff --git a/src/app/controllers/network_controller.rb b/src/app/controllers/network_...
2007 Jul 07
2
Adding new nodes to OCFS2?
I looked around, found older post which seems not applicable anymore. I
have a cluster of 2 nodes right now, which has 3 OCFS2 file systems. All
the file systems were formatted with 4 node slots. I added the two news
nodes (by hand, by ocfs2console and o2cb_ctl), so my
/etc/ofcfs/cluster.conf looks right:
node:
ip_port = 7777
ip_address = 192.168.201.1
number = 0
2007 Sep 06
1
60% full and writes fail..
I have a setup with lot's of small files (Maildir), in 4 different
volumes and for some
reason the volumes are full when they reach 60% usage (as reported by
df ).
This was ofcourse a bit of a supprise for me .. lots of failed
writes, bounced messages
and very angry customers.
Has anybody on this list seen this before (not the angry customers ;-) ?
Regards,
=paulv
# echo "ls
2008 Sep 18
0
Ocfs2-users Digest, Vol 57, Issue 14
I think I might have miss understood where it is failing, has this file
been added to the DB on the web site or does it fail when you try to
onfigure this?
Carle Simmonds
Infrastructure Consultant
Technology Services
Experian UK Ltd
__________________________________________________
Tel: +44 (0)115 941 0888 (main switchboard)
Mobile: +44 (0)7813 854834
E-Mail: carle.simmonds at uk.experian.com
2008 Oct 03
2
OCFS2 with Loop device
hi there
i try to setup OCFS2 with loop device /dev/loop0
i've 4 servers running SLES10 SP2.
internal ip's: 192.168.55.1, .2, .3 and .6
my cluster.conf:
--------------------------------------------
node:
ip_port = 7777
ip_address = 192.168.55.1
number = 0
name = www
cluster = cawww
node:
ip_port = 7777
ip_address = 192.168.55.2
2020 May 12
0
last_login_dict: Failed to write value: dict-server returned failure: sql dict: commit failed
Hello,
I get last_login_dict: Failed to write value: dict-server returned
failure: sql dict: commit failed randomly in the logs:
---
???????1 mailserver dovecot: imap(test-email-bb at exemple.com)
<NtiT9H2SFIVcuGID> [xxx.xxx.xxx.xxx]: Error: last_login_dict: Failed to
write value: dict-server returned failure: sql dict: commit failed:
INSERT, UPDATE command denied to user
2009 Oct 06
0
[PATCH server] new host networking wui
...+ def update_network
+ # adjust parameters as necessary
+ params[:nics] = {} if params[:nics].nil?
+ params[:bondings] = {} if params[:bondings].nil?
+ params[:nics].each { |id,n|
+ unless n[:ip_address].nil?
+ # FIXME make this able to be v4 or v6 address
+ n[:ip_addresses] = [IpV4Address.new({ :address => n[:ip_address] })]
+ n.delete(:ip_address)
+ end
+ }
+ params[:bondings].each { |id,b|
+ unless b[:ip_address].nil?
+ # FIXME make this able to be v4 or v6 address
+ b[:ip_addresses] = [IpV4Address.new({ :address => b[:ip_...
2006 Aug 16
1
net user add disables remote account automatically?
I notice when issuing the command "net rpc user testuser -S ip_address -U
administrator%password" that the testuser gets added to the remote machine
(Win 2k3) sucessfully, however the account is disabled.
After adding the user remotely it requires that the administrator log into
the remote machine "ip_address" to enable the newly created account.
Is there a way to add a user
2011 Feb 28
2
ocfs2 crash with bugs reports (dlmmaster.c)
Hi,
After problem described in http://oss.oracle.com/pipermail/ocfs2-users/2010-
December/004854.html we've upgraded kernels and ocfs2-tools on every node.
The present versions are:
kernel 2.6.32-bpo.5-amd64 (from debian lenny-backports)
ocfs2-tolls 1.4.4-3 (from debian squeeze)
We didn't noticed any problems in logs untill last friday, when the whole
ocfs2 cluster crashed.
We know
2007 Nov 01
2
Writing controller specs
One thing that is bothering me about my controller specs is that
sometimes I end up with a number of examples that are the same except
for the example name.
The reason that this happens is that I''ve expressed all the expected
behavior with should_receive. While this does more or less work as
intended it doesn''t feel right.
As an example, let''s say I''m writing
2009 Aug 12
1
In odbcDriverConnect ODBC connection failed
R-sig-Debian help,
I have installed an ODBC Driver for Linux.
I want to connect to our database through R via:
>library(RODBC)
>con <- odbcDriverConnect("SERVER=IP_address:PORT;DRIVER=ORACLE;DATABASE=MAGNUS")
Warning message:
In odbcDriverConnect("SERVER=IP_address:PORT;DRIVER=ORACLE;DATABASE=MAGNUS") :
ODBC connection failed
I don't really know whether this
2006 Dec 11
1
Can't mount share DFS fron AD on a Linux Box.
Hello,
I've got an Ubuntu Workstation integrated in an Active Directory domain. I'm
really authenticated to the domain (with Kerberos clients, Winbind and Samba)
and I can list the users of the domain with the wbinfo command.
There's a DFS root share that is defined on each DC of the AD domain.
When I try to mount that share with the mount.smbfs command :
# mount -t smbfs
2009 Jun 30
0
[PATCH server] permit many-to-many vms / networks relationship
...ditions = ""
+ @nics = []
+
+ unless @vm.nil?
+ @vm.nics.each { |nic|
+ nnic = Nic.new(:mac => nic.mac,
+ :vm_id => @vm.id,
+ :network => nic.network)
+ if(nic.network.boot_type.proto == 'static')
+ nnic.ip_addresses << IpAddress.new(:address => nic.ip_address)
+ end
+ @nics.push nnic
+
+ net_conditions += (net_conditions == "" ? "" : " AND ") +
+ "id != " + nic.network_id.to_s
+ }
+ end
+
+ networks = Network...
2011 Jun 27
1
multiple cluster doesn't work
We're trying to setup 3 PRDM partitions (VMware) across 2 nodes. As long as
only one is configured in cluster.conf, there's not problem. As soon as we
try to use 2 or more we get issues.
It looks the same as bug 636:
http://oss.oracle.com/bugzilla/show_bug.cgi?id=636
I posted my cluster.conf and command line results there. I'm including them
here in the hopes that someone on this
2006 Feb 23
6
username as extension
Is there a way to have extensions automatically created for
registered sip users ?
I did some investigation and found some hope in chan_sip with
relation to the somewhat undocumented usereqphone option but i may be
totally off track.
All i want to be able to do is send a call to number@ip_address where
the number is the username configured on the phone that has
registered with asterisk
2013 Dec 16
1
Re: First & long question
On 12/16/2013 08:53 AM, Joaquim Barrera wrote:
[please don't top-post on technical lists]
> Excuse me for the duplicate anwer but I observed exactly what I was
> telling you. I execute "sudo ./run tools/virsh" and then:
If you are running virsh as sudo, then you must remember that virsh is
running under root, not you.
>
> 'connect
2009 Jul 24
1
permit many-to-many vms / networks relationship redux
redux patchset permitting a vm to be associated with
multiple networks and vice-versa. updated patchset so
as to be applicable against current oVirt server HEAD
these patches may be applied in any order, they all
need to be pushed together