Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jgit-dev] Jgit - S3

On 2 Aug 2014, at 21:19, Andrew Lim <km.lim@xxxxxxxxxxxxxxxxxx> wrote:

Hi,
 
I am currently locking down ports on my instances. Can you help tell me what ports do jgit use? So I do not accidentally close them down.

By itself JGit doesn’t use any ports. However, if you use JGit to talk to a Git repository hosted on an external SSH server, it will use the standard SSH port (22). If you talk to a Git server then it will use 9418 (though Gerrit servers typically exist on 29418). If you talk to repositories over HTTP or HTTPS then it will talk to 80 or 443 respectively.

If you’re using JGit as a daemon then it will listen on port 9418.

The Amazon S3 client speaks HTTPS (possibly HTTP as well; I’ve not looked) which will mean ports 443 and 80.

Alex


Back to the top