2013-11-27 6 views
1

안녕하세요 을 jboss AS 6.1으로 설정하려고합니다. 내 클러스터가 잘 작동하고 있습니다. 하지만 /mod_cluster-manager 페이지를 보려고하면 페이지를 찾을 수 없습니다. 오류가 발생합니다. 아파치가 실행 중이며 It works! 페이지가 표시됩니다.
http : // localhost/mod_cluster-manager는 페이지를 찾을 수 없음 오류를 제공합니다. (파일이 존재하지 않습니다 : mod_cluster-1.2.0/httpd-2.2/htdocs/mod_cluster-manager)

mod_cluster 버전 mod_cluster-1.2.0. 액세스하려고 시도하는 URL이며 404 error입니다. http://localhost/mod_cluster-manager

아파치는 여기 port 80

httpd.conf 파일 snipt가에서 실행됩니다.

<IfModule ssl_module> 
    SSLRandomSeed startup builtin 
    SSLRandomSeed connect builtin 
</IfModule> 

LoadModule proxy_module modules/mod_proxy.so 
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so 
#LoadModule proxy_http_module modules/mod_proxy_http.so 

LoadModule proxy_cluster_module modules/mod_proxy_cluster.so 

LoadModule manager_module modules/mod_manager.so 
LoadModule slotmem_module modules/mod_slotmem.so 
LoadModule advertise_module modules/mod_advertise.so 

# MOD_CLUSTER_ADDS 
# Adjust to you hostname and subnet. 
<IfModule manager_module> 
    Listen 127.0.0.1:6666 
    ManagerBalancerName mycluster 
    <VirtualHost 127.0.0.1:6666> 
# <Location /> 
# Order deny,allow 
# Deny from all 
# Allow from 127.0.0.1 
# </Location> 
    <Directory /> 
    Order deny,allow 
    Deny from all 
    Allow from 127.0.0 

    </Directory> 

    KeepAliveTimeout 300 
    MaxKeepAliveRequests 0 
    #ServerAdvertise on http://127.0.0.1:6666 
    AdvertiseFrequency 5 
    #AdvertiseSecurityKey secret 
    #AdvertiseGroup 224.0.1.105:23364 
    EnableMCPMReceive 

    <Location /mod_cluster-manager> 
     SetHandler mod_cluster-manager 
     Order deny,allow 
     Deny from all 
     Allow from 127.0.0 
     AllowDisplay On 
    </Location> 

    </VirtualHost> 
</IfModule> 

아파치 error_log

