Comment 5 for bug 670867

Revision history for this message
Lakshmi Khadar (lakshmi-khadar) wrote :

While debugging the above error, I could find that there is no 8773 port be opened, hence unable to connect to that as shown below

> /usr/lib/pymodules/python2.6/boto/s3/connection.py(341)make_request()
-> return AWSAuthConnection.make_request(self, method, path, headers,
(Pdb) p auth_path
'/mybucket/?max-keys=0'
(Pdb) p method
'GET'
(Pdb) p path
'/mybucket/?max-keys=0'
(Pdb) p headers
None
(Pdb) p self
S3Connection:127.0.0.1
(Pdb)

root@ubuntu:~# wget -T 10 -t 1 -O - --no-check-certificate https://127.0.0.1:8773/services/Walrus
--2010-11-08 17:54:45-- https://127.0.0.1:8773/services/Walrus
Connecting to 127.0.0.1:8773... failed: Connection refused.

However when I started running eucalyptus services as shown below.

root@ubuntu:~# ps aux | grep eucalyptus
root 9000 0.0 0.0 16692 332 ? Ss 12:34 0:00 eucalyptus-cloud --remote-dns -h / -u eucalyptus --pidfile //var/run/eucalyptus/eucalyptus-cloud.pid -f -L console-log
root 9001 0.0 24.2 938808 119448 ? Sl 12:34 0:06 eucalyptus-cloud --remote-dns -h / -u eucalyptus --pidfile //var/run/eucalyptus/eucalyptus-cloud.pid -f -L console-log
root 12926 0.0 0.5 49056 2612 ? Ss 17:43 0:00 apache2 -f /var/run/eucalyptus/httpd-cc.conf -D FOREGROUND
113 12928 0.0 0.9 148744 4668 ? Sl 17:43 0:00 apache2 -f /var/run/eucalyptus/httpd-cc.conf -D FOREGROUND
113 12929 0.0 0.9 148744 4672 ? Sl 17:43 0:00 apache2 -f /var/run/eucalyptus/httpd-cc.conf -D FOREGROUND
113 12930 0.0 0.9 148744 4672 ? Sl 17:43 0:00 apache2 -f /var/run/eucalyptus/httpd-cc.conf -D FOREGROUND
113 12931 0.0 1.0 148748 5180 ? Sl 17:43 0:00 apache2 -f /var/run/eucalyptus/httpd-cc.conf -D FOREGROUND
113 12932 0.0 0.9 148744 4672 ? Sl 17:43 0:00 apache2 -f /var/run/eucalyptus/httpd-cc.conf -D FOREGROUND
113 12957 0.0 0.9 148744 4680 ? Sl 17:43 0:00 apache2 -f /var/run/eucalyptus/httpd-cc.conf -D FOREGROUND
113 12961 0.0 0.9 148744 4680 ? Sl 17:43 0:00 apache2 -f /var/run/eucalyptus/httpd-cc.conf -D FOREGROUND
113 12962 0.0 0.9 148744 4680 ? Sl 17:43 0:00 apache2 -f /var/run/eucalyptus/httpd-cc.conf -D FOREGROUND
root 13598 0.0 0.1 7620 896 pts/9 S+ 17:56 0:00 grep --color=auto eucalyptus

I would like to know does it require any other packages to be installed or service to be registered. If at all please let me know how shall I proceed to get the 127.0.0.1:8773 port to be opened for the S3Connection.