Re: [gitorious] How to find the which Gitorious version I am running on ?

2013-01-17 Thread Marius Mårnes Mathiesen

Thomas Kjeldahl Nilsson writes:

> Sure thing: if you're on an official version/release/tag, you can run
> the following command from the root of your Gitorious installation
> (ie. same dir as the Gemfile etc)
>
> rake versioning:changelog



:-)
- Marius

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


Re: [gitorious] ldap email and fullname issues

2013-01-17 Thread Marius Mårnes Mathiesen
John Hogenmiller writes:

> After much back and forth today, I finally managed to get ldap
> authentication working against RHEL's 389 ldap dirsrv (actually, I'm
> running FreeIPA to manage this).
>
> This is a fresh install (today) using the installer script found on
> getgitorious.org. This put me at v2.3.2. After encountering this issue and
> not being able to resolve it, I upgraded to v2.4.5 and I am still
> encountering the same issue. Any help would be appreciated.
>
> What isn't working is the mapping of attributes. According to the doc, I
> shouldn't even need to map attributes because the defaults appear correct.
> "Default: displayname => fullname, mail => email". Each time I log in with
> an ldap user, I get the following error in the production.log:
>
> ActiveRecord::RecordInvalid (Validation failed: Email can't be blank, Email
>> is invalid, Email is too short (minimum is 3 characters)):
>>   vendor/rails/activerecord/lib/active_record/validations.rb:1090:in
>> `save_without_dirty!'

John,
First of all: this is the best bug report I ever received, you supplied
all the information I would normally have wished for to help debug this
issue. Thanks!

Next: I'm a little puzzled why this doesn't work :-/ One idea that could
help us get a little further, however, is trying to force an empty email
address, in which case Gitorious should build one for us. You should be
able to achieve this by setting up the attribute mapping, explicitly
omitting the email from the list. This code in
lib/gitorious/authentication/ldap_authentication.rb should help us here:

if user.email.blank?
  user.email = "#{username}.example@#{Gitorious.host}"
end

An additional thing to help debug this is to fire up the console
(/bin/console) and enter something along these lines:

  credentials = Gitorious::Authentication::Credentials.new
  credentials.username = ""
  credentials.password = ""
  user = Gitorious::Authentication.authenticate(credentials)
  user.inspect

The last line above should display all the attributes for the a user
equivalent to what logging in through the GUI would produce. This means
that `user.email` should at least display what the email gets set to.

Cheers,
- Marius



>
>
>
> Here is my configuration:
>
> production:
>>   disable_default: false
>>   methods:
>> - adapter: Gitorious::Authentication::LDAPAuthentication
>>   host: freeipa1.lab.techs.example.com
>>   port: 636
>>   base_dn: cn=users,cn=accounts,dc=techs,dc=example,dc=com
>>   encryption: simple_tls
>>   login_attribute: uid
>>   distinguished_name_template:
>> "uid={},cn=users,cn=accounts,dc=techs,dc=example,dc=com"
>>   # have tried with and without the attribute mappings commented out
>>   attribute_mapping:
>> displayName: fullname
>> mail: email
>
>
> Here is my "ldif" from ldapsearch (some attributes commented out):
>
> # jlastname, users, accounts, techs.example.com
>> dn: uid=jlastname,cn=users,cn=accounts,dc=techs,dc=example,dc=com
>> mail: f.lastn...@example.com
>> displayName: first lastname
>> cn: first lastname
>> initials: FL
>> gecos: first lastname
>> sn: lastname
>> givenName: first
>> uid: flastname
>
>
>  And here is a log entry from the ldap server:
>
> [15/Jan/2013:22:31:42 -0500] conn=640 fd=66 slot=66 SSL connection from
>> 10.100.0.156 to 10.100.0.155
>> [15/Jan/2013:22:31:42 -0500] conn=640 SSL 256-bit AES
>> [15/Jan/2013:22:31:42 -0500] conn=640 op=0 BIND
>> dn="uid=jlastname,cn=users,cn=accounts,dc=techs,dc=example,dc=com"
>> method=128 version=3
>> [15/Jan/2013:22:31:42 -0500] conn=640 op=0 RESULT err=0 tag=97 nentries=0
>> etime=0 dn="uid=flastname,cn=users,cn=accounts,dc=techs,dc=example,dc=com"
>> [15/Jan/2013:22:31:42 -0500] conn=640 op=-1 fd=66 cltechsd - B1
>> [15/Jan/2013:22:31:42 -0500] conn=641 fd=67 slot=67 SSL connection from
>> 10.100.0.156 to 10.100.0.155
>> [15/Jan/2013:22:31:42 -0500] conn=641 SSL 256-bit AES
>> [15/Jan/2013:22:31:42 -0500] conn=641 op=0 BIND
>> dn="uid=flastname,cn=users,cn=accounts,dc=techs,dc=example,dc=com"
>> method=128 version=3
>> [15/Jan/2013:22:31:42 -0500] conn=641 op=0 RESULT err=0 tag=97 nentries=0
>> etime=0 dn="uid=flastname,cn=users,cn=accounts,dc=techs,dc=example,dc=com"
>> [15/Jan/2013:22:31:42 -0500] conn=641 op=1 SRCH
>> base="cn=users,cn=accounts,dc=techs,dc=example,dc=com" scope=2
>> filter="(uid=flastname)" attrs="displayName mail"
>> [15/Jan/2013:22:31:42 -0500] conn=641 op=1 RESULT err=0 tag=101 nentries=1
>> etime=0 notes=P
>> [15/Jan/2013:22:31:42 -0500] conn=641 op=-1 fd=67 cltechsd - B1
>
>
> Here my environment details:
>
> About your application's environment
>> Ruby version  1.8.7 (x86_64-linux)
>> RubyGems version  1.4.2
>> Rack version  1.0
>> Rails version 2.3.5
>> Active Record version 2.3.5
>> Active Resource version   2.3.5
>> Action Mailer version 2.3.5
>> Active Support version2.3.5
>> Edge Rails revision   20611a8d233e6e1e53

Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Marius Mårnes Mathiesen

Jaco Theron writes:

> Hi Marius,
>
> Looking at the /var/log/nginx/error.log file:
>
> 2013/01/17 18:13:26 [error] 1773#0: *15 upstream prematurely closed
> connection while reading response header from upstream, client:
> 192.168.XX.XX, server: , request: "GET /test-3/test-3/config?username=jacot
> HTTP/1.1", upstream:
> "http://192.168.XX.XX:3000/test-3/test-3/config?username=jacot";, host:
> "192.168.XX.XX"
>
> I tried this link:
> http://192.168.XX.XX:3000/test-3/test-3/config?username=jacot
>
> and get:
>
> ===
>
> No data received
> Unable to load the webpage because the server sent no data.
> Here are some suggestions:
>
>-Reload 
> this
>webpage later.
>
>  Error 324 (net::ERR_EMPTY_RESPONSE): The server closed the connection
> without sending any data.
>
> ===
>
> Any ideas for me to investigate?

Hmm, is your server at 192.168.10.44:3000 responding normally to other
requests, eg http://192.168.10.44:3000/test-3/test-3 ?

Cheers,
- Marius

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


Re: [gitorious] Canno update avatart, error: Avatar /tmp/streamxxxxx is not recognized by the 'identify' command

2013-01-17 Thread Marius Mårnes Mathiesen

Phuong Doan writes:

> Identify command of imagemagick works fine on my machine (ubuntu server
> 12.10), but don't know why I get this error when update team/user avatar.
> I tried suggestion in
> https://groups.google.com/forum/?fromgroups=#!topic/gitorious/Cl-kH2MzJ-U
> but no luck
> I guess that the configuration is moved to somewhere else.

Phuong,
It could be that your app server is unable to locate the identify
command. On the gitorious.org servers we run with a fairly small PATH
environment variable for the app server, and have this code in an
initializer:

  Paperclip.options[:command_path] = "/usr/bin"

Simply drop that in a file config/initializers/paperclip.rb and see if
that works.

Cheers,
- Marius

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


Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Jaco Theron
Hi Marius,

Looking at the /var/log/nginx/error.log file:

2013/01/17 18:13:26 [error] 1773#0: *15 upstream prematurely closed 
connection while reading response header from upstream, client: 
192.168.XX.XX, server: , request: "GET /test-3/test-3/config?username=jacot 
HTTP/1.1", upstream: 
"http://192.168.XX.XX:3000/test-3/test-3/config?username=jacot";, host: 
"192.168.XX.XX"

I tried this link:
http://192.168.XX.XX:3000/test-3/test-3/config?username=jacot

and get:

===

No data received
Unable to load the webpage because the server sent no data.
Here are some suggestions:
   
   -Reload 
this 
   webpage later.

 Error 324 (net::ERR_EMPTY_RESPONSE): The server closed the connection 
without sending any data.

===

Any ideas for me to investigate?

Thank you in advance,
Jaco

On Thursday, January 17, 2013 4:44:31 PM UTC+2, Thomas Kjeldahl Nilsson 
wrote:
>
>  Marius, you have more of a grip on the nginx setup than me so I'll punt 
> it to you. You got any ideas? :) 
>
> cheers,
> Thomas
>
> On Thursday, January 17, 2013 at 3:37 PM, Jaco Theron wrote:
>
> Hi,
>
> I renamed /etc/nginx/default.conf to /etc/nginx/default.conf.old and now 
> get this from Eclipse eGit:
>
> gito...@192.168.xx.xx :test-3/test-3.git: 
> == Gitorious: ==
> Temporary error. Please try again shortly
> 
>
> In $GITORIOUS_HOME/gitorous/log/gitorious_auth.log:
>
> I, [2013-01-17 16:02:57#2091]  INFO -- : Connection from "192.168.XX.XX 
> 63353 22" (jacot): git-upload-pack 'test-3/test-3.git'
> F, [2013-01-17 16:02:57#2091] FATAL -- : Connection refused querying for 
> paths/permissions
>
> This means I broke it maybe :-P so I reverted the name change :-)
>
> And now changed 000-gitorious to 000-gitorious.conf
>
> Now I get Eclipse eGit error:
>
> gito...@192.168.xx.xx :test-3/test-3.git: 
> == Gitorious: ==
> Access denied or wrong repository path
> 
>
> And in $GITORIOUS_HOME/gitorous/log/gitorious_auth.log:
>
> I, [2013-01-17 16:35:31#2104]  INFO -- : Connection from "192.168.YY.YY 
> 63686 22" (jacot): git-upload-pack 'test-3/test-3.git'
> I, [2013-01-17 16:35:31#2104]  INFO -- : Access denied or bad repository 
> path for "jacot": "git-upload-pack 'test-3/test-3.git'"
>
> And in /var/log/nginx/error.log:
>
> 2013/01/17 16:35:31 [error] 1783#0: *43 upstream prematurely closed 
> connection while reading response header from upstream, client: 
> 192.168.XX.XX, server: , request: "GET /test-3/test-3/config?username=jacot 
> HTTP/1.1", upstream: "
> http://192.168.XX.XX:3000/test-3/test-3/config?username=jacot";, host: 
> "192.168.XX.XX"
>
> ?
>
> Kind Regards,
> Jaco
>
> On Thursday, January 17, 2013 3:57:53 PM UTC+2, Thomas Kjeldahl Nilsson 
> wrote:
>
>  Pushing over ssh calls a ruby script, which in case needs to ask the 
> Gitorious/Rails instance on the machine about metadata for the repo being 
> pushed to. In order to do this it pings an html endpoint for that data, 
> hence that result in the log.  
>
> So test-3/test-3 project/repo is created and accessible in the gitorious 
> frontend?
>
> --
> Best regards,
> Thomas Kjeldahl Nilsson,
> Partner & Programmer,
> Gitorious AS
> http://gitorious.com
>
> On Thursday, January 17, 2013 at 2:53 PM, Jaco Theron wrote:
>
> Hi,
>
> Maybe this will help as well.  Why would it look for an html page?
>
> *In the /var/log/nginx/access.log file I get this line:*
>
> 192.168.XX.XX - - [17/Jan/2013:15:43:53 +0200] "GET 
> /test-3/test-3/config?username=jacot HTTP/1.1" 404 168 "-" "-" "-"
>
> *and in the /var/log/nginx/error.log*:
>
> 2013/01/17 15:43:53 [error] 1761#0: *2 open() "
> /usr/share/nginx/html/test-3/test-3/config" failed (2: No such file or 
> directory), client: 192.168.XX.XX, server: localhost, request: "GET 
> /test-3/test-3/config?username=jacot HTTP/1.1", host: "192.168.XX.XX"
>
> Thank you in advance,
> Jaco
>
> On Thursday, January 17, 2013 3:42:37 PM UTC+2, Jaco Theron wrote:
>
> Hi, 
>
> I am using Eclipse eGit plugin to push, the same I use currently to push 
> to an older Gitorious server
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 3:05:20 PM UTC+2, Thomas Kjeldahl Nilsson 
> wrote:
>
>  
>  I´m currently out of ideas. Just curious, what is the command you run in 
> your terminal to push? (Scrolled down and didn't see what the actual client 
> side git push command looked like)
>
> -t
>
> On Thursday, January 17, 2013 at 2:01 PM, Jaco Theron wrote:
>
> Hi, 
>
> I had a look at this link 
> https://groups.google.com/forum/?fromgroups=#!topic/gitorious/uJLVU85Dro8
> But I am not sure what to check in Gitorious 3?
>
> Regards,
> Jaco
>
> On T

Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Jaco Theron
Hi Marius,

Also I checked with a find command and find no test-3 .html pages, if this 
should be the case?

find /projects/gitorious/gitorious/public -name *.html

Regards,
Jaco

On Thursday, January 17, 2013 6:15:59 PM UTC+2, Jaco Theron wrote:
>
> Hi Marius,
>
> Looking at the /var/log/nginx/error.log file:
>
> 2013/01/17 18:13:26 [error] 1773#0: *15 upstream prematurely closed 
> connection while reading response header from upstream, client: 
> 192.168.XX.XX, server: , request: "GET /test-3/test-3/config?username=jacot 
> HTTP/1.1", upstream: "
> http://192.168.XX.XX:3000/test-3/test-3/config?username=jacot";, host: 
> "192.168.XX.XX"
>
> I tried this link:
> http://192.168.XX.XX:3000/test-3/test-3/config?username=jacot
>
> and get:
>
> ===
>
> No data received
> Unable to load the webpage because the server sent no data.
> Here are some suggestions:
>
>-Reload 
> this 
>webpage later.
>
>  Error 324 (net::ERR_EMPTY_RESPONSE): The server closed the connection 
> without sending any data.
>
> ===
>
> Any ideas for me to investigate?
>
> Thank you in advance,
> Jaco
>

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


Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Jaco Theron
Hi,

Here is my 000-gitorious.conf file:

upstream rails {
  server 127.0.0.1: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 /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 /repositories/project/repository.git/info/refs
  location /git-http/ {
internal;
alias /projects/gitorious/repositories/;
  }

}

And here is the nginx.conf:

user gitorious;
worker_processes  1;

error_log  /var/log/nginx/error.log warn;
pid/var/run/nginx.pid;


events {
worker_connections  1024;
}


http {
include   /etc/nginx/mime.types;
default_type  application/octet-stream;

log_format  main  '$remote_addr - $remote_user [$time_local] "$request" 
'
  '$status $body_bytes_sent "$http_referer" '
  '"$http_user_agent" "$http_x_forwarded_for"';

access_log  /var/log/nginx/access.log  main;

sendfileon;
#tcp_nopush on;

keepalive_timeout  65;

#gzip  on;

include /etc/nginx/conf.d/*.conf;
}

Kind Regards,
Jaco

On Thursday, January 17, 2013 7:33:44 PM UTC+2, Jaco Theron wrote:
>
> Hi Marius,
>
> Here is an example of an SSH push /var/log/nginx/access.log printout:
>
> [17/Jan/2013:19:16:48 +0200] "GET /test-4/test-4/config?username=jacot 
> HTTP/1.1" 502 172 "-" "-" "-"
>
> Here is an example of an HTTP push /var/log/nginx/access.log printout:
>
> [17/Jan/2013:19:30:57 +0200] "GET 
> /test-4/test-4.git/info/refs?service=git-upload-pack HTTP/1.1" 200 0 "-" 
> "JGit/2.1.0.201209190230-r" "-"
>
> HTTP works but not SSH, I hope this helps getting to the bottom of this.
>
> Kind Regards,
> Jaco
>
> On Thursday, January 17, 2013 7:23:49 PM UTC+2, Jaco Theron wrote:
>>
>> Hi Marius,
>>
>> Do you think there is something to be done with nginx to get this working?
>>
>> Regards,
>> Jaco
>>
>> On Thursday, January 17, 2013 4:44:31 PM UTC+2, Thomas Kjeldahl Nilsson 
>> wrote:
>>>
>>>  Marius, you have more of a grip on the nginx setup than me so I'll punt 
>>> it to you. You got any ideas? :) 
>>>
>>> cheers,
>>> Thomas
>>>
>>> On Thursday, January 17, 2013 at 3:37 PM, Jaco Theron wrote:
>>>
>>> Hi,
>>>
>>> I renamed /etc/nginx/default.conf to /etc/nginx/default.conf.old and now 
>>> get this from Eclipse eGit:
>>>
>>> gito...@192.168.xx.xx:test-3/test-3.git: 
>>> == Gitorious: ==
>>> Temporary error. Please try again shortly
>>> 
>>>
>>> In $GITORIOUS_HOME/gitorous/log/gitorious_auth.log:
>>>
>>> I, [2013-01-17 16:02:57#2091]  INFO -- : Connection from "192.168.XX.XX 
>>> 63353 22" (jacot): git-upload-pack 'test-3/test-3.git'
>>> F, [2013-01-17 16:02:57#2091] FATAL -- : Connection refused querying for 
>>> paths/permissions
>>>
>>> This means I broke it maybe :-P so I reverted the name change :-)
>>>
>>> And now changed 000-gitorious to 000-gitorious.conf
>>>
>>> Now I get Eclipse eGit error:
>>>
>>> gito...@192.168.xx.xx:test-3/test-3.git: 
>>> == Gitorious: ==
>>> Access denied or wrong repository path
>>> 
>>>
>>> And in $GITORIOUS_HOME/gitorous/log/gitorious_auth.log:
>>>
>>> I, [2013-01-17 16:35:31#2104]  INFO -- : Connection from "192.168.YY.YY 
>>> 63686 22" (jacot): git-upload-pack 'test-3/test-3.git'
>>> I, [2013-01-17 16:35:31#2104]  INFO -- : Access denied or bad repository 
>>> path for "jacot": "git-upload-pack 'test-3/test-3.git'"
>>>
>>> And in /var/log/nginx/error.log:
>>>
>>> 2013/01/17 16:35:31 [error] 1783#0: *43 upstream prematurely closed 
>>> connection while reading response header from upstream, client: 
>>> 192.168.XX.XX, server: , request: "GET /test-3/test-3/config?username=jacot 
>>> HTTP/1.1", upstream: "
>>> http://192.168.XX.XX:3000/test-3/test-3/config?username=jacot";, host: 
>>> "192.168.XX.XX"
>>>
>>> ?
>>>
>>> Kind Regards,
>>> Jaco
>>>
>>> On Thursday, January 17, 2013 3:57:53 PM UTC+2, Thomas Kjeldahl Nilsson 
>>> wrote:
>>>
>>>  Pushing over ssh calls a ruby script, which in case needs to ask the 
>>> Gitorious/Rails instance on the machine about metadata for the repo being 
>>> pushed to. In order to do this it pings an html endpoint for that data, 
>>> hence that result in the log.  
>>>
>>> So test-3/test-3 project/repo is created and accessible

Re: [gitorious] Gitorious update release

2013-01-17 Thread Thomas Kjeldahl Nilsson
Looks like you have a conflict. I suggest you repeat the git checkout operation 
on any files with conflicts, then try again. 

cheers,
Thomas


On Thursday, January 17, 2013 at 4:37 PM, Federico Don wrote:

> Thanks for your answer but now i have other issue
> 
> when execute:
> 
> # rake assets:clear
> (in /home/git/gitorious)
> Please install RDoc 2.4.2+ to generate documentation.
> rake aborted!
> /home/git/gitorious/lib/tasks/../gitorious.rb:19: syntax error, unexpected 
> tLSHFT, expecting kEND
> <<< HEAD
>   ^
> /home/git/gitorious/lib/tasks/../gitorious.rb:21: syntax error, unexpected 
> tEQQ, expecting kEND
> ===
>^
> /home/git/gitorious/lib/tasks/../gitorious.rb:23: syntax error, unexpected 
> tRSHFT, expecting kEND
> >>> v2.4.1
>   ^
> /home/git/gitorious/lib/tasks/../gitorious.rb:23: no . floating 
> literal anymore; put 0 before dot
> >>> v2.4.1
>^
> /home/git/gitorious/Rakefile:10:in `require'
> (See full trace by running task with --trace)
> 
> I have Rdoc 3.12
> 
> # gem list -d rdoc
> 
> *** LOCAL GEMS ***
> 
> rdoc (3.12)
> Authors: Eric Hodel, Dave Thomas, Phil Hagelberg, Tony Strauss
> Rubyforge: http://rubyforge.org/projects/rdoc
> Homepage: http://docs.seattlerb.org/rdoc
> Installed at: /opt/ruby-enterprise-1.8.7-2011.03/lib/ruby/gems/1.8
> 
> RDoc produces HTML and command-line documentation for Ruby projects
> 
> Could you please help me?
> 
> Thanks and regards,
> 
> 
> 
> 
> 2013/1/17 Thomas Kjeldahl Nilsson  (mailto:tho...@gitorious.org)>
> > Hi Frederico,  
> > 
> > seems you have touched that ldap lib file, but unless you have something 
> > you need in there you can simply reset in like this:
> > 
> > git checkout lib/gitorious/authentication/ldap_authentication.rb 
> > 
> > and proceed with the merge. :) 
> > 
> > cheers,
> > Thomas
> > 
> > 
> > On Thursday, January 17, 2013 at 12:16 AM, Federico Don wrote:
> > 
> > >  lib/gitorious/authentication/ldap_authentication.rb 
> > 
> > 
> > -- 
> > 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%2bunsubscr...@googlegroups.com)
> 
> -- 
> 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


Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Jaco Theron
Hi Marius,

