search for: ip_address

Displaying 20 results from an estimated 213 matches for "ip_address".

2009 May 15
0
[PATCH server] use service layer for Network controller.
...ler/svc module, but that would be a much more extensive redesign than we want to deal with for the overall service layer creation refactoring. Signed-off-by: Scott Seago <sseago at redhat.com> --- src/app/controllers/network_controller.rb | 521 ++++++----------------------- src/app/models/ip_address.rb | 11 + src/app/models/network.rb | 12 + src/app/models/physical_network.rb | 4 + src/app/models/vlan.rb | 5 + src/app/services/network_service.rb | 392 ++++++++++++++++++++++ 6 files changed, 534 insertions(+), 411 dele...
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 = 7777 ip_address = 192.168.5.2 number = 1 name = fa02 cluster = ocfs2 node: ip_port = 7777 ip_address = 192.168.5.3 number =...
2009 Nov 03
0
[PATCH server] suggest ip address for nics/bondings on edit host/vm network forms
Provides a mechanism to generate ip addresses for static networks and prefill the 'ip address' fields of the host and vm networking forms w/ the first suggested ip. --- src/app/controllers/vm_controller.rb | 2 +- src/app/models/ip_address.rb | 52 +++++++++++++++++++++++++++++++++ src/app/models/network.rb | 11 +++++++ src/app/models/physical_network.rb | 6 ++++ src/app/models/vlan.rb | 6 ++++ src/app/services/host_service.rb | 2 + src/app/views/host/edit_network.rhtml |...
2009 Sep 23
0
[PATCH server] consolidated network & routing info ui's
...++++++++++++++---- src/app/models/bonding.rb | 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 --gi...
2007 Jul 07
2
Adding new nodes to OCFS2?
...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 name = dbcl1n1 cluster = dbcl1 node: ip_port = 7777 ip_address = 192.168.201.2 number = 1 name = dbcl1n2 cluster = dbcl1 node: ip_port = 7777 ip_address = 192.168.201.3 number = 2...
2007 Sep 06
1
60% full and writes fail..
...1 0 0 0 16-Aug-2007 22:01 truncate_log:0002 63 -rw-r--r-- 1 0 0 0 16-Aug-2007 22:01 truncate_log:0003 debugfs: My custer.conf : cluster: node_count = 2 name = pool_5 node: ip_port = 1015 ip_address = 10.17.178.132 number = 1 name = jaguar cluster = pool_5 node: ip_port = 1015 ip_address = 10.17.178.133 number = 2 name = joon cluster = pool_5 cluster: node_count = 2 name = pool_6 node: ip_port...
2008 Sep 18
0
Ocfs2-users Digest, Vol 57, Issue 14
...quot;iso-8859-9" 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 = 7777 ip_address = 192.168.5.2 number = 1 name = fa02 cluster = ocfs2 node: ip_port = 7777 ip_address = 192.168.5.3 number =...
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 number = 1 name = www2 cluster = cawww node: ip_port = 7777 ip_address = 192.168.55.3 number = 2 name...
2020 May 12
0
last_login_dict: Failed to write value: dict-server returned failure: sql dict: commit failed
...9;dovecot'@'sqlserver' for table 'dovecot_last_login' (reply took 0.003 secs (0.000 in dict wait, 0.003 in other ioloops, 0.000 in locks, async-id reply 0.002 secs ago, started on dict-server 0.003 secs ago, took 0.003 secs)) --- The goal is to keep the unique couple email and ip_address in the table of SQL database and update only timestamp if email and ip_address exist on same row. I have enabled auth_debug and mail_debug but it don't show last_login_dict SQL queries in the log (auth SQL queries are shown). So I have enabled SQL debug on SQL server. In the SQL server log:...
2009 Oct 06
0
[PATCH server] new host networking wui
...troller < ApplicationController render :layout => 'popup' end + 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...
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 th...
2011 Feb 28
2
ocfs2 crash with bugs reports (dlmmaster.c)
...ware problem. The sotrage was responsible, we don't have any errors in storage event log. The question is why the other nodes crashed. The configuration is the same as it was in december (cluster.conf). Regards, Piotr Teodorowski -------------- next part -------------- node: ip_port = 7777 ip_address = 172.28.4.48 number = 0 name = es1prgw01 cluster = ocfs2 node: ip_port = 7777 ip_address = 172.28.4.56 number = 1 name = es4prgw01 cluster = ocfs2 node: ip_port = 7777 ip_address = 172.28.4.65 number = 3 name = es1prap02 cluster = ocfs2 node: ip_port = 7777 ip_address = 172.28.4....
2007 Nov 01
2
Writing controller specs
...9;'t feel exactly right. Then again, the two expectations already cover the example, so checking the response could just as well be left out. Now, on to adding the recording of the IP address: it ''should record the IP address of the poster'' do @comment.should_receive(:ip_address=).with(''0.0.0.0'') post :create, {:comment => @data} end Obviously this won''t work because the @comment object has not been set up correctly. So, we should also add in that code: it ''should record the IP address of the poster'' do Comment...
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 is the right syntax. I copy-paste files "odbc.ini" and "odbcinst.ini&quot...
2006 Dec 11
1
Can't mount share DFS fron AD on a Linux Box.
...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 //IP_ADDRESS/dc /opt -o username=login, password=pass I see all the directories but they are empty so I think I'm on the DFS root. When I try to mount it with the mount.cifs command : # mount -t cifs //IP_ADDRESS/dc /opt -o username=login, password=pass I've got an error "mount error 20 = Not a d...
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 = Netwo...
2011 Jun 27
1
multiple cluster doesn't work
...r any and all help. Here's my post on the bug: seems like we're back to having this bug again. I'm posting both cluster.conf and the error that happens at the command line. <cluster.conf> cluster: node_count = 2 name = xport1 node: ip_port = 7777 ip_address = 10.8.4.81 number = 1 name = wings cluster = xport1 node: ip_port = 7777 ip_address = 10.8.4.82 number = 2 name = xtc cluster = xport1 cluster: node_count = 2 name = xport2 node: ip_port = 7778 ip_address...
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 on ip_address. From what I understand this should be pretty standard sip functionality no ? Regards, Nathan.
2013 Dec 16
1
Re: First & long question
...cal 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 qemu+ssh://user@IP_ADDRESS:PORT/system' and it asks me the > password. Everything goes right. Yes, for a single connection, remote password authentication over qemu+ssh works. > > 'migrate --verbose --persistent --copy-storage-inc VM1 > qemu+ssh://user@IP_ADDRESS:PORT/system' and it asks me the pas...
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