Xen/KVM Virtualization Management Application
  • 日本語
  • English

Karesansui Users


Installed but something is not right

Added by Anonymous 799 days ago

I followed the tutorial and installed karesansui-1.0.3-2-install-pack.tar.gz.

It installs and runs perfectly. But when I go to "http://localhost/karesansui/v1/" the browser gives me a 404.

I tried

telnet localhost 80
get /

It hangs for about 2 minutes before telnet complains of connection closed.

I've turned the firewall off.

I've also run
su -s /bin/bash wwwhde -c "KARESANSUI_CONF=/etc/opt/karesansui/application.conf SEARCH_PATH=/opt/karesansui/lib/python:/opt/hde/lib/python:/opt/pysilhouette/lib/python /opt/karesansui/bin/karesansui.fcgi"

telnet localhost 8080
get /

which returns a page from the httpd.

The log files don't indicate any problem. None of the error logs has any errors.

Help!!!!


Replies

Comment

RE: Installed but something is not right - Added by Taizo ITO 796 days ago

Did you try to GET '/karesansui/v1/'?


$ telnet localhost 8080
Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.
GET /karesansui/v1/ HTTP/1.0

[LF] <-- Input enter key!!

HTTP/1.1 401 Unauthorized
Content-Type: text/html; charset=utf-8
WWW-Authenticate: Basic realm="KARESANSUI_AUTHORIZE"
Date: Mon, 30 Nov 2009 01:14:31 GMT
Server: CherryPy/3.1.2 WSGI Server
unauthorized
Connection closed by foreign host.

or


$ printf "GET /karesansui/v1/ HTTP/1.0\r\n\r\n" | nc localhost 8080
HTTP/1.1 401 Unauthorized
Content-Type: text/html; charset=utf-8
WWW-Authenticate: Basic realm="KARESANSUI_AUTHORIZE"
Date: Mon, 30 Nov 2009 02:07:28 GMT
Server: CherryPy/3.1.2 WSGI Server

unauthorized

thanks.

Reply