"main" panel domain lost after most recent RC5 update - ergo - 06-16-2008 06:05 PM
after the most recent RC5 update was uploaded again( fix for email - thanks R@s), ive run the update, and all of my websites work, apart the one i should access my panel, webmail etc.
i cant locate any reason for that to happen.
all other sites are in sites-enabled, and the panel vhost file seems in place too.
RE: "main" panel domain lost after most recent RC5 update - ergo - 06-17-2008 12:31 AM
hmm, so no one had that problem since yesterdays update ?
RE: "main" panel domain lost after most recent RC5 update - sci2tech - 06-17-2008 01:11 AM
Post here this file: /etc/apache2/sites-enabled/00_master.conf
RE: "main" panel domain lost after most recent RC5 update - ergo - 06-17-2008 01:32 AM
here you go
Code:
#
# Master Begin
#
<VirtualHost 205.134.253.25:80>
ServerAdmin info@webreactor.eu
DocumentRoot /var/www/ispcp/gui
ServerName admin.server.webreactor.eu
ErrorLog /var/log/apache2/users/admin.server.webreactor.eu-error.log
TransferLog /var/log/apache2/users/admin.server.webreactor.eu-access.log
CustomLog /var/log/apache2/admin.server.webreactor.eu-traf.log traff
CustomLog /var/log/apache2/admin.server.webreactor.eu-combined.log combined
Alias /errors /var/www/ispcp/gui/errordocs/
ErrorDocument 401 /errors/401.html
ErrorDocument 403 /errors/403.html
ErrorDocument 404 /errors/404.html
ErrorDocument 500 /errors/500.html
ErrorDocument 503 /errors/503.html
Alias /pma /var/www/ispcp/gui/tools/pma/
Alias /webmail /var/www/ispcp/gui/tools/webmail/
Alias /ftp /var/www/ispcp/gui/tools/filemanager/
<IfModule suexec_module>
SuexecUserGroup vu2000 vu2000
</IfModule>
<Directory /var/www/ispcp/gui>
Options -Indexes Includes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<IfModule mod_fastcgi.c>
ScriptAlias /php4/ /var/www/fcgi/master/
ScriptAlias /php5/ /var/www/fcgi/master/
<Directory "/var/www/fcgi/master">
AllowOverride None
Options +ExecCGI MultiViews -Indexes
Order allow,deny
Allow from all
</Directory>
</IfModule>
<IfModule mod_php4.c>
<Directory /var/www/ispcp/gui>
php_admin_value open_basedir "/var/www/ispcp/gui/:/etc/ispcp/:/var/run/ispcp.lock:/proc/:/bin/df:/bin/mount:/var/log/rkhunter.log:/var/log/chkrootkit.log:/usr/share/php/"
php_admin_value session.save_path "/var/www/ispcp/gui/phptmp/"
php_admin_value upload_tmp_dir "/var/www/ispcp/gui/phptmp/"
</Directory>
</IfModule>
<IfModule mod_php5.c>
<Directory /var/www/ispcp/gui>
php_admin_value open_basedir "/var/www/ispcp/gui/:/etc/ispcp/:/var/run/ispcp.lock:/proc/:/bin/df:/bin/mount:/var/log/rkhunter.log:/var/log/chkrootkit.log:/usr/share/php/"
php_admin_value session.save_path "/var/www/ispcp/gui/phptmp/"
php_admin_value upload_tmp_dir "/var/www/ispcp/gui/phptmp/"
</Directory>
</IfModule>
</VirtualHost>
#
# Master End
#
[/code]
RE: "main" panel domain lost after most recent RC5 update - sci2tech - 06-17-2008 05:23 AM
Apache seems ok. The problem is with bind. in named.conf do you have the corresponding zone defined? Should look like
Code:
zone "admin.server.webreactor.eu" {
type master;
file "/var/cache/bind/admin.server.webreactor.eu.db";
notify explicit;
};
And in /var/cache/bind/admin.server.webreactor.eu.db do you have zone definition?
RE: "main" panel domain lost after most recent RC5 update - ergo - 06-17-2008 05:36 AM
Code:
$TTL 12H
$ORIGIN admin.server.webreactor.eu.
@ IN SOA ns1.admin.server.webreactor.eu. postmaster.admin.server.webreactor.eu. (
; dmn [admin.server.webreactor.eu] timestamp entry BEGIN.
2008040700 ; Serial
; dmn [admin.server.webreactor.eu] timestamp entry END.
8H ; Refresh
15M ; Retry
4W ; Expire
3H ; Minimum TTL
)
IN NS ns1.admin.server.webreactor.eu.
IN NS ns2.admin.server.webreactor.eu.
IN MX 10 mail.admin.server.webreactor.eu.
admin.server.webreactor.eu. IN A 205.134.253.25
www IN A 205.134.253.25
admin.server.webreactor.eu. IN TXT "v=spf1 a mx ip4:205.134.253.25 ~all"
localhost IN A 127.0.0.1
mail IN A 205.134.253.25
ns1 IN A 205.134.253.25
ns2 IN A 205.134.253.26
; CNAME for mail transfer
imap IN CNAME mail
pop IN CNAME mail
pop3 IN CNAME mail
relay IN CNAME mail
smtp IN CNAME mail
; CNAME for web transfer
ftp IN CNAME www
; sub [{SUB_NAME}] entry BEGIN.
; sub [{SUB_NAME}] entry END.
[/code][/quote]
RE: "main" panel domain lost after most recent RC5 update - sci2tech - 06-17-2008 05:42 AM
Code:
dig @205.134.253.25 admin.server.webreactor.eu.db
; <<>> DiG 9.4.2 <<>> @205.134.253.25 admin.server.webreactor.eu.db
; (1 server found)
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: REFUSED, id: 9540
;; flags: qr rd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
;; WARNING: recursion requested but not available
;; QUESTION SECTION:
;admin.server.webreactor.eu.db. IN A
;; Query time: 207 msec
;; SERVER: 205.134.253.25#53(205.134.253.25)
;; WHEN: Mon Jun 16 20:35:40 2008
;; MSG SIZE rcvd: 47
Not even your server did not resolv this subdomain. Do you have in named conf included this?
Code:
zone "admin.server.webreactor.eu" {
type master;
file "/var/cache/bind/admin.server.webreactor.eu.db";
notify YES
};
Did you try to restart bind? in syslog is something about this?
RE: "main" panel domain lost after most recent RC5 update - ergo - 06-17-2008 05:54 AM
ha there is no entry for that .... but what could have happened ? i wasnt playing with any files.
RE: "main" panel domain lost after most recent RC5 update - sci2tech - 06-17-2008 06:00 AM
Put this entry in named.conf
Code:
zone "admin.server.webreactor.eu" {
type master;
file "/var/cache/bind/admin.server.webreactor.eu.db";
notify YES
};
to include zone definition. Don`t know what hapend. If is ispcp related it will be reported by other and fix. It did not happened to me, but I did do some modification before to this files.
RE: "main" panel domain lost after most recent RC5 update - ergo - 06-17-2008 06:02 AM
ok it works ive added that entry, but is there an automatic way to regenerate all the files ?
the regenerate configs howto from wiki did not do the trick for me it seems...
|