Posts about deployment
Categories
- Jan 09 2010
Code Repository Analysis
Ever wonder how many files or lines of code are sitting in your project? Hop on the command line and run the following find commands in your bash Find the number of files in the current directory (runs recursively down into all subdirectories): find . | wc -l Find how many lines of code are […]
Continue ReadingCode Repository Analysis- Tagged in:
- tools and workflow,
- web applications
- Jan 05 2010
Restart Apache On Redhat
The path to httpd on redhat 9 is /etc/init.d/httpd You can run the following commands on it: /etc/init.d/httpd configtest /etc/init.d/httpd graceful /etc/init.d/httpd restart /etc/init.d/httpd stop /etc/init.d/httpd start I always run configtest before restarting to make sure I haven’t messed anything up.
Continue ReadingRestart Apache On Redhat- Tagged in:
- deployment,
- tools and workflow