Hi Jaco, 

if Resque (the ruby queue gem, which uses Redis to persist the queue) is 
running you should be able to check the state of its queues through a localhost 
web interface it provides. 

https://github.com/defunkt/resque#section_The_Front_End

I would check if something is on the queue (ie. not being pulled off 
correctly). 

If nothing is there, the other option that the ssh key operation didn't put 
something on the queue correctly - in which case I'd remove and re-add the ssh 
key in the web interface, while tailing the log to see if anything out of the 
ordinary happens in the background when you add the key. 

--
Best regards,
Thomas Kjeldahl Nilsson,
Partner & Programmer,
Gitorious AS
http://gitorious.com





On Tuesday, January 15, 2013 at 10:24 AM, Jaco Theron wrote:

> Hi Thomas,
> 
> I did execute:
> 
>     sudo rails server -e production
> 
> And
> 
>     QUEUE=* bundle exec rake resque:work
> 
> And 
> 
>     sudo git daemon --listen=127.0.0.1 --port=9418 --export-all 
> --base-path=/projects/gitorious/repositories --verbose --reuseaddr 
> /projects/gitorious/repositories
> 
> They all seem to run but the SSH key checker queue does not seem to work 
> still.  Hope you can give some advice in what to edit or check still.
> 
> Thank you in advance,
> Jaco T
> 
> On Tuesday, January 15, 2013 11:12:58 AM UTC+2, Thomas Kjeldahl Nilsson wrote:
> > Hi Jaco,
> > 
> > The creation/init of new ssh keys is an asynchronous operations, which 
> > means it depends on the resque queue running. Have you set that up yet? 
> > 
> > regards,
> > Thomas
> > 
> > 
> > On Tuesday, January 15, 2013 at 9:39 AM, Jaco Theron wrote:
> > 
> > > Hi Team,
> > > 
> > > 
> > > 
> > > 
> > > Q: What do I need to check in order for the SSH key checker to work?
> > > 
> > > Thank you in advance,
> > > Jaco T
> > > 
> > > 
> > > On Tuesday, January 15, 2013 10:22:34 AM UTC+2, Jaco Theron wrote:
> > > > Hi,
> > > > 
> > > > Ok when I try the browser http://{IP}:3000 then I get to the gitorious 
> > > > 3 server.
> > > > 
> > > > I will continue the installation :-) and hopefully be done soon.
> > > > 
> > > > Regards,
> > > > Jaco T
> > > > 
> > > > On Tuesday, January 15, 2013 10:05:06 AM UTC+2, Jaco Theron wrote:
> > > > > Hi,
> > > > > 
> > > > > I am nearing the end with setting up gitorious 3 production 
> > > > > environment I believe :-D.
> > > > > 
> > > > > I need some assistance with some more setup details for Gitorious 
> > > > > using nginx, I have started and get to this page:
> > > > > 
> > > > >     Welcome to nginx!
> > > > > 
> > > > >     If you see this page, the nginx web server is successfully 
> > > > > installed and working. Further configuration is required.
> > > > > 
> > > > > 
> > > > >     For online documentation and support please refer to nginx.org 
> > > > > (http://nginx.org/).
> > > > >     Commercial support is available at nginx.com (http://nginx.com/).
> > > > > 
> > > > > 
> > > > >     Thank you for using nginx.
> > > > > 
> > > > > 
> > > > > 
> > > > > Q: What and where do I set these settings mentioned?
> > > > > 
> > > > > Also here is my /etc/nginx/conf.d/000-gitorious:
> > > > > 
> > > > > upstream rails {
> > > > >   server localhost:3000;
> > > > > }
> > > > > 
> > > > > server {
> > > > >   root /projects/gitorious/gitorious/public;
> > > > >   try_files \$uri/index.html @app;
> > > > > 
> > > > >   location @app {
> > > > >     proxy_pass http://rails;
> > > > >     proxy_set_header Host \$http_host;
> > > > >     proxy_redirect off;
> > > > >   }
> > > > >   listen 80;
> > > > >   # Handle tarball downloads
> > > > >   # Gitorious will send a X-Accel-Redirect header like
> > > > >   # X-Accel-Redirect: /tarballs/project-repo-sha.tar.gz
> > > > >   # Which should be streamed from 
> > > > > $GITORIOUS_ROOT/tarball-cache/project-repo-sha.tar.gz
> > > > >   location /tarballs/ {
> > > > >     internal;
> > > > >     alias /projects/gitorious/tarballs/;
> > > > >   }
> > > > >   # Handle git-over-http requests
> > > > >   # Gitorious will send a X-Accel-Redirect header like
> > > > >   # X-Accel-Redirect: /git-http/project/repository.git/info/refs
> > > > >   # Which should map to 
> > > > > $GITORIOUS_ROOT/repositories/project/repository.git/info/refs
> > > > >   location /git-http/ {
> > > > >     internal;
> > > > >     alias /projects/gitorious/repositories/;
> > > > >   }
> > > > > }
> > > > > 
> > > > > 
> > > > > Thank you in advance,
> > > > > Jaco T
> > > > > > 
> > > > > > 
> > > > > > Hi Jaco, 
> > > > > > 
> > > > > > You should also be sure to install the "epel-release" RPM: 
> > > > > > 
> > > > > > https://dl.fedoraproject.org/pub/epel/6/x86_64/repoview/epel-release.html
> > > > > >  
> > > > > > 
> > > > > > If there are any security updates for sphinx in the future, the 
> > > > > > "epel-release" package will ensure that you can easily keep sphinx 
> > > > > > up 
> > > > > > to date when you run "yum update". 
> > > > > > 
> > > > > > - Ken 
> > > -- 
> > > To post to this group, send email to gito...@googlegroups.com 
> > > (javascript:)
> > > To unsubscribe from this group, send email to
> > > gitorious+...@googlegroups.com (javascript:)
> > 
> -- 
> To post to this group, send email to gitorious@googlegroups.com 
> (mailto:gitorious@googlegroups.com)
> To unsubscribe from this group, send email to
> gitorious+unsubscr...@googlegroups.com 
> (mailto:gitorious+unsubscr...@googlegroups.com)

-- 
To post to this group, send email to gitorious@googlegroups.com
To unsubscribe from this group, send email to
gitorious+unsubscr...@googlegroups.com

Reply via email to