[Wed Nov 27 10:56:16 2013] [notice] Parent: Received restart signal -- Restarting the server. 
[Wed Nov 27 10:56:16 2013] [notice] Child 2828: Exit event signaled. Child process is ending. 
[Wed Nov 27 10:56:16 2013] [info] Child 2828: Accept thread exiting. 
[Wed Nov 27 10:56:17 2013] [notice] Advertise initialized for process 1940 
[Wed Nov 27 10:56:17 2013] [notice] Apache/2.2.21 (Win32) mod_cluster/1.2.0.Final configured -- resuming normal operations 
[Wed Nov 27 10:56:17 2013] [notice] Server built: Feb 9 2012 22:24:33 
[Wed Nov 27 10:56:17 2013] [notice] Parent: Created child process 6012 
[Wed Nov 27 10:56:17 2013] [debug] mpm_winnt.c(477): Parent: Sent the scoreboard to the child 
[Wed Nov 27 10:56:17 2013] [debug] mod_advertise.c(577): [6012 - 1940] in child post config hook 
[Wed Nov 27 10:56:17 2013] [notice] Child 6012: Child process is running 
[Wed Nov 27 10:56:17 2013] [info] Parent: Duplicating socket 200 and sending it to child process 6012 
[Wed Nov 27 10:56:17 2013] [debug] mpm_winnt.c(398): Child 6012: Retrieved our scoreboard from the parent. 
[Wed Nov 27 10:56:17 2013] [info] Parent: Duplicating socket 196 and sending it to child process 6012 
[Wed Nov 27 10:56:17 2013] [debug] mpm_winnt.c(595): Parent: Sent 2 listeners to child 6012 
[Wed Nov 27 10:56:17 2013] [debug] mpm_winnt.c(554): Child 6012: retrieved 2 listeners from parent 
[Wed Nov 27 10:56:17 2013] [debug] proxy_util.c(1818): proxy: grabbed scoreboard slot 0 in child 6012 for worker proxy:reverse 
[Wed Nov 27 10:56:17 2013] [debug] proxy_util.c(1837): proxy: worker proxy:reverse already initialized 
[Wed Nov 27 10:56:17 2013] [debug] proxy_util.c(1914): proxy: initialized worker 0 in child 6012 for (*) min=0 max=64 smax=64 
[Wed Nov 27 10:56:17 2013] [info] Child 2828: Accept thread exiting. 
[Wed Nov 27 10:56:17 2013] [notice] Child 2828: Released the start mutex 
[Wed Nov 27 10:56:17 2013] [notice] Child 6012: Acquired the start mutex. 
[Wed Nov 27 10:56:17 2013] [info] Child 2828: 64 threads blocked on the completion port 
[Wed Nov 27 10:56:17 2013] [notice] Child 6012: Starting 64 worker threads. 
[Wed Nov 27 10:56:17 2013] [notice] Child 6012: Starting thread to listen on port 6666. 
[Wed Nov 27 10:56:17 2013] [notice] Child 6012: Starting thread to listen on port 80. 
[Wed Nov 27 10:56:18 2013] [debug] mod_proxy_cluster.c(678): update_workers_node starting 
[Wed Nov 27 10:56:18 2013] [debug] mod_proxy_cluster.c(693): update_workers_node done 
[Wed Nov 27 10:56:18 2013] [debug] mod_proxy_cluster.c(678): update_workers_node starting 
[Wed Nov 27 10:56:18 2013] [debug] mod_proxy_cluster.c(693): update_workers_node done 
[Wed Nov 27 10:56:18 2013] [notice] Child 2828: All worker threads have exited. 
[Wed Nov 27 10:56:18 2013] [notice] Child 2828: Child process is exiting 
[Wed Nov 27 10:56:44 2013] [notice] Parent: Received restart signal -- Restarting the server. 
[Wed Nov 27 10:56:44 2013] [notice] Child 6012: Exit event signaled. Child process is ending. 
[Wed Nov 27 10:56:44 2013] [info] Child 6012: Accept thread exiting. 
[Wed Nov 27 10:56:44 2013] [info] Child 6012: Accept thread exiting. 
[Wed Nov 27 10:56:44 2013] [notice] Advertise initialized for process 1940 
[Wed Nov 27 10:56:44 2013] [notice] Apache/2.2.21 (Win32) mod_cluster/1.2.0.Final configured -- resuming normal operations 
[Wed Nov 27 10:56:44 2013] [notice] Server built: Feb 9 2012 22:24:33 
[Wed Nov 27 10:56:44 2013] [notice] Parent: Created child process 6452 
[Wed Nov 27 10:56:44 2013] [debug] mpm_winnt.c(477): Parent: Sent the scoreboard to the child 
[Wed Nov 27 10:56:45 2013] [debug] mod_advertise.c(577): [6452 - 1940] in child post config hook 
[Wed Nov 27 10:56:45 2013] [notice] Child 6452: Child process is running 
[Wed Nov 27 10:56:45 2013] [debug] mpm_winnt.c(398): Child 6452: Retrieved our scoreboard from the parent. 
[Wed Nov 27 10:56:45 2013] [info] Parent: Duplicating socket 200 and sending it to child process 6452 
[Wed Nov 27 10:56:45 2013] [info] Parent: Duplicating socket 196 and sending it to child process 6452 
[Wed Nov 27 10:56:45 2013] [debug] mpm_winnt.c(595): Parent: Sent 2 listeners to child 6452 
[Wed Nov 27 10:56:45 2013] [debug] mpm_winnt.c(554): Child 6452: retrieved 2 listeners from parent 
[Wed Nov 27 10:56:45 2013] [debug] proxy_util.c(1818): proxy: grabbed scoreboard slot 0 in child 6452 for worker proxy:reverse 
[Wed Nov 27 10:56:45 2013] [debug] proxy_util.c(1837): proxy: worker proxy:reverse already initialized 
[Wed Nov 27 10:56:45 2013] [debug] proxy_util.c(1914): proxy: initialized worker 0 in child 6452 for (*) min=0 max=64 smax=64 
[Wed Nov 27 10:56:45 2013] [notice] Child 6452: Acquired the start mutex. 
[Wed Nov 27 10:56:45 2013] [notice] Child 6452: Starting 64 worker threads. 
[Wed Nov 27 10:56:45 2013] [notice] Child 6012: Released the start mutex 
[Wed Nov 27 10:56:45 2013] [info] Child 6012: 64 threads blocked on the completion port 
[Wed Nov 27 10:56:46 2013] [debug] mod_proxy_cluster.c(678): update_workers_node starting 
[Wed Nov 27 10:56:46 2013] [debug] mod_proxy_cluster.c(693): update_workers_node done 
[Wed Nov 27 10:56:46 2013] [debug] mod_proxy_cluster.c(678): update_workers_node starting 
[Wed Nov 27 10:56:46 2013] [debug] mod_proxy_cluster.c(693): update_workers_node done 
[Wed Nov 27 10:56:46 2013] [notice] Child 6012: All worker threads have exited. 
[Wed Nov 27 10:56:46 2013] [notice] Child 6012: Child process is exiting 
[Wed Nov 27 10:56:46 2013] [notice] Child 6452: Starting thread to listen on port 6666. 
[Wed Nov 27 10:56:46 2013] [notice] Child 6452: Starting thread to listen on port 80. 

나는 또한이 오류가 몇 번.

[Wed Nov 27 10:52:52 2013] [error] [client 127.0.0.1] File does not exist: C:/Documents and Settings/user/My Documents/Downloads/openlogic-mod_cluster-1.2.0-windows-ia32-bin-1/mod_cluster-1.2.0/httpd-2.2/htdocs/mod_cluster-manager 

문제가 무엇인지 알아낼 수있는 사람이 있습니까?

답변

1

구성 자체만으로는 관리자 URL이 http://localhost:6666/mod_cluster-manager 일 가능성이 큽니다.

+0

이 답변은 작은 수정안으로 실제로는 '''http : //127.0.0.1 : 6666/mod_cluster-manager'''라고합니다. –