Is there a good reason to avoid installing Git on your web server?
-
I've heard people say (far enough in the past that I can't go back and ask them to back up their position, or remember if they gave reasons) that you should never install Git on your (web or app) servers. I can't come up with a good reason *not* to install it, and having it installed can make deployments much more convenient. For instance, using http://mina-deploy.github.io/mina/ with a few configuration settings I can generate a Bash script that is pushed to the server and does everything necessary to deploy the latest version of an app. But Mina assumes you have Git installed on the server. (I would prefer to use Mina over something like Capistrano, since Capistrano sends individual Bash commands to the server, rather than one cohesive script. This means that state is lost between commands. That doesn't matter for simple deployments, but I've run into problems caused by this in the past.) (I could also just write my own shell script to do the deployment, pulling down a tarball or zipfile from GitHub and doing everything directly in the script. The problem with that is in every case I've decided to script something in a shell script and the script is used over any period of time, it grows in complexity and reaches a point where I ask myself "why on earth did you not just write this in Ruby in the first place!? It would have saved an enormous amount of time!". Mina is already written and does what I need, and is superior to having to log into the server to manually trigger a remote script.)
-
Answer:
I agree with Don, it's fine to install Git on a server. It makes various deployment strategies possible and removes a lot of pain and suffering that comes from not using Git. It has been immensely useful in variety of situations to use Git on the server itself to keep track of changes of directories like /etc if you don't deploy these from git repositories themselves or automation scripts stored in git repositories.
Zach Dennis at Quora Visit the source
Other answers
It's fine to install git and use it over ssh, but don't run the http://git-scm.com/docs/git-daemon on a production server.
Don Marti
While itâs a good idea to not install things you donât need on a web server, git as a deployment tool is a perfectly legitimate usage.However, three caveats. As noted, do not run the git-daemon. Youâre going to do pulls from somewhere else Give due consideration to what user and group to run git as. This user should have access to just what is needed to update the web server deployment. This may be more access than is needed for the web server itself (i.e. write access to things the web server should only have read access to). Do not store your credentials for the remote repository on your web server. If your server is compromised, it puts your repo and possibly the server on which the repo is hosted at risk. This last is important. While gitâs use of hashes makes it impossible to alter a commit, there is nothing to prevent an attacker from pushing a new commit that appears to be from someone else. SSH credentials might also give other access as well.Instead, use SSHâs forwarding agent feature, to allow the credentials to live on a system that initiates the deployment â whether your development machine, or deployment server, or whatever.Here are some directions for using SSHâs forwarding agent feature, courtesy of githubhttps://developer.github.com/guides/using-ssh-agent-forwarding/
Bob Kerns
Related Q & A:
- What is a good way to structure mark-up generating code and avoid the example mess?Best solution by Code Review
- What is a good thing to put on a job application when they ask whats the reason for leaving the position?Best solution by Yahoo! Answers
- What is a good reason for working in retail?Best solution by Yahoo! Answers
- What is a good web page to apply for a job?Best solution by Yahoo! Answers
- What is a good STMP outgoing YAHOO server?Best solution by serversmtp.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.