Here is an example of an SSH push /var/log/nginx/access.log printout:

[17/Jan/2013:19:16:48 +0200] "GET /test-4/test-4/config?username=jacot 
HTTP/1.1" 502 172 "-" "-" "-"

Here is an example of an HTTP push /var/log/nginx/access.log printout:

[17/Jan/2013:19:30:57 +0200] "GET 
/test-4/test-4.git/info/refs?service=git-upload-pack HTTP/1.1" 200 0 "-" 
"JGit/2.1.0.201209190230-r" "-"

HTTP works but not SSH, I hope this helps getting to the bottom of this.

Kind Regards,
Jaco

On Thursday, January 17, 2013 7:23:49 PM UTC+2, Jaco Theron wrote:
>
> Hi Marius,
>
> Do you think there is something to be done with nginx to get this working?
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 4:44:31 PM UTC+2, Thomas Kjeldahl Nilsson 
> wrote:
>>
>>  Marius, you have more of a grip on the nginx setup than me so I'll punt 
>> it to you. You got any ideas? :) 
>>
>> cheers,
>> Thomas
>>
>> On Thursday, January 17, 2013 at 3:37 PM, Jaco Theron wrote:
>>
>> Hi,
>>
>> I renamed /etc/nginx/default.conf to /etc/nginx/default.conf.old and now 
>> get this from Eclipse eGit:
>>
>> gito...@192.168.xx.xx:test-3/test-3.git: 
>> == Gitorious: ==
>> Temporary error. Please try again shortly
>> 
>>
>> In $GITORIOUS_HOME/gitorous/log/gitorious_auth.log:
>>
>> I, [2013-01-17 16:02:57#2091]  INFO -- : Connection from "192.168.XX.XX 
>> 63353 22" (jacot): git-upload-pack 'test-3/test-3.git'
>> F, [2013-01-17 16:02:57#2091] FATAL -- : Connection refused querying for 
>> paths/permissions
>>
>> This means I broke it maybe :-P so I reverted the name change :-)
>>
>> And now changed 000-gitorious to 000-gitorious.conf
>>
>> Now I get Eclipse eGit error:
>>
>> gito...@192.168.xx.xx:test-3/test-3.git: 
>> == Gitorious: ==
>> Access denied or wrong repository path
>> 
>>
>> And in $GITORIOUS_HOME/gitorous/log/gitorious_auth.log:
>>
>> I, [2013-01-17 16:35:31#2104]  INFO -- : Connection from "192.168.YY.YY 
>> 63686 22" (jacot): git-upload-pack 'test-3/test-3.git'
>> I, [2013-01-17 16:35:31#2104]  INFO -- : Access denied or bad repository 
>> path for "jacot": "git-upload-pack 'test-3/test-3.git'"
>>
>> And in /var/log/nginx/error.log:
>>
>> 2013/01/17 16:35:31 [error] 1783#0: *43 upstream prematurely closed 
>> connection while reading response header from upstream, client: 
>> 192.168.XX.XX, server: , request: "GET /test-3/test-3/config?username=jacot 
>> HTTP/1.1", upstream: "
>> http://192.168.XX.XX:3000/test-3/test-3/config?username=jacot";, host: 
>> "192.168.XX.XX"
>>
>> ?
>>
>> Kind Regards,
>> Jaco
>>
>> On Thursday, January 17, 2013 3:57:53 PM UTC+2, Thomas Kjeldahl Nilsson 
>> wrote:
>>
>>  Pushing over ssh calls a ruby script, which in case needs to ask the 
>> Gitorious/Rails instance on the machine about metadata for the repo being 
>> pushed to. In order to do this it pings an html endpoint for that data, 
>> hence that result in the log.  
>>
>> So test-3/test-3 project/repo is created and accessible in the gitorious 
>> frontend?
>>
>> --
>> Best regards,
>> Thomas Kjeldahl Nilsson,
>> Partner & Programmer,
>> Gitorious AS
>> http://gitorious.com
>>
>> On Thursday, January 17, 2013 at 2:53 PM, Jaco Theron wrote:
>>
>> Hi,
>>
>> Maybe this will help as well.  Why would it look for an html page?
>>
>> *In the /var/log/nginx/access.log file I get this line:*
>>
>> 192.168.XX.XX - - [17/Jan/2013:15:43:53 +0200] "GET 
>> /test-3/test-3/config?username=jacot HTTP/1.1" 404 168 "-" "-" "-"
>>
>> *and in the /var/log/nginx/error.log*:
>>
>> 2013/01/17 15:43:53 [error] 1761#0: *2 open() "
>> /usr/share/nginx/html/test-3/test-3/config" failed (2: No such file or 
>> directory), client: 192.168.XX.XX, server: localhost, request: "GET 
>> /test-3/test-3/config?username=jacot HTTP/1.1", host: "192.168.XX.XX"
>>
>> Thank you in advance,
>> Jaco
>>
>> On Thursday, January 17, 2013 3:42:37 PM UTC+2, Jaco Theron wrote:
>>
>> Hi, 
>>
>> I am using Eclipse eGit plugin to push, the same I use currently to push 
>> to an older Gitorious server
>>
>> Regards,
>> Jaco
>>
>> On Thursday, January 17, 2013 3:05:20 PM UTC+2, Thomas Kjeldahl Nilsson 
>> wrote:
>>
>>  
>>  I´m currently out of ideas. Just curious, what is the command you run 
>> in your terminal to push? (Scrolled down and didn't see what the actual 
>> client side git push command looked like)
>>
>> -t
>>
>> On Thursday, January 17, 2013 at 2:01 PM, Jaco Theron wrote:
>>
>> Hi, 
>>
>> I had a look at this link 
>> https://groups.google.com/forum/?fromgroups=#!topic/gitorious/uJLVU85Dro8
>> But I am not sure what to check in Gitorious 3?
>>
>> Regards,
>> Jaco
>>
>> On Thursday, January 17, 2013 2:53:37 PM UTC+2, Jaco Theron wrote:
>>
>> Hi,
>>
>> Please advise on anything I could check, I am still struggling with this 

Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Jaco Theron
Hi Marius,

Do you think there is something to be done with nginx to get this working?

Regards,
Jaco

On Thursday, January 17, 2013 4:44:31 PM UTC+2, Thomas Kjeldahl Nilsson 
wrote:
>
>  Marius, you have more of a grip on the nginx setup than me so I'll punt 
> it to you. You got any ideas? :) 
>
> cheers,
> Thomas
>
> On Thursday, January 17, 2013 at 3:37 PM, Jaco Theron wrote:
>
> Hi,
>
> I renamed /etc/nginx/default.conf to /etc/nginx/default.conf.old and now 
> get this from Eclipse eGit:
>
> gito...@192.168.xx.xx :test-3/test-3.git: 
> == Gitorious: ==
> Temporary error. Please try again shortly
> 
>
> In $GITORIOUS_HOME/gitorous/log/gitorious_auth.log:
>
> I, [2013-01-17 16:02:57#2091]  INFO -- : Connection from "192.168.XX.XX 
> 63353 22" (jacot): git-upload-pack 'test-3/test-3.git'
> F, [2013-01-17 16:02:57#2091] FATAL -- : Connection refused querying for 
> paths/permissions
>
> This means I broke it maybe :-P so I reverted the name change :-)
>
> And now changed 000-gitorious to 000-gitorious.conf
>
> Now I get Eclipse eGit error:
>
> gito...@192.168.xx.xx :test-3/test-3.git: 
> == Gitorious: ==
> Access denied or wrong repository path
> 
>
> And in $GITORIOUS_HOME/gitorous/log/gitorious_auth.log:
>
> I, [2013-01-17 16:35:31#2104]  INFO -- : Connection from "192.168.YY.YY 
> 63686 22" (jacot): git-upload-pack 'test-3/test-3.git'
> I, [2013-01-17 16:35:31#2104]  INFO -- : Access denied or bad repository 
> path for "jacot": "git-upload-pack 'test-3/test-3.git'"
>
> And in /var/log/nginx/error.log:
>
> 2013/01/17 16:35:31 [error] 1783#0: *43 upstream prematurely closed 
> connection while reading response header from upstream, client: 
> 192.168.XX.XX, server: , request: "GET /test-3/test-3/config?username=jacot 
> HTTP/1.1", upstream: "
> http://192.168.XX.XX:3000/test-3/test-3/config?username=jacot";, host: 
> "192.168.XX.XX"
>
> ?
>
> Kind Regards,
> Jaco
>
> On Thursday, January 17, 2013 3:57:53 PM UTC+2, Thomas Kjeldahl Nilsson 
> wrote:
>
>  Pushing over ssh calls a ruby script, which in case needs to ask the 
> Gitorious/Rails instance on the machine about metadata for the repo being 
> pushed to. In order to do this it pings an html endpoint for that data, 
> hence that result in the log.  
>
> So test-3/test-3 project/repo is created and accessible in the gitorious 
> frontend?
>
> --
> Best regards,
> Thomas Kjeldahl Nilsson,
> Partner & Programmer,
> Gitorious AS
> http://gitorious.com
>
> On Thursday, January 17, 2013 at 2:53 PM, Jaco Theron wrote:
>
> Hi,
>
> Maybe this will help as well.  Why would it look for an html page?
>
> *In the /var/log/nginx/access.log file I get this line:*
>
> 192.168.XX.XX - - [17/Jan/2013:15:43:53 +0200] "GET 
> /test-3/test-3/config?username=jacot HTTP/1.1" 404 168 "-" "-" "-"
>
> *and in the /var/log/nginx/error.log*:
>
> 2013/01/17 15:43:53 [error] 1761#0: *2 open() "
> /usr/share/nginx/html/test-3/test-3/config" failed (2: No such file or 
> directory), client: 192.168.XX.XX, server: localhost, request: "GET 
> /test-3/test-3/config?username=jacot HTTP/1.1", host: "192.168.XX.XX"
>
> Thank you in advance,
> Jaco
>
> On Thursday, January 17, 2013 3:42:37 PM UTC+2, Jaco Theron wrote:
>
> Hi, 
>
> I am using Eclipse eGit plugin to push, the same I use currently to push 
> to an older Gitorious server
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 3:05:20 PM UTC+2, Thomas Kjeldahl Nilsson 
> wrote:
>
>  
>  I´m currently out of ideas. Just curious, what is the command you run in 
> your terminal to push? (Scrolled down and didn't see what the actual client 
> side git push command looked like)
>
> -t
>
> On Thursday, January 17, 2013 at 2:01 PM, Jaco Theron wrote:
>
> Hi, 
>
> I had a look at this link 
> https://groups.google.com/forum/?fromgroups=#!topic/gitorious/uJLVU85Dro8
> But I am not sure what to check in Gitorious 3?
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 2:53:37 PM UTC+2, Jaco Theron wrote:
>
> Hi,
>
> Please advise on anything I could check, I am still struggling with this 
> same issue:
>
> I, [2013-01-17 14:53:36#13436]  INFO -- : Connection from "192.168.10.27 
> 62826 22" (jacot): git-upload-pack 'test-3/test-3.git'
> I, [2013-01-17 14:53:36#13436]  INFO -- : Access denied or bad repository 
> path for "jacot": "git-upload-pack 'test-3/test-3.git'"
>
> Kind Regards,
> Jaco
>
> On Thursday, January 17, 2013 12:30:05 PM UTC+2, Jaco Theron wrote:
>
> Hi Thomas,
>
> It seems that somehow my $GITORIOUS_USER is cannot do some stuff on git 
> command? I am not sure
>
> *$GITORIOUS_USER:*
> [gitorious@mars root]$ git jacot
> fatal: cannot exec 'git-jacot': Permission denied
>
> *$ROOT_USER:*
> [root@mars ~]# git jacot
> git: 'jacot' is not a git command. See 'git --help'.
>

Re: [gitorious] Gitorious update release

2013-01-17 Thread Federico Don
Thanks for your answer but now i have other issue

when execute:

# rake assets:clear
(in /home/git/gitorious)
Please install RDoc 2.4.2+ to generate documentation.
rake aborted!
/home/git/gitorious/lib/tasks/../gitorious.rb:19: syntax error, unexpected
tLSHFT, expecting kEND
<<< HEAD
  ^
/home/git/gitorious/lib/tasks/../gitorious.rb:21: syntax error, unexpected
tEQQ, expecting kEND
===
   ^
/home/git/gitorious/lib/tasks/../gitorious.rb:23: syntax error, unexpected
tRSHFT, expecting kEND
>>> v2.4.1
  ^
/home/git/gitorious/lib/tasks/../gitorious.rb:23: no . floating
literal anymore; put 0 before dot
>>> v2.4.1
   ^
/home/git/gitorious/Rakefile:10:in `require'
(See full trace by running task with --trace)

I have Rdoc 3.12

# gem list -d rdoc

*** LOCAL GEMS ***

rdoc (3.12)
Authors: Eric Hodel, Dave Thomas, Phil Hagelberg, Tony Strauss
Rubyforge: http://rubyforge.org/projects/rdoc
Homepage: http://docs.seattlerb.org/rdoc
Installed at: /opt/ruby-enterprise-1.8.7-2011.03/lib/ruby/gems/1.8

RDoc produces HTML and command-line documentation for Ruby projects

Could you please help me?

Thanks and regards,




2013/1/17 Thomas Kjeldahl Nilsson 

>  Hi Frederico,
>
> seems you have touched that ldap lib file, but unless you have something
> you need in there you can simply reset in like this:
>
> git checkout lib/gitorious/authentication/ldap_authentication.rb
>
> and proceed with the merge. :)
>
> cheers,
> Thomas
>
> On Thursday, January 17, 2013 at 12:16 AM, Federico Don wrote:
>
>  lib/gitorious/authentication/ldap_authentication.rb
>
>
>  --
> To post to this group, send email to gitorious@googlegroups.com
> To unsubscribe from this group, send email to
> 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


Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Thomas Kjeldahl Nilsson
Marius, you have more of a grip on the nginx setup than me so I'll punt it to 
you. You got any ideas? :)  

cheers,
Thomas


On Thursday, January 17, 2013 at 3:37 PM, Jaco Theron wrote:

> Hi,
>  
> I renamed /etc/nginx/default.conf to /etc/nginx/default.conf.old and now get 
> this from Eclipse eGit:
>  
> gitori...@192.168.xx.xx (mailto:gitori...@192.168.xx.xx):test-3/test-3.git:  
> == Gitorious: ==
> Temporary error. Please try again shortly
> 
>  
> In $GITORIOUS_HOME/gitorous/log/gitorious_auth.log:
>  
> I, [2013-01-17 16:02:57#2091]  INFO -- : Connection from "192.168.XX.XX 63353 
> 22" (jacot): git-upload-pack 'test-3/test-3.git'
> F, [2013-01-17 16:02:57#2091] FATAL -- : Connection refused querying for 
> paths/permissions
>  
> This means I broke it maybe :-P so I reverted the name change :-)
>  
> And now changed 000-gitorious to 000-gitorious.conf
>  
> Now I get Eclipse eGit error:
>  
> gitori...@192.168.xx.xx (mailto:gitori...@192.168.xx.xx):test-3/test-3.git:  
> == Gitorious: ==
> Access denied or wrong repository path
> 
>  
> And in $GITORIOUS_HOME/gitorous/log/gitorious_auth.log:
>  
> I, [2013-01-17 16:35:31#2104]  INFO -- : Connection from "192.168.YY.YY 63686 
> 22" (jacot): git-upload-pack 'test-3/test-3.git'
> I, [2013-01-17 16:35:31#2104]  INFO -- : Access denied or bad repository path 
> for "jacot": "git-upload-pack 'test-3/test-3.git'"
>  
>  
> And in /var/log/nginx/error.log:
>  
> 2013/01/17 16:35:31 [error] 1783#0: *43 upstream prematurely closed 
> connection while reading response header from upstream, client: 
> 192.168.XX.XX, server: , request: "GET /test-3/test-3/config?username=jacot 
> HTTP/1.1", upstream: 
> "http://192.168.XX.XX:3000/test-3/test-3/config?username=jacot";, host: 
> "192.168.XX.XX"
>  
> ?
>  
> Kind Regards,
> Jaco
>  
> On Thursday, January 17, 2013 3:57:53 PM UTC+2, Thomas Kjeldahl Nilsson wrote:
> > Pushing over ssh calls a ruby script, which in case needs to ask the 
> > Gitorious/Rails instance on the machine about metadata for the repo being 
> > pushed to. In order to do this it pings an html endpoint for that data, 
> > hence that result in the log.   
> >  
> > So test-3/test-3 project/repo is created and accessible in the gitorious 
> > frontend?  
> >  
> > --
> > Best regards,
> > Thomas Kjeldahl Nilsson,
> > Partner & Programmer,
> > Gitorious AS
> > http://gitorious.com
> >  
> >  
> >  
> >  
> >  
> > On Thursday, January 17, 2013 at 2:53 PM, Jaco Theron wrote:
> >  
> > > Hi,
> > >  
> > > Maybe this will help as well.  Why would it look for an html page?
> > >  
> > > In the /var/log/nginx/access.log file I get this line:
> > >  
> > > 192.168.XX.XX - - [17/Jan/2013:15:43:53 +0200] "GET 
> > > /test-3/test-3/config?username=jacot HTTP/1.1" 404 168 "-" "-" "-"
> > >  
> > > and in the /var/log/nginx/error.log:
> > >  
> > > 2013/01/17 15:43:53 [error] 1761#0: *2 open() 
> > > "/usr/share/nginx/html/test-3/test-3/config" failed (2: No such file or 
> > > directory), client: 192.168.XX.XX, server: localhost, request: "GET 
> > > /test-3/test-3/config?username=jacot HTTP/1.1", host: "192.168.XX.XX"
> > >  
> > > Thank you in advance,
> > > Jaco
> > >  
> > > On Thursday, January 17, 2013 3:42:37 PM UTC+2, Jaco Theron wrote:
> > > > Hi,  
> > > >  
> > > > I am using Eclipse eGit plugin to push, the same I use currently to 
> > > > push to an older Gitorious server
> > > >  
> > > > Regards,
> > > > Jaco
> > > >  
> > > > On Thursday, January 17, 2013 3:05:20 PM UTC+2, Thomas Kjeldahl Nilsson 
> > > > wrote:
> > > > >  
> > > > > I´m currently out of ideas. Just curious, what is the command you run 
> > > > > in your terminal to push? (Scrolled down and didn't see what the 
> > > > > actual client side git push command looked like)
> > > > >  
> > > > > -t
> > > > >  
> > > > >  
> > > > > On Thursday, January 17, 2013 at 2:01 PM, Jaco Theron wrote:
> > > > >  
> > > > > > Hi,  
> > > > > >  
> > > > > > I had a look at this link 
> > > > > > https://groups.google.com/forum/?fromgroups=#!topic/gitorious/uJLVU85Dro8
> > > > > > But I am not sure what to check in Gitorious 3?
> > > > > >  
> > > > > > Regards,
> > > > > > Jaco
> > > > > >  
> > > > > > On Thursday, January 17, 2013 2:53:37 PM UTC+2, Jaco Theron wrote:
> > > > > > > Hi,
> > > > > > >  
> > > > > > > Please advise on anything I could check, I am still struggling 
> > > > > > > with this same issue:
> > > > > > >  
> > > > > > > I, [2013-01-17 14:53:36#13436]  INFO -- : Connection from 
> > > > > > > "192.168.10.27 62826 22" (jacot): git-upload-pack 
> > > > > > > 'test-3/test-3.git'
> > > > > > > I, [2013-01-17 14:53:36#13436]  INFO -- : Access denied or bad 
> > > > > > > repository path for "jacot": "git-upload-pack 't

Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Jaco Theron
Hi,

I renamed /etc/nginx/default.conf to /etc/nginx/default.conf.old and now 
get this from Eclipse eGit:

gitori...@192.168.xx.xx:test-3/test-3.git: 
== Gitorious: ==
Temporary error. Please try again shortly


In $GITORIOUS_HOME/gitorous/log/gitorious_auth.log:

I, [2013-01-17 16:02:57#2091]  INFO -- : Connection from "192.168.XX.XX 
63353 22" (jacot): git-upload-pack 'test-3/test-3.git'
F, [2013-01-17 16:02:57#2091] FATAL -- : Connection refused querying for 
paths/permissions

This means I broke it maybe :-P so I reverted the name change :-)

And now changed 000-gitorious to 000-gitorious.conf

Now I get Eclipse eGit error:

gitori...@192.168.xx.xx:test-3/test-3.git: 
== Gitorious: ==
Access denied or wrong repository path


And in $GITORIOUS_HOME/gitorous/log/gitorious_auth.log:

I, [2013-01-17 16:35:31#2104]  INFO -- : Connection from "192.168.YY.YY 
63686 22" (jacot): git-upload-pack 'test-3/test-3.git'
I, [2013-01-17 16:35:31#2104]  INFO -- : Access denied or bad repository 
path for "jacot": "git-upload-pack 'test-3/test-3.git'"

And in /var/log/nginx/error.log:

2013/01/17 16:35:31 [error] 1783#0: *43 upstream prematurely closed 
connection while reading response header from upstream, client: 
192.168.XX.XX, server: , request: "GET /test-3/test-3/config?username=jacot 
HTTP/1.1", upstream: 
"http://192.168.XX.XX:3000/test-3/test-3/config?username=jacot";, host: 
"192.168.XX.XX"

?

Kind Regards,
Jaco

On Thursday, January 17, 2013 3:57:53 PM UTC+2, Thomas Kjeldahl Nilsson 
wrote:
>
>  Pushing over ssh calls a ruby script, which in case needs to ask the 
> Gitorious/Rails instance on the machine about metadata for the repo being 
> pushed to. In order to do this it pings an html endpoint for that data, 
> hence that result in the log.  
>
> So test-3/test-3 project/repo is created and accessible in the gitorious 
> frontend?
>
> --
> Best regards,
> Thomas Kjeldahl Nilsson,
> Partner & Programmer,
> Gitorious AS
> http://gitorious.com
>
> On Thursday, January 17, 2013 at 2:53 PM, Jaco Theron wrote:
>
> Hi,
>
> Maybe this will help as well.  Why would it look for an html page?
>
> *In the /var/log/nginx/access.log file I get this line:*
>
> 192.168.XX.XX - - [17/Jan/2013:15:43:53 +0200] "GET 
> /test-3/test-3/config?username=jacot HTTP/1.1" 404 168 "-" "-" "-"
>
> *and in the /var/log/nginx/error.log*:
>
> 2013/01/17 15:43:53 [error] 1761#0: *2 open() "
> /usr/share/nginx/html/test-3/test-3/config" failed (2: No such file or 
> directory), client: 192.168.XX.XX, server: localhost, request: "GET 
> /test-3/test-3/config?username=jacot HTTP/1.1", host: "192.168.XX.XX"
>
> Thank you in advance,
> Jaco
>
> On Thursday, January 17, 2013 3:42:37 PM UTC+2, Jaco Theron wrote:
>
> Hi, 
>
> I am using Eclipse eGit plugin to push, the same I use currently to push 
> to an older Gitorious server
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 3:05:20 PM UTC+2, Thomas Kjeldahl Nilsson 
> wrote:
>
>  
>  I´m currently out of ideas. Just curious, what is the command you run in 
> your terminal to push? (Scrolled down and didn't see what the actual client 
> side git push command looked like)
>
> -t
>
> On Thursday, January 17, 2013 at 2:01 PM, Jaco Theron wrote:
>
> Hi, 
>
> I had a look at this link 
> https://groups.google.com/forum/?fromgroups=#!topic/gitorious/uJLVU85Dro8
> But I am not sure what to check in Gitorious 3?
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 2:53:37 PM UTC+2, Jaco Theron wrote:
>
> Hi,
>
> Please advise on anything I could check, I am still struggling with this 
> same issue:
>
> I, [2013-01-17 14:53:36#13436]  INFO -- : Connection from "192.168.10.27 
> 62826 22" (jacot): git-upload-pack 'test-3/test-3.git'
> I, [2013-01-17 14:53:36#13436]  INFO -- : Access denied or bad repository 
> path for "jacot": "git-upload-pack 'test-3/test-3.git'"
>
> Kind Regards,
> Jaco
>
> On Thursday, January 17, 2013 12:30:05 PM UTC+2, Jaco Theron wrote:
>
> Hi Thomas,
>
> It seems that somehow my $GITORIOUS_USER is cannot do some stuff on git 
> command? I am not sure
>
> *$GITORIOUS_USER:*
> [gitorious@mars root]$ git jacot
> fatal: cannot exec 'git-jacot': Permission denied
>
> *$ROOT_USER:*
> [root@mars ~]# git jacot
> git: 'jacot' is not a git command. See 'git --help'.
>
> Although I can check the git command for options, and do a version check:
>
> [gitorious@mars root]$ git --version
> git version 1.7.1
>
> Thank you in advance,
> Jaco
>
> On Thursday, January 17, 2013 12:05:43 PM UTC+2, Jaco Theron wrote:
>
> Hi Thomas,
>
> It seems that in this line of the /bin/gitorious file the error gets 
> thrown:
>
> args = client.to_git_shell_argument
>
> Not sure why yet.
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 11:17:22 AM 

Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Thomas Kjeldahl Nilsson
Pushing over ssh calls a ruby script, which in case needs to ask the 
Gitorious/Rails instance on the machine about metadata for the repo being 
pushed to. In order to do this it pings an html endpoint for that data, hence 
that result in the log.   

So test-3/test-3 project/repo is created and accessible in the gitorious 
frontend?  

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





On Thursday, January 17, 2013 at 2:53 PM, Jaco Theron wrote:

> Hi,
>  
> Maybe this will help as well.  Why would it look for an html page?
>  
> In the /var/log/nginx/access.log file I get this line:
>  
> 192.168.XX.XX - - [17/Jan/2013:15:43:53 +0200] "GET 
> /test-3/test-3/config?username=jacot HTTP/1.1" 404 168 "-" "-" "-"
>  
> and in the /var/log/nginx/error.log:
>  
> 2013/01/17 15:43:53 [error] 1761#0: *2 open() 
> "/usr/share/nginx/html/test-3/test-3/config" failed (2: No such file or 
> directory), client: 192.168.XX.XX, server: localhost, request: "GET 
> /test-3/test-3/config?username=jacot HTTP/1.1", host: "192.168.XX.XX"
>  
> Thank you in advance,
> Jaco
>  
> On Thursday, January 17, 2013 3:42:37 PM UTC+2, Jaco Theron wrote:
> > Hi,  
> >  
> > I am using Eclipse eGit plugin to push, the same I use currently to push to 
> > an older Gitorious server
> >  
> > Regards,
> > Jaco
> >  
> > On Thursday, January 17, 2013 3:05:20 PM UTC+2, Thomas Kjeldahl Nilsson 
> > wrote:
> > >  
> > > I´m currently out of ideas. Just curious, what is the command you run in 
> > > your terminal to push? (Scrolled down and didn't see what the actual 
> > > client side git push command looked like)
> > >  
> > > -t
> > >  
> > >  
> > > On Thursday, January 17, 2013 at 2:01 PM, Jaco Theron wrote:
> > >  
> > > > Hi,  
> > > >  
> > > > I had a look at this link 
> > > > https://groups.google.com/forum/?fromgroups=#!topic/gitorious/uJLVU85Dro8
> > > > But I am not sure what to check in Gitorious 3?
> > > >  
> > > > Regards,
> > > > Jaco
> > > >  
> > > > On Thursday, January 17, 2013 2:53:37 PM UTC+2, Jaco Theron wrote:
> > > > > Hi,
> > > > >  
> > > > > Please advise on anything I could check, I am still struggling with 
> > > > > this same issue:
> > > > >  
> > > > > I, [2013-01-17 14:53:36#13436]  INFO -- : Connection from 
> > > > > "192.168.10.27 62826 22" (jacot): git-upload-pack 'test-3/test-3.git'
> > > > > I, [2013-01-17 14:53:36#13436]  INFO -- : Access denied or bad 
> > > > > repository path for "jacot": "git-upload-pack 'test-3/test-3.git'"
> > > > >  
> > > > > Kind Regards,
> > > > > Jaco
> > > > >  
> > > > > On Thursday, January 17, 2013 12:30:05 PM UTC+2, Jaco Theron wrote:
> > > > > > Hi Thomas,
> > > > > >  
> > > > > > It seems that somehow my $GITORIOUS_USER is cannot do some stuff on 
> > > > > > git command? I am not sure
> > > > > >  
> > > > > > $GITORIOUS_USER:
> > > > > > [gitorious@mars root]$ git jacot
> > > > > > fatal: cannot exec 'git-jacot': Permission denied
> > > > > >  
> > > > > > $ROOT_USER:
> > > > > > [root@mars ~]# git jacot
> > > > > > git: 'jacot' is not a git command. See 'git --help'.
> > > > > >  
> > > > > > Although I can check the git command for options, and do a version 
> > > > > > check:
> > > > > >  
> > > > > > [gitorious@mars root]$ git --version
> > > > > > git version 1.7.1
> > > > > >  
> > > > > >  
> > > > > > Thank you in advance,
> > > > > > Jaco
> > > > > >  
> > > > > > On Thursday, January 17, 2013 12:05:43 PM UTC+2, Jaco Theron wrote:
> > > > > > > Hi Thomas,
> > > > > > >  
> > > > > > > It seems that in this line of the /bin/gitorious file the error 
> > > > > > > gets thrown:
> > > > > > >  
> > > > > > > args = client.to_git_shell_argument
> > > > > > >  
> > > > > > > Not sure why yet.
> > > > > > >  
> > > > > > > Regards,
> > > > > > > Jaco
> > > > > > >  
> > > > > > > On Thursday, January 17, 2013 11:17:22 AM UTC+2, Jaco Theron 
> > > > > > > wrote:
> > > > > > > > Hi Thomas,
> > > > > > > >  
> > > > > > > > Yes the user does own that directory and the directory is 
> > > > > > > > present on the disk.
> > > > > > > >  
> > > > > > > > Thank you in advance,
> > > > > > > > Jaco
> > > > > > > >  
> > > > > > > > On Thursday, January 17, 2013 9:56:37 AM UTC+2, Thomas Kjeldahl 
> > > > > > > > Nilsson wrote:
> > > > > > > > > All right - next up, does the git/gitorious user/group own 
> > > > > > > > > not only the app itself, but also the directory where the git 
> > > > > > > > > repositories are stored on disk by gitorious? (the dir 
> > > > > > > > > configured in the"repository_base_path" attribute in 
> > > > > > > > > gitorious.yml?) And of course that directory needs to be 
> > > > > > > > > present on disk first. :)  
> > > > > > > > >  
> > > > > > > > > cheers,
> > > > > > > > > Thomas
> > > > > > > > >  
> > > > > > > > >  
> > > > > > > > > On Thursday, January 17, 2013 at 8:46 AM, Jaco Theron wrote:
> > > > > > > > >  
> > > > > > > > > > Hi Thomas,
> > > > > > > > > >  
> > > > > > > > >

Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Jaco Theron
Hi,

Maybe this will help as well.  Why would it look for an html page?

*In the /var/log/nginx/access.log file I get this line:*

192.168.XX.XX - - [17/Jan/2013:15:43:53 +0200] "GET 
/test-3/test-3/config?username=jacot HTTP/1.1" 404 168 "-" "-" "-"

*and in the /var/log/nginx/error.log*:

2013/01/17 15:43:53 [error] 1761#0: *2 open() "
/usr/share/nginx/html/test-3/test-3/config" failed (2: No such file or 
directory), client: 192.168.XX.XX, server: localhost, request: "GET 
/test-3/test-3/config?username=jacot HTTP/1.1", host: "192.168.XX.XX"

Thank you in advance,
Jaco

On Thursday, January 17, 2013 3:42:37 PM UTC+2, Jaco Theron wrote:
>
> Hi, 
>
> I am using Eclipse eGit plugin to push, the same I use currently to push 
> to an older Gitorious server
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 3:05:20 PM UTC+2, Thomas Kjeldahl Nilsson 
> wrote:
>>
>>  
>>  I´m currently out of ideas. Just curious, what is the command you run 
>> in your terminal to push? (Scrolled down and didn't see what the actual 
>> client side git push command looked like)
>>
>> -t
>>
>> On Thursday, January 17, 2013 at 2:01 PM, Jaco Theron wrote:
>>
>> Hi, 
>>
>> I had a look at this link 
>> https://groups.google.com/forum/?fromgroups=#!topic/gitorious/uJLVU85Dro8
>> But I am not sure what to check in Gitorious 3?
>>
>> Regards,
>> Jaco
>>
>> On Thursday, January 17, 2013 2:53:37 PM UTC+2, Jaco Theron wrote:
>>
>> Hi,
>>
>> Please advise on anything I could check, I am still struggling with this 
>> same issue:
>>
>> I, [2013-01-17 14:53:36#13436]  INFO -- : Connection from "192.168.10.27 
>> 62826 22" (jacot): git-upload-pack 'test-3/test-3.git'
>> I, [2013-01-17 14:53:36#13436]  INFO -- : Access denied or bad repository 
>> path for "jacot": "git-upload-pack 'test-3/test-3.git'"
>>
>> Kind Regards,
>> Jaco
>>
>> On Thursday, January 17, 2013 12:30:05 PM UTC+2, Jaco Theron wrote:
>>
>> Hi Thomas,
>>
>> It seems that somehow my $GITORIOUS_USER is cannot do some stuff on git 
>> command? I am not sure
>>
>> *$GITORIOUS_USER:*
>> [gitorious@mars root]$ git jacot
>> fatal: cannot exec 'git-jacot': Permission denied
>>
>> *$ROOT_USER:*
>> [root@mars ~]# git jacot
>> git: 'jacot' is not a git command. See 'git --help'.
>>
>> Although I can check the git command for options, and do a version check:
>>
>> [gitorious@mars root]$ git --version
>> git version 1.7.1
>>
>> Thank you in advance,
>> Jaco
>>
>> On Thursday, January 17, 2013 12:05:43 PM UTC+2, Jaco Theron wrote:
>>
>> Hi Thomas,
>>
>> It seems that in this line of the /bin/gitorious file the error gets 
>> thrown:
>>
>> args = client.to_git_shell_argument
>>
>> Not sure why yet.
>>
>> Regards,
>> Jaco
>>
>> On Thursday, January 17, 2013 11:17:22 AM UTC+2, Jaco Theron wrote:
>>
>> Hi Thomas,
>>
>> Yes the user does own that directory and the directory is present on the 
>> disk.
>>
>> Thank you in advance,
>> Jaco
>>
>> On Thursday, January 17, 2013 9:56:37 AM UTC+2, Thomas Kjeldahl Nilsson 
>> wrote:
>>
>> All right - next up, does the git/gitorious user/group own not only the 
>> app itself, but also the directory where the git repositories are stored on 
>> disk by gitorious? (the dir configured in the"repository_base_path" 
>> attribute in gitorious.yml?) And of course that directory needs to be 
>> present on disk first. :) 
>>
>> cheers,
>> Thomas
>>
>> On Thursday, January 17, 2013 at 8:46 AM, Jaco Theron wrote:
>>
>> Hi Thomas,
>>
>> No problem :-)
>>
>> Yes, I have added an SSH key, and after page refresh the green tick is 
>> visible.  It is also the exact same key I still use on an old Gitorious 
>> server.
>>
>> Regards,
>> Jaco
>>
>> On Thursday, January 17, 2013 9:40:29 AM UTC+2, Thomas Kjeldahl Nilsson 
>> wrote:
>>
>>  
>>  Just checking off the most obvious possible issues, next: you've added 
>> your ssh key correctly, it has the green "check" next to it in the web ui? 
>>
>> -t
>>
>> On Thursday, January 17, 2013 at 8:28 AM, Jaco Theron wrote:
>>
>> Hi Thomas,
>>
>> I should add that this is using the SSH push URL.  I will not be using 
>> git or http thus only the SSH.
>> Maybe there are some other setting for the SSH that needs to be done?
>>
>> Still getting the error:
>>
>> Access denied or bad repository path for "jacot": "git-upload-pack 
>> 'test-1/test-2.git'
>>
>> Regards,
>> Jaco
>>
>>
>> On Wednesday, January 16, 2013 6:47:02 PM UTC+2, Jaco Theron wrote:
>>
>> Hi Thomas,
>>
>> No problem, yes I created it already via the web interface and it does 
>> exists.  The user jacot is also the creator and administrator, reviewer and 
>> committer.
>>
>> Kind Regards
>> Jaco
>>
>> On Wednesday, January 16, 2013 5:27:13 PM UTC+2, Thomas Kjeldahl Nilsson 
>> wrote:
>>
>>  
>>  Just checking something here first: there is a test-1/test-1 
>> project/repo defined in the web interface before you try to push to it, or 
>> do you just push without creating the project/repo in the web frontend 
>> first?
>>
>> cheers,
>> Thomas
>>
>>
>> On Wednesday, Janua

Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Jaco Theron
Hi, 

I am using Eclipse eGit plugin to push, the same I use currently to push to 
an older Gitorious server

Regards,
Jaco

On Thursday, January 17, 2013 3:05:20 PM UTC+2, Thomas Kjeldahl Nilsson 
wrote:
>
>  
>  I´m currently out of ideas. Just curious, what is the command you run in 
> your terminal to push? (Scrolled down and didn't see what the actual client 
> side git push command looked like)
>
> -t
>
> On Thursday, January 17, 2013 at 2:01 PM, Jaco Theron wrote:
>
> Hi, 
>
> I had a look at this link 
> https://groups.google.com/forum/?fromgroups=#!topic/gitorious/uJLVU85Dro8
> But I am not sure what to check in Gitorious 3?
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 2:53:37 PM UTC+2, Jaco Theron wrote:
>
> Hi,
>
> Please advise on anything I could check, I am still struggling with this 
> same issue:
>
> I, [2013-01-17 14:53:36#13436]  INFO -- : Connection from "192.168.10.27 
> 62826 22" (jacot): git-upload-pack 'test-3/test-3.git'
> I, [2013-01-17 14:53:36#13436]  INFO -- : Access denied or bad repository 
> path for "jacot": "git-upload-pack 'test-3/test-3.git'"
>
> Kind Regards,
> Jaco
>
> On Thursday, January 17, 2013 12:30:05 PM UTC+2, Jaco Theron wrote:
>
> Hi Thomas,
>
> It seems that somehow my $GITORIOUS_USER is cannot do some stuff on git 
> command? I am not sure
>
> *$GITORIOUS_USER:*
> [gitorious@mars root]$ git jacot
> fatal: cannot exec 'git-jacot': Permission denied
>
> *$ROOT_USER:*
> [root@mars ~]# git jacot
> git: 'jacot' is not a git command. See 'git --help'.
>
> Although I can check the git command for options, and do a version check:
>
> [gitorious@mars root]$ git --version
> git version 1.7.1
>
> Thank you in advance,
> Jaco
>
> On Thursday, January 17, 2013 12:05:43 PM UTC+2, Jaco Theron wrote:
>
> Hi Thomas,
>
> It seems that in this line of the /bin/gitorious file the error gets 
> thrown:
>
> args = client.to_git_shell_argument
>
> Not sure why yet.
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 11:17:22 AM UTC+2, Jaco Theron wrote:
>
> Hi Thomas,
>
> Yes the user does own that directory and the directory is present on the 
> disk.
>
> Thank you in advance,
> Jaco
>
> On Thursday, January 17, 2013 9:56:37 AM UTC+2, Thomas Kjeldahl Nilsson 
> wrote:
>
> All right - next up, does the git/gitorious user/group own not only the 
> app itself, but also the directory where the git repositories are stored on 
> disk by gitorious? (the dir configured in the"repository_base_path" 
> attribute in gitorious.yml?) And of course that directory needs to be 
> present on disk first. :) 
>
> cheers,
> Thomas
>
> On Thursday, January 17, 2013 at 8:46 AM, Jaco Theron wrote:
>
> Hi Thomas,
>
> No problem :-)
>
> Yes, I have added an SSH key, and after page refresh the green tick is 
> visible.  It is also the exact same key I still use on an old Gitorious 
> server.
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 9:40:29 AM UTC+2, Thomas Kjeldahl Nilsson 
> wrote:
>
>  
>  Just checking off the most obvious possible issues, next: you've added 
> your ssh key correctly, it has the green "check" next to it in the web ui? 
>
> -t
>
> On Thursday, January 17, 2013 at 8:28 AM, Jaco Theron wrote:
>
> Hi Thomas,
>
> I should add that this is using the SSH push URL.  I will not be using git 
> or http thus only the SSH.
> Maybe there are some other setting for the SSH that needs to be done?
>
> Still getting the error:
>
> Access denied or bad repository path for "jacot": "git-upload-pack 
> 'test-1/test-2.git'
>
> Regards,
> Jaco
>
>
> On Wednesday, January 16, 2013 6:47:02 PM UTC+2, Jaco Theron wrote:
>
> Hi Thomas,
>
> No problem, yes I created it already via the web interface and it does 
> exists.  The user jacot is also the creator and administrator, reviewer and 
> committer.
>
> Kind Regards
> Jaco
>
> On Wednesday, January 16, 2013 5:27:13 PM UTC+2, Thomas Kjeldahl Nilsson 
> wrote:
>
>  
>  Just checking something here first: there is a test-1/test-1 
> project/repo defined in the web interface before you try to push to it, or 
> do you just push without creating the project/repo in the web frontend 
> first?
>
> cheers,
> Thomas
>
>
> On Wednesday, January 16, 2013 at 2:52 PM, Jaco Theron wrote:
>
> Hi,
>
> I had the wrong port in gitorious.yml for this, change to 80 and now get 
> the error:
> 
> Access denied or bad repository path for {user}
>
> I, [2013-01-16 15:52:01#1968]  INFO -- : Connection from "192.168.XX.XX 
> 52492 22" (jacot): git-upload-pack 'test-1/test-2.git'
> I, [2013-01-16 15:52:01#1968]  INFO -- : Access denied or bad repository 
> path for "jacot": "git-upload-pack 'test-1/test-2.git'"
>
> Thank you in advance,
> Jaco T
>
> On Wednesday, January 16, 2013 3:28:35 PM UTC+2, Jaco Theron wrote:
>
> Hi,
>
> When I try to push a project from Eclipse eGit I get the following error:
>
> gito...@192.168.xx.xx:test-1/test-2.git: 
> == Gitorious: ==
> fatal error
> ==

Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Thomas Kjeldahl Nilsson

I´m currently out of ideas. Just curious, what is the command you run in your 
terminal to push? (Scrolled down and didn't see what the actual client side git 
push command looked like)

-t


On Thursday, January 17, 2013 at 2:01 PM, Jaco Theron wrote:

> Hi,  
>  
> I had a look at this link 
> https://groups.google.com/forum/?fromgroups=#!topic/gitorious/uJLVU85Dro8
> But I am not sure what to check in Gitorious 3?
>  
> Regards,
> Jaco
>  
> On Thursday, January 17, 2013 2:53:37 PM UTC+2, Jaco Theron wrote:
> > Hi,
> >  
> > Please advise on anything I could check, I am still struggling with this 
> > same issue:
> >  
> > I, [2013-01-17 14:53:36#13436]  INFO -- : Connection from "192.168.10.27 
> > 62826 22" (jacot): git-upload-pack 'test-3/test-3.git'
> > I, [2013-01-17 14:53:36#13436]  INFO -- : Access denied or bad repository 
> > path for "jacot": "git-upload-pack 'test-3/test-3.git'"
> >  
> > Kind Regards,
> > Jaco
> >  
> > On Thursday, January 17, 2013 12:30:05 PM UTC+2, Jaco Theron wrote:
> > > Hi Thomas,
> > >  
> > > It seems that somehow my $GITORIOUS_USER is cannot do some stuff on git 
> > > command? I am not sure
> > >  
> > > $GITORIOUS_USER:
> > > [gitorious@mars root]$ git jacot
> > > fatal: cannot exec 'git-jacot': Permission denied
> > >  
> > > $ROOT_USER:
> > > [root@mars ~]# git jacot
> > > git: 'jacot' is not a git command. See 'git --help'.
> > >  
> > > Although I can check the git command for options, and do a version check:
> > >  
> > > [gitorious@mars root]$ git --version
> > > git version 1.7.1
> > >  
> > >  
> > > Thank you in advance,
> > > Jaco
> > >  
> > > On Thursday, January 17, 2013 12:05:43 PM UTC+2, Jaco Theron wrote:
> > > > Hi Thomas,
> > > >  
> > > > It seems that in this line of the /bin/gitorious file the error gets 
> > > > thrown:
> > > >  
> > > > args = client.to_git_shell_argument
> > > >  
> > > > Not sure why yet.
> > > >  
> > > > Regards,
> > > > Jaco
> > > >  
> > > > On Thursday, January 17, 2013 11:17:22 AM UTC+2, Jaco Theron wrote:
> > > > > Hi Thomas,
> > > > >  
> > > > > Yes the user does own that directory and the directory is present on 
> > > > > the disk.
> > > > >  
> > > > > Thank you in advance,
> > > > > Jaco
> > > > >  
> > > > > On Thursday, January 17, 2013 9:56:37 AM UTC+2, Thomas Kjeldahl 
> > > > > Nilsson wrote:
> > > > > > All right - next up, does the git/gitorious user/group own not only 
> > > > > > the app itself, but also the directory where the git repositories 
> > > > > > are stored on disk by gitorious? (the dir configured in 
> > > > > > the"repository_base_path" attribute in gitorious.yml?) And of 
> > > > > > course that directory needs to be present on disk first. :)  
> > > > > >  
> > > > > > cheers,
> > > > > > Thomas
> > > > > >  
> > > > > >  
> > > > > > On Thursday, January 17, 2013 at 8:46 AM, Jaco Theron wrote:
> > > > > >  
> > > > > > > Hi Thomas,
> > > > > > >  
> > > > > > > No problem :-)
> > > > > > >  
> > > > > > > Yes, I have added an SSH key, and after page refresh the green 
> > > > > > > tick is visible.  It is also the exact same key I still use on an 
> > > > > > > old Gitorious server.
> > > > > > >  
> > > > > > > Regards,
> > > > > > > Jaco
> > > > > > >  
> > > > > > > On Thursday, January 17, 2013 9:40:29 AM UTC+2, Thomas Kjeldahl 
> > > > > > > Nilsson wrote:
> > > > > > > >  
> > > > > > > > Just checking off the most obvious possible issues, next: 
> > > > > > > > you've added your ssh key correctly, it has the green "check" 
> > > > > > > > next to it in the web ui?  
> > > > > > > >  
> > > > > > > > -t  
> > > > > > > >  
> > > > > > > > On Thursday, January 17, 2013 at 8:28 AM, Jaco Theron wrote:
> > > > > > > >  
> > > > > > > > > Hi Thomas,
> > > > > > > > >  
> > > > > > > > > I should add that this is using the SSH push URL.  I will not 
> > > > > > > > > be using git or http thus only the SSH.
> > > > > > > > > Maybe there are some other setting for the SSH that needs to 
> > > > > > > > > be done?
> > > > > > > > >  
> > > > > > > > > Still getting the error:
> > > > > > > > >  
> > > > > > > > > Access denied or bad repository path for "jacot": 
> > > > > > > > > "git-upload-pack 'test-1/test-2.git'
> > > > > > > > >  
> > > > > > > > > Regards,
> > > > > > > > > Jaco
> > > > > > > > >  
> > > > > > > > >  
> > > > > > > > > On Wednesday, January 16, 2013 6:47:02 PM UTC+2, Jaco Theron 
> > > > > > > > > wrote:
> > > > > > > > > > Hi Thomas,
> > > > > > > > > >  
> > > > > > > > > > No problem, yes I created it already via the web interface 
> > > > > > > > > > and it does exists.  The user jacot is also the creator and 
> > > > > > > > > > administrator, reviewer and committer.
> > > > > > > > > >  
> > > > > > > > > > Kind Regards
> > > > > > > > > > Jaco
> > > > > > > > > >  
> > > > > > > > > > On Wednesday, January 16, 2013 5:27:13 PM UTC+2, Thomas 
> > > > > > > > > > Kjeldahl Nilsson wrote:
> > > > > > > > > > >  
> > > > > > > > > > > Just checking something her

Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Jaco Theron
Hi, 

I had a look at this 
link https://groups.google.com/forum/?fromgroups=#!topic/gitorious/uJLVU85Dro8
But I am not sure what to check in Gitorious 3?

Regards,
Jaco

On Thursday, January 17, 2013 2:53:37 PM UTC+2, Jaco Theron wrote:
>
> Hi,
>
> Please advise on anything I could check, I am still struggling with this 
> same issue:
>
> I, [2013-01-17 14:53:36#13436]  INFO -- : Connection from "192.168.10.27 
> 62826 22" (jacot): git-upload-pack 'test-3/test-3.git'
> I, [2013-01-17 14:53:36#13436]  INFO -- : Access denied or bad repository 
> path for "jacot": "git-upload-pack 'test-3/test-3.git'"
>
> Kind Regards,
> Jaco
>
> On Thursday, January 17, 2013 12:30:05 PM UTC+2, Jaco Theron wrote:
>>
>> Hi Thomas,
>>
>> It seems that somehow my $GITORIOUS_USER is cannot do some stuff on git 
>> command? I am not sure
>>
>> *$GITORIOUS_USER:*
>> [gitorious@mars root]$ git jacot
>> fatal: cannot exec 'git-jacot': Permission denied
>>
>> *$ROOT_USER:*
>> [root@mars ~]# git jacot
>> git: 'jacot' is not a git command. See 'git --help'.
>>
>> Although I can check the git command for options, and do a version check:
>>
>> [gitorious@mars root]$ git --version
>> git version 1.7.1
>>
>> Thank you in advance,
>> Jaco
>>
>> On Thursday, January 17, 2013 12:05:43 PM UTC+2, Jaco Theron wrote:
>>>
>>> Hi Thomas,
>>>
>>> It seems that in this line of the /bin/gitorious file the error gets 
>>> thrown:
>>>
>>> args = client.to_git_shell_argument
>>>
>>> Not sure why yet.
>>>
>>> Regards,
>>> Jaco
>>>
>>> On Thursday, January 17, 2013 11:17:22 AM UTC+2, Jaco Theron wrote:

 Hi Thomas,

 Yes the user does own that directory and the directory is present on 
 the disk.

 Thank you in advance,
 Jaco

 On Thursday, January 17, 2013 9:56:37 AM UTC+2, Thomas Kjeldahl Nilsson 
 wrote:
>
> All right - next up, does the git/gitorious user/group own not only 
> the app itself, but also the directory where the git repositories are 
> stored on disk by gitorious? (the dir configured in 
> the"repository_base_path" attribute in gitorious.yml?) And of course that 
> directory needs to be present on disk first. :) 
>
> cheers,
> Thomas
>
> On Thursday, January 17, 2013 at 8:46 AM, Jaco Theron wrote:
>
> Hi Thomas,
>
> No problem :-)
>
> Yes, I have added an SSH key, and after page refresh the green tick is 
> visible.  It is also the exact same key I still use on an old Gitorious 
> server.
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 9:40:29 AM UTC+2, Thomas Kjeldahl 
> Nilsson wrote:
>
>  
>  Just checking off the most obvious possible issues, next: you've 
> added your ssh key correctly, it has the green "check" next to it in the 
> web ui? 
>
> -t
>
> On Thursday, January 17, 2013 at 8:28 AM, Jaco Theron wrote:
>
> Hi Thomas,
>
> I should add that this is using the SSH push URL.  I will not be using 
> git or http thus only the SSH.
> Maybe there are some other setting for the SSH that needs to be done?
>
> Still getting the error:
>
> Access denied or bad repository path for "jacot": "git-upload-pack 
> 'test-1/test-2.git'
>
> Regards,
> Jaco
>
>
> On Wednesday, January 16, 2013 6:47:02 PM UTC+2, Jaco Theron wrote:
>
> Hi Thomas,
>
> No problem, yes I created it already via the web interface and it does 
> exists.  The user jacot is also the creator and administrator, reviewer 
> and 
> committer.
>
> Kind Regards
> Jaco
>
> On Wednesday, January 16, 2013 5:27:13 PM UTC+2, Thomas Kjeldahl 
> Nilsson wrote:
>
>  
>  Just checking something here first: there is a test-1/test-1 
> project/repo defined in the web interface before you try to push to it, 
> or 
> do you just push without creating the project/repo in the web frontend 
> first?
>
> cheers,
> Thomas
>
>
> On Wednesday, January 16, 2013 at 2:52 PM, Jaco Theron wrote:
>
> Hi,
>
> I had the wrong port in gitorious.yml for this, change to 80 and now 
> get the error:
> 
> Access denied or bad repository path for {user}
>
> I, [2013-01-16 15:52:01#1968]  INFO -- : Connection from 
> "192.168.XX.XX 52492 22" (jacot): git-upload-pack 'test-1/test-2.git'
> I, [2013-01-16 15:52:01#1968]  INFO -- : Access denied or bad 
> repository path for "jacot": "git-upload-pack 'test-1/test-2.git'"
>
> Thank you in advance,
> Jaco T
>
> On Wednesday, January 16, 2013 3:28:35 PM UTC+2, Jaco Theron wrote:
>
> Hi,
>
> When I try to push a project from Eclipse eGit I get the following 
> error:
>
> gito...@192.168.xx.xx:test-1/test-2.git: 
> == Gitorious: 
> ==
> fatal error

Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Jaco Theron
Hi,

Please advise on anything I could check, I am still struggling with this 
same issue:

I, [2013-01-17 14:53:36#13436]  INFO -- : Connection from "192.168.10.27 
62826 22" (jacot): git-upload-pack 'test-3/test-3.git'
I, [2013-01-17 14:53:36#13436]  INFO -- : Access denied or bad repository 
path for "jacot": "git-upload-pack 'test-3/test-3.git'"

Kind Regards,
Jaco

On Thursday, January 17, 2013 12:30:05 PM UTC+2, Jaco Theron wrote:
>
> Hi Thomas,
>
> It seems that somehow my $GITORIOUS_USER is cannot do some stuff on git 
> command? I am not sure
>
> *$GITORIOUS_USER:*
> [gitorious@mars root]$ git jacot
> fatal: cannot exec 'git-jacot': Permission denied
>
> *$ROOT_USER:*
> [root@mars ~]# git jacot
> git: 'jacot' is not a git command. See 'git --help'.
>
> Although I can check the git command for options, and do a version check:
>
> [gitorious@mars root]$ git --version
> git version 1.7.1
>
> Thank you in advance,
> Jaco
>
> On Thursday, January 17, 2013 12:05:43 PM UTC+2, Jaco Theron wrote:
>>
>> Hi Thomas,
>>
>> It seems that in this line of the /bin/gitorious file the error gets 
>> thrown:
>>
>> args = client.to_git_shell_argument
>>
>> Not sure why yet.
>>
>> Regards,
>> Jaco
>>
>> On Thursday, January 17, 2013 11:17:22 AM UTC+2, Jaco Theron wrote:
>>>
>>> Hi Thomas,
>>>
>>> Yes the user does own that directory and the directory is present on the 
>>> disk.
>>>
>>> Thank you in advance,
>>> Jaco
>>>
>>> On Thursday, January 17, 2013 9:56:37 AM UTC+2, Thomas Kjeldahl Nilsson 
>>> wrote:

 All right - next up, does the git/gitorious user/group own not only the 
 app itself, but also the directory where the git repositories are stored 
 on 
 disk by gitorious? (the dir configured in the"repository_base_path" 
 attribute in gitorious.yml?) And of course that directory needs to be 
 present on disk first. :) 

 cheers,
 Thomas

 On Thursday, January 17, 2013 at 8:46 AM, Jaco Theron wrote:

 Hi Thomas,

 No problem :-)

 Yes, I have added an SSH key, and after page refresh the green tick is 
 visible.  It is also the exact same key I still use on an old Gitorious 
 server.

 Regards,
 Jaco

 On Thursday, January 17, 2013 9:40:29 AM UTC+2, Thomas Kjeldahl Nilsson 
 wrote:

  
  Just checking off the most obvious possible issues, next: you've 
 added your ssh key correctly, it has the green "check" next to it in the 
 web ui? 

 -t

 On Thursday, January 17, 2013 at 8:28 AM, Jaco Theron wrote:

 Hi Thomas,

 I should add that this is using the SSH push URL.  I will not be using 
 git or http thus only the SSH.
 Maybe there are some other setting for the SSH that needs to be done?

 Still getting the error:

 Access denied or bad repository path for "jacot": "git-upload-pack 
 'test-1/test-2.git'

 Regards,
 Jaco


 On Wednesday, January 16, 2013 6:47:02 PM UTC+2, Jaco Theron wrote:

 Hi Thomas,

 No problem, yes I created it already via the web interface and it does 
 exists.  The user jacot is also the creator and administrator, reviewer 
 and 
 committer.

 Kind Regards
 Jaco

 On Wednesday, January 16, 2013 5:27:13 PM UTC+2, Thomas Kjeldahl 
 Nilsson wrote:

  
  Just checking something here first: there is a test-1/test-1 
 project/repo defined in the web interface before you try to push to it, or 
 do you just push without creating the project/repo in the web frontend 
 first?

 cheers,
 Thomas


 On Wednesday, January 16, 2013 at 2:52 PM, Jaco Theron wrote:

 Hi,

 I had the wrong port in gitorious.yml for this, change to 80 and now 
 get the error:
 
 Access denied or bad repository path for {user}

 I, [2013-01-16 15:52:01#1968]  INFO -- : Connection from "192.168.XX.XX 
 52492 22" (jacot): git-upload-pack 'test-1/test-2.git'
 I, [2013-01-16 15:52:01#1968]  INFO -- : Access denied or bad 
 repository path for "jacot": "git-upload-pack 'test-1/test-2.git'"

 Thank you in advance,
 Jaco T

 On Wednesday, January 16, 2013 3:28:35 PM UTC+2, Jaco Theron wrote:

 Hi,

 When I try to push a project from Eclipse eGit I get the following 
 error:

 gito...@192.168.xx.xx:test-1/test-2.git: 
 == Gitorious: ==
 fatal error
 


 gito...@192.168.xx.xx:test-1/test-2.git: 
 == Gitorious: ==
 fatal error
 



 *The log file log/gitorious_auth.log:*

 I, [2013-01-16 15:23:39#4056]  INFO -- : Connecti

Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Jaco Theron
Hi Thomas,

It seems that somehow my $GITORIOUS_USER is cannot do some stuff on git 
command? I am not sure

*$GITORIOUS_USER:*
[gitorious@mars root]$ git jacot
fatal: cannot exec 'git-jacot': Permission denied

*$ROOT_USER:*
[root@mars ~]# git jacot
git: 'jacot' is not a git command. See 'git --help'.

Although I can check the git command for options, and do a version check:

[gitorious@mars root]$ git --version
git version 1.7.1

Thank you in advance,
Jaco

On Thursday, January 17, 2013 12:05:43 PM UTC+2, Jaco Theron wrote:
>
> Hi Thomas,
>
> It seems that in this line of the /bin/gitorious file the error gets 
> thrown:
>
> args = client.to_git_shell_argument
>
> Not sure why yet.
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 11:17:22 AM UTC+2, Jaco Theron wrote:
>>
>> Hi Thomas,
>>
>> Yes the user does own that directory and the directory is present on the 
>> disk.
>>
>> Thank you in advance,
>> Jaco
>>
>> On Thursday, January 17, 2013 9:56:37 AM UTC+2, Thomas Kjeldahl Nilsson 
>> wrote:
>>>
>>> All right - next up, does the git/gitorious user/group own not only the 
>>> app itself, but also the directory where the git repositories are stored on 
>>> disk by gitorious? (the dir configured in the"repository_base_path" 
>>> attribute in gitorious.yml?) And of course that directory needs to be 
>>> present on disk first. :) 
>>>
>>> cheers,
>>> Thomas
>>>
>>> On Thursday, January 17, 2013 at 8:46 AM, Jaco Theron wrote:
>>>
>>> Hi Thomas,
>>>
>>> No problem :-)
>>>
>>> Yes, I have added an SSH key, and after page refresh the green tick is 
>>> visible.  It is also the exact same key I still use on an old Gitorious 
>>> server.
>>>
>>> Regards,
>>> Jaco
>>>
>>> On Thursday, January 17, 2013 9:40:29 AM UTC+2, Thomas Kjeldahl Nilsson 
>>> wrote:
>>>
>>>  
>>>  Just checking off the most obvious possible issues, next: you've added 
>>> your ssh key correctly, it has the green "check" next to it in the web ui? 
>>>
>>> -t
>>>
>>> On Thursday, January 17, 2013 at 8:28 AM, Jaco Theron wrote:
>>>
>>> Hi Thomas,
>>>
>>> I should add that this is using the SSH push URL.  I will not be using 
>>> git or http thus only the SSH.
>>> Maybe there are some other setting for the SSH that needs to be done?
>>>
>>> Still getting the error:
>>>
>>> Access denied or bad repository path for "jacot": "git-upload-pack 
>>> 'test-1/test-2.git'
>>>
>>> Regards,
>>> Jaco
>>>
>>>
>>> On Wednesday, January 16, 2013 6:47:02 PM UTC+2, Jaco Theron wrote:
>>>
>>> Hi Thomas,
>>>
>>> No problem, yes I created it already via the web interface and it does 
>>> exists.  The user jacot is also the creator and administrator, reviewer and 
>>> committer.
>>>
>>> Kind Regards
>>> Jaco
>>>
>>> On Wednesday, January 16, 2013 5:27:13 PM UTC+2, Thomas Kjeldahl Nilsson 
>>> wrote:
>>>
>>>  
>>>  Just checking something here first: there is a test-1/test-1 
>>> project/repo defined in the web interface before you try to push to it, or 
>>> do you just push without creating the project/repo in the web frontend 
>>> first?
>>>
>>> cheers,
>>> Thomas
>>>
>>>
>>> On Wednesday, January 16, 2013 at 2:52 PM, Jaco Theron wrote:
>>>
>>> Hi,
>>>
>>> I had the wrong port in gitorious.yml for this, change to 80 and now get 
>>> the error:
>>> 
>>> Access denied or bad repository path for {user}
>>>
>>> I, [2013-01-16 15:52:01#1968]  INFO -- : Connection from "192.168.XX.XX 
>>> 52492 22" (jacot): git-upload-pack 'test-1/test-2.git'
>>> I, [2013-01-16 15:52:01#1968]  INFO -- : Access denied or bad repository 
>>> path for "jacot": "git-upload-pack 'test-1/test-2.git'"
>>>
>>> Thank you in advance,
>>> Jaco T
>>>
>>> On Wednesday, January 16, 2013 3:28:35 PM UTC+2, Jaco Theron wrote:
>>>
>>> Hi,
>>>
>>> When I try to push a project from Eclipse eGit I get the following error:
>>>
>>> gito...@192.168.xx.xx:test-1/test-2.git: 
>>> == Gitorious: ==
>>> fatal error
>>> 
>>>
>>>
>>> gito...@192.168.xx.xx:test-1/test-2.git: 
>>> == Gitorious: ==
>>> fatal error
>>> 
>>>
>>>
>>>
>>> *The log file log/gitorious_auth.log:*
>>>
>>> I, [2013-01-16 15:23:39#4056]  INFO -- : Connection from "192.168.XX.XX 
>>> 52190 22" (jacot): git-upload-pack 'test-1/test-2.git'
>>> F, [2013-01-16 15:23:39#4056] FATAL -- : EOFError end of file reached: 
>>> /usr/lib/ruby/1.8/net/protocol.rb:135:in `sysread'
>>>   /usr/lib/ruby/1.8/net/protocol.rb:135:in `rbuf_fill'
>>>   /usr/lib/ruby/1.8/timeout.rb:67:in `timeout'
>>>   /usr/lib/ruby/1.8/timeout.rb:101:in `timeout'
>>>   /usr/lib/ruby/1.8/net/protocol.rb:134:in `rbuf_fill'
>>>   /usr/lib/ruby/1.8/net/protocol.rb:116:in `readuntil'
>>>   /usr/lib/ruby/1.8/net/protocol.rb:126:in `readline'
>>>   /usr/lib/ruby/1.8/net/http.rb:2028:in `read_status_line'
>>>   /usr/lib/ruby/1.8/ne

Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Jaco Theron
Hi Thomas,

It seems that in this line of the /bin/gitorious file the error gets thrown:

args = client.to_git_shell_argument

Not sure why yet.

Regards,
Jaco

On Thursday, January 17, 2013 11:17:22 AM UTC+2, Jaco Theron wrote:
>
> Hi Thomas,
>
> Yes the user does own that directory and the directory is present on the 
> disk.
>
> Thank you in advance,
> Jaco
>
> On Thursday, January 17, 2013 9:56:37 AM UTC+2, Thomas Kjeldahl Nilsson 
> wrote:
>>
>> All right - next up, does the git/gitorious user/group own not only the 
>> app itself, but also the directory where the git repositories are stored on 
>> disk by gitorious? (the dir configured in the"repository_base_path" 
>> attribute in gitorious.yml?) And of course that directory needs to be 
>> present on disk first. :) 
>>
>> cheers,
>> Thomas
>>
>> On Thursday, January 17, 2013 at 8:46 AM, Jaco Theron wrote:
>>
>> Hi Thomas,
>>
>> No problem :-)
>>
>> Yes, I have added an SSH key, and after page refresh the green tick is 
>> visible.  It is also the exact same key I still use on an old Gitorious 
>> server.
>>
>> Regards,
>> Jaco
>>
>> On Thursday, January 17, 2013 9:40:29 AM UTC+2, Thomas Kjeldahl Nilsson 
>> wrote:
>>
>>  
>>  Just checking off the most obvious possible issues, next: you've added 
>> your ssh key correctly, it has the green "check" next to it in the web ui? 
>>
>> -t
>>
>> On Thursday, January 17, 2013 at 8:28 AM, Jaco Theron wrote:
>>
>> Hi Thomas,
>>
>> I should add that this is using the SSH push URL.  I will not be using 
>> git or http thus only the SSH.
>> Maybe there are some other setting for the SSH that needs to be done?
>>
>> Still getting the error:
>>
>> Access denied or bad repository path for "jacot": "git-upload-pack 
>> 'test-1/test-2.git'
>>
>> Regards,
>> Jaco
>>
>>
>> On Wednesday, January 16, 2013 6:47:02 PM UTC+2, Jaco Theron wrote:
>>
>> Hi Thomas,
>>
>> No problem, yes I created it already via the web interface and it does 
>> exists.  The user jacot is also the creator and administrator, reviewer and 
>> committer.
>>
>> Kind Regards
>> Jaco
>>
>> On Wednesday, January 16, 2013 5:27:13 PM UTC+2, Thomas Kjeldahl Nilsson 
>> wrote:
>>
>>  
>>  Just checking something here first: there is a test-1/test-1 
>> project/repo defined in the web interface before you try to push to it, or 
>> do you just push without creating the project/repo in the web frontend 
>> first?
>>
>> cheers,
>> Thomas
>>
>>
>> On Wednesday, January 16, 2013 at 2:52 PM, Jaco Theron wrote:
>>
>> Hi,
>>
>> I had the wrong port in gitorious.yml for this, change to 80 and now get 
>> the error:
>> 
>> Access denied or bad repository path for {user}
>>
>> I, [2013-01-16 15:52:01#1968]  INFO -- : Connection from "192.168.XX.XX 
>> 52492 22" (jacot): git-upload-pack 'test-1/test-2.git'
>> I, [2013-01-16 15:52:01#1968]  INFO -- : Access denied or bad repository 
>> path for "jacot": "git-upload-pack 'test-1/test-2.git'"
>>
>> Thank you in advance,
>> Jaco T
>>
>> On Wednesday, January 16, 2013 3:28:35 PM UTC+2, Jaco Theron wrote:
>>
>> Hi,
>>
>> When I try to push a project from Eclipse eGit I get the following error:
>>
>> gito...@192.168.xx.xx:test-1/test-2.git: 
>> == Gitorious: ==
>> fatal error
>> 
>>
>>
>> gito...@192.168.xx.xx:test-1/test-2.git: 
>> == Gitorious: ==
>> fatal error
>> 
>>
>>
>>
>> *The log file log/gitorious_auth.log:*
>>
>> I, [2013-01-16 15:23:39#4056]  INFO -- : Connection from "192.168.XX.XX 
>> 52190 22" (jacot): git-upload-pack 'test-1/test-2.git'
>> F, [2013-01-16 15:23:39#4056] FATAL -- : EOFError end of file reached: 
>> /usr/lib/ruby/1.8/net/protocol.rb:135:in `sysread'
>>   /usr/lib/ruby/1.8/net/protocol.rb:135:in `rbuf_fill'
>>   /usr/lib/ruby/1.8/timeout.rb:67:in `timeout'
>>   /usr/lib/ruby/1.8/timeout.rb:101:in `timeout'
>>   /usr/lib/ruby/1.8/net/protocol.rb:134:in `rbuf_fill'
>>   /usr/lib/ruby/1.8/net/protocol.rb:116:in `readuntil'
>>   /usr/lib/ruby/1.8/net/protocol.rb:126:in `readline'
>>   /usr/lib/ruby/1.8/net/http.rb:2028:in `read_status_line'
>>   /usr/lib/ruby/1.8/net/http.rb:2017:in `read_new'
>>   /usr/lib/ruby/1.8/net/http.rb:1051:in `request'
>>   /usr/lib/ruby/1.8/net/http.rb:772:in `get'
>>   /projects/gitorious/gitorious/bin/../lib/gitorious/ssh/client.rb:88:in 
>> `configuration'
>>   /projects/gitorious/gitorious/bin/../lib/gitorious/ssh/client.rb:62:in 
>> `real_path'
>>   /projects/gitorious/gitorious/bin/../lib/gitorious/ssh/client.rb:76:in 
>> `to_git_shell_argument'
>>   /usr/local/bin/gitorious:59
>>
>> Thank you in advance,
>> Jaco T
>>
>>
>>  -- 
>> To post to this group, send email to gito...@googlegroups.com
>> To unsubscribe from this group, send email to
>> gitorious+...@googlegroups.com
>>  
>>
>>   -- 
>> To post to this

Re: [gitorious] Re: Gitorious 3 Eclipse eGit push error

2013-01-17 Thread Jaco Theron
Hi Thomas,

Yes the user does own that directory and the directory is present on the 
disk.

Thank you in advance,
Jaco

On Thursday, January 17, 2013 9:56:37 AM UTC+2, Thomas Kjeldahl Nilsson 
wrote:
>
> All right - next up, does the git/gitorious user/group own not only the 
> app itself, but also the directory where the git repositories are stored on 
> disk by gitorious? (the dir configured in the"repository_base_path" 
> attribute in gitorious.yml?) And of course that directory needs to be 
> present on disk first. :) 
>
> cheers,
> Thomas
>
> On Thursday, January 17, 2013 at 8:46 AM, Jaco Theron wrote:
>
> Hi Thomas,
>
> No problem :-)
>
> Yes, I have added an SSH key, and after page refresh the green tick is 
> visible.  It is also the exact same key I still use on an old Gitorious 
> server.
>
> Regards,
> Jaco
>
> On Thursday, January 17, 2013 9:40:29 AM UTC+2, Thomas Kjeldahl Nilsson 
> wrote:
>
>  
>  Just checking off the most obvious possible issues, next: you've added 
> your ssh key correctly, it has the green "check" next to it in the web ui? 
>
> -t
>
> On Thursday, January 17, 2013 at 8:28 AM, Jaco Theron wrote:
>
> Hi Thomas,
>
> I should add that this is using the SSH push URL.  I will not be using git 
> or http thus only the SSH.
> Maybe there are some other setting for the SSH that needs to be done?
>
> Still getting the error:
>
> Access denied or bad repository path for "jacot": "git-upload-pack 
> 'test-1/test-2.git'
>
> Regards,
> Jaco
>
>
> On Wednesday, January 16, 2013 6:47:02 PM UTC+2, Jaco Theron wrote:
>
> Hi Thomas,
>
> No problem, yes I created it already via the web interface and it does 
> exists.  The user jacot is also the creator and administrator, reviewer and 
> committer.
>
> Kind Regards
> Jaco
>
> On Wednesday, January 16, 2013 5:27:13 PM UTC+2, Thomas Kjeldahl Nilsson 
> wrote:
>
>  
>  Just checking something here first: there is a test-1/test-1 
> project/repo defined in the web interface before you try to push to it, or 
> do you just push without creating the project/repo in the web frontend 
> first?
>
> cheers,
> Thomas
>
>
> On Wednesday, January 16, 2013 at 2:52 PM, Jaco Theron wrote:
>
> Hi,
>
> I had the wrong port in gitorious.yml for this, change to 80 and now get 
> the error:
> 
> Access denied or bad repository path for {user}
>
> I, [2013-01-16 15:52:01#1968]  INFO -- : Connection from "192.168.XX.XX 
> 52492 22" (jacot): git-upload-pack 'test-1/test-2.git'
> I, [2013-01-16 15:52:01#1968]  INFO -- : Access denied or bad repository 
> path for "jacot": "git-upload-pack 'test-1/test-2.git'"
>
> Thank you in advance,
> Jaco T
>
> On Wednesday, January 16, 2013 3:28:35 PM UTC+2, Jaco Theron wrote:
>
> Hi,
>
> When I try to push a project from Eclipse eGit I get the following error:
>
> gito...@192.168.xx.xx:test-1/test-2.git: 
> == Gitorious: ==
> fatal error
> 
>
>
> gito...@192.168.xx.xx:test-1/test-2.git: 
> == Gitorious: ==
> fatal error
> 
>
>
>
> *The log file log/gitorious_auth.log:*
>
> I, [2013-01-16 15:23:39#4056]  INFO -- : Connection from "192.168.XX.XX 
> 52190 22" (jacot): git-upload-pack 'test-1/test-2.git'
> F, [2013-01-16 15:23:39#4056] FATAL -- : EOFError end of file reached: 
> /usr/lib/ruby/1.8/net/protocol.rb:135:in `sysread'
>   /usr/lib/ruby/1.8/net/protocol.rb:135:in `rbuf_fill'
>   /usr/lib/ruby/1.8/timeout.rb:67:in `timeout'
>   /usr/lib/ruby/1.8/timeout.rb:101:in `timeout'
>   /usr/lib/ruby/1.8/net/protocol.rb:134:in `rbuf_fill'
>   /usr/lib/ruby/1.8/net/protocol.rb:116:in `readuntil'
>   /usr/lib/ruby/1.8/net/protocol.rb:126:in `readline'
>   /usr/lib/ruby/1.8/net/http.rb:2028:in `read_status_line'
>   /usr/lib/ruby/1.8/net/http.rb:2017:in `read_new'
>   /usr/lib/ruby/1.8/net/http.rb:1051:in `request'
>   /usr/lib/ruby/1.8/net/http.rb:772:in `get'
>   /projects/gitorious/gitorious/bin/../lib/gitorious/ssh/client.rb:88:in 
> `configuration'
>   /projects/gitorious/gitorious/bin/../lib/gitorious/ssh/client.rb:62:in 
> `real_path'
>   /projects/gitorious/gitorious/bin/../lib/gitorious/ssh/client.rb:76:in 
> `to_git_shell_argument'
>   /usr/local/bin/gitorious:59
>
> Thank you in advance,
> Jaco T
>
>
>  -- 
> To post to this group, send email to gito...@googlegroups.com
> To unsubscribe from this group, send email to
> gitorious+...@googlegroups.com
>  
>
>   -- 
> To post to this group, send email to gito...@googlegroups.com
> To unsubscribe from this group, send email to
> gitorious+...@googlegroups.com
>  
>
>   -- 
> To post to this group, send email to gito...@googlegroups.com
> To unsubscribe from this group, send email to
> gitorious+...@googlegroups.com 
>  
>  
>  

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