Pardon the noob question that's probably been answered a lot.
I installed zend on my debian box. It gave me the usual INSTALLATION SUMMARY message afterwards which included "Web interface is accessible from https://localhost:10082/ZendServer"
So after installing it. I tried testing it with a wget command on that box but got a "Connection refused" error:
- Code: Select all
yuval@php-website:/etc/apache2$ wget --no-check-certificate https://localhost:10082/ZendServer
--2010-08-18 20:40:12-- https://localhost:10082/ZendServer
Resolving localhost... 127.0.0.1
Connecting to localhost|127.0.0.1|:10082... failed: Connection refused.
yuval@php-website:/etc/apache2$
the processes seem up. Here's a snippet from a ps command:
- Code: Select all
yuval@php-website:/etc/apache2$ ps aux | grep -i zend
yuval 17326 0.0 0.0 3256 532 pts/31 S+ 20:35 0:00 tail -f /usr/local/zendphp52/zend/var/log/error.log
root 17533 0.0 1.1 151460 23020 ? Ss 20:36 0:00 /usr/local/zendphp52/zend/apache2/bin/httpd -f /usr/local/zendphp52/zend/apache2/conf/httpd.conf -k start
daemon 17563 0.0 0.9 151364 18624 ? S 20:36 0:00 /usr/local/zendphp52/zend/apache2/bin/httpd -f /usr/local/zendphp52/zend/apache2/conf/httpd.conf -k start
.....
it DOES seem to be listening in the 10088 port (per it's message "Apache is up and running on port 10088!" in the INSTALLATION SUMMARY)
- Code: Select all
yuval@php-website:~$ wget http://localhost:10088
--2010-08-18 20:43:12-- http://localhost:10088/
Resolving localhost... 127.0.0.1
Connecting to localhost|127.0.0.1|:10088... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2261 (2.2K) [text/html]
Saving to: "index.html"
100%[===================================================================================================================================================================================================>] 2,261 --.-K/s in 0s
2010-08-18 20:43:12 (134 MB/s) - "index.html" saved [2261/2261]
yuval@php-website:~$
here's a netstat if that helps:
- Code: Select all
yuval@php-website:/etc/apache2$ sudo netstat -nlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 192.168.20.100:80 0.0.0.0:* LISTEN 16992/apache2
tcp 0 0 192.168.20.100:22 0.0.0.0:* LISTEN 7145/sshd
tcp 0 0 0.0.0.0:90 0.0.0.0:* LISTEN 16992/apache2
tcp 0 0 127.0.0.1:10083 0.0.0.0:* LISTEN 17533/httpd
tcp 0 0 0.0.0.0:10088 0.0.0.0:* LISTEN 17533/httpd
Active UNIX domain sockets (only servers)
Proto RefCnt Flags Type State I-Node PID/Program name Path
unix 2 [ ACC ] STREAM LISTENING 102433968 17574/php /usr/local/zendphp52/zend/gui/lighttpd/tmp/php-fastcgi.socket
unix 2 [ ACC ] STREAM LISTENING 96835631 7585/dtach /tmp/root-emacs
unix 2 [ ACC ] STREAM LISTENING 96834138 7127/dbus-daemon /var/run/dbus/system_bus_socket
unix 2 [ ACC ] STREAM LISTENING 100560600 5798/dtach /tmp/zope-emacs
yuval@php-website:/etc/apache2$
Does anyone have any idea what I'm missing?
Thanks!
Yuval

