search for: adminnodefqdn

Displaying 5 results from an estimated 5 matches for "adminnodefqdn".

2009 May 11
1
[PATCH server] Lower apache retry interval
...necting more often to the ovirt backend so when it restarts, it's less noticeable to the user. --- a/conf/ovirt-server.conf +++ b/conf/ovirt-server.conf @@ -21,7 +21,7 @@ NameVirtualHost AdminNetIpAddress:80 TransferLog /etc/httpd/logs/access_log LogLevel warn - ProxyPass /ovirt http://AdminNodeFQDN/ovirt + ProxyPass /ovirt http://AdminNodeFQDN/ovirt retry=3 ProxyPassReverse /ovirt http://AdminNodeFQDN/ovirt </VirtualHost>
2009 Nov 26
2
[error] avahi_entry_group_add_service_strlst("AdminNodeFQDN") failed: Invalid host name
...owing error in /var/log/http/error.log [Thu Nov 26 11:29:11 2009] [notice] Apache/2.2.13 (Unix) DAV/2 mod_auth_kerb/5.4 mod_nss/2.2.11 NSS/3.12.2.0 mod_python/3.3.1 Python/2.6 configured -- resuming normal operations [Thu Nov 26 11:29:11 2009] [error] avahi_entry_group_add_service_strlst("AdminNodeFQDN") failed: Invalid host name /usr/lib/ruby/gems/1.8/gems/activerecord-2.3.2/lib/active_record/connection_adapters/abstract_adapter.rb:212:in `log': PGError: ERROR: relation "pools" does not exist (ActiveRecord::StatementInvalid) : SELECT a.attname, format_type(a.at...
2009 Sep 17
1
[PATCH server] oVirt server single network installer
...- LogLevel warn - - RewriteEngine On - RewriteMap vmnodes prg:/usr/bin/ovirt-vm2node - RewriteRule ^/terminal/(.+)/anyterm-module$ http://${vmnodes:$1}:81/anyterm-module [P] - RewriteRule ^/terminal/(.+)/(.*\.(html|js|css|gif))*$ http://127.0.0.1/terminal/$2 [P,NE] - - ProxyPass /ovirt http://AdminNodeFQDN/ovirt retry=3 - ProxyPassReverse /ovirt http://AdminNodeFQDN/ovirt -</VirtualHost> - -<VirtualHost AdminNetIpAddress:80> - - ServerAlias AdminNodeFQDN - ServerName AdminNodeFQDN:80 - - ErrorLog /etc/httpd/logs/error_log - TransferLog /etc/httpd/logs/access_log - LogLevel warn - -...
2009 May 21
2
[PATCH server] Fix anyterm for multinode support
...P,NE] + RewriteRule ^/terminal/(.*)/(.*\.(js|css|gif))$ http://${vmnodes:anyterm}:81/$2 [P] + RewriteRule ^/terminal/(.*)/proxy/anyterm-module$ http://${vmnodes:$1}:81/$1 [P] + RewriteRule ^/terminal/(.*)/$ http://${vmnodes:$1}:81/anyterm.html?param=$1 [P,NE] + ProxyPass /ovirt http://AdminNodeFQDN/ovirt retry=3 diff --git a/src/app/controllers/vm_controller.rb b/src/app/controllers/vm_controller.rb index 4f38cc4..f0e10d7 100644 --- a/src/app/controllers/vm_controller.rb +++ b/src/app/controllers/vm_controller.rb @@ -43,7 +43,7 @@ class VmController < ApplicationController @vm = Vm.fi...
2009 Jul 16
2
[PATCH server] updated anyterm/ovirt integration
...RewriteRule ^/terminal/(.*)/$ http://${vmnodes:$1}:81/anyterm.html?param=$1 [P,NE] - - + RewriteRule ^/terminal/(.+)/anyterm-module$ http://${vmnodes:$1}:81/anyterm-module [P] + RewriteRule ^/terminal/(.+)/(.*\.(html|js|css|gif))*$ http://127.0.0.1/terminal/$2 [P,NE] ProxyPass /ovirt http://AdminNodeFQDN/ovirt retry=3 ProxyPassReverse /ovirt http://AdminNodeFQDN/ovirt - </VirtualHost> <VirtualHost AdminNetIpAddress:80> @@ -85,3 +81,8 @@ ProxyPassReverse /ovirt/stylesheets ! ProxyPassReverse /ovirt/errors ! </VirtualHost> + +Alias /terminal /usr/share/ovirt-anyterm +<...