Browsing articles from "May, 2010"
May
16
2010
Worship Leading 16 May 2010

Worship 16th May 2010

Songs: Happy Day This is our God Surrender How great is our God God of this city Resources below: Happy Day Words: Click Here Music: Click Here Video: {youtube}CAq_CVciNSs{/youtube} This is our God Words: Click Here Music: Click Here Video:{youtube}QbrL64Ujb1c{/youtube} Surrender Words: Click Here Music: Click Here Video:{youtube}9Yk0Sj7oglk{/youtube} How great is our God Words: Click Here Music: Click Here Video:{youtube}0ZFN8TBfgNU{/youtube} God of this city Words: Click Here Music: Click Here Video:{youtube}c6iAlnKc20Y{/youtube}   Theres a tutorial of the guitar part for Happy Day here: http://www.worshipcentral.org/video/guitar-tutorial-happy-day Tim Last from Worship Central showing how he plays it.

May
10
2010
Tips 10 May 2010

How To: Use NTP on CentOS Linux to set Time and Date

  Install ntp yum install ntp Take a copy of /etc/ntp.conf Replace the entire contents of /etc/ntp.conf with: restrict default nomodify notrap noquery restrict 127.0.0.1 server now.okstate.edu server clock.nyc.he.net server clock.via.net server ntp-2.vt.edu server  127.127.1.0     # local clock fudge   127.127.1.0 stratum 10 driftfile /etc/ntp/drift Edit /etc/ntp/step-tickers file and REPLACE the contents with: now.okstate.edu clock.nyc.he.net clock.via.net ntp-2.vt.edu Now run the following: # /sbin/chkconfig –level 345 ntpd on # service ntpd restart To check that NTP is running run: #ntpq –p

May
6
2010
Tips 6 May 2010

Removing the Password on an Apache SSL Certificate

Every once in a while I run across an SSL Cert with an included password. Although the security is great automating an environment or an Apache restart with required interaction is problematic. Here is an example of the interaction with a password included SSL Cert: [root@w2 conf.d]# /etc/init.d/httpd restart Stopping httpd: [ OK ] Starting httpd: Apache/2.2.8 mod_ssl/2.2.8 (Pass Phrase Dialog) Some of your private key files are encrypted for security reasons. In order to read them you have to provide the pass phrases.   Server neilfrpst.com:443 (RSA) Enter pass phrase:   OK: Pass Phrase Dialog successful. And here is how you remove the password: [root@w2 conf]# openssl rsa -in neilfrost.com.key -out neilfrost.com.key.nopass   You then need to change /etc/httpd/conf.d/ssl.conf so that it uses the new key

May
6
2010
Tips 6 May 2010

Removing the Password on an Apache SSL Certificate

Every once in a while I run across an SSL Cert with an included password. Although the security is great automating an environment or an Apache restart with required interaction is problematic. Here is an example of the interaction with a password included SSL Cert: [root@w2 conf.d]# /etc/init.d/httpd restart Stopping httpd: [ OK ] Starting httpd: Apache/2.2.8 mod_ssl/2.2.8 (Pass Phrase Dialog) Some of your private key files are encrypted for security reasons. In order to read them you have to provide the pass phrases.   Server neilfrpst.com:443 (RSA) Enter pass phrase:   OK: Pass Phrase Dialog successful. And here is how you remove the password: [root@w2 conf]# openssl rsa -in neilfrost.com.key -out neilfrost.com.key.nopass   You then need to change /etc/httpd/conf.d/ssl.conf so that it uses the new key