Welcome to the site of Neil Frost

You will find the latest or last post regarding any Worship Leading sets that I am or will be doing. You can also find details of previous sets here.

Check out Essex Cover Band NoMansBand who I play lead guitar for.

There are some other interesting tips on site as well like how to make Cat 5 leads, details of my latest training and workouts too, so please have a look around.

Are you looking for a professional wedding DJ in Essex, then check out Essex Wedding DJ

Oct
29
2010
Tips 29 Oct 2010

VMware Log File Locations

Below is a table of the logfiles and their locations within VMware ESX Host. Log File Name Details /var/log/vmkernel Vmkernel Records activities related to the virtual machines and ESX host /var/log/vmkwarning Vmkernel Warnings A copy of everything marked as a warning or higher severity from vmkernel log. Easier to look through than vmkernel log /var/log/vmksummary Vmkernel Summary Used for avaialability and uptime statistics. Human-readable summary in vmksummary.txt /var/log/vmware/hostd.log Host Agent Log Contains information on the agent that manages and configures the ESX host and its virtual machines /var/log/vmware/vpx VirtualCenter Agent Contains information on the agent that communicates with VirtualCenter /var/log/messages Service Console Log from the Linux kernel. Useful for underlying linux issues. The kernel has no awareness of VMs running on the VMkernel /var/log/vmware/esxcfg-boot.log ESX Boot Log ESX Boot log, logs all ESX boot events /var/log/vmware/webAccess Web Access Records information on Web-based access to ESX Server /var/log/secure Authentication Log Contains […]

Oct
26
2010
Tips 26 Oct 2010

How To: Enable remote syslog on VMware Hosts

SSH over to your ESX server. You will need sudo or root access to complete the following. Edit the following with your favorite editor. vi /etc/syslog.conf Add the following line to the bottom of the file. This will forward all the logs to the syslog server — a good thing. #forward to Syslog Server *.* @syslog.domain Restart the syslog service service syslog restart Open the local firewall to allow UDP over port 514 esxcfg-firewall -o 514,udp,out,syslog Reload the firewall configuration esxcfg-firewall -l

Oct
26
2010
Home Improvements 26 Oct 2010

Back Garden Phase 1 – The Deck

Monday 26th October 2009 saw the start of the Back Garden Project – Phase 1 – The Deck. The deck is c 7.5m x 3m, it’s a big space needing lots done. Over 800 screws in the deck alone, c40 14′ Deck boards, x20 4″ x 4″ x 14′ Tanalised joists, 10 bags of 20mm shingle, some fence panels and supports, lots of wire and conduit, 2 1m deck lights, 2 matching wall ligths, an exterior socket and an exterior light swicth. Add the above to 5 days hard graft my The Frosts, and we have a deck Below are some pictures…

Oct
26
2010
Tips 26 Oct 2010

How To: Enable remote syslog on VMware Hosts

SSH over to your ESX server. You will need sudo or root access to complete the following. Edit the following with your favorite editor. vi /etc/syslog.conf Add the following line to the bottom of the file. This will forward all the logs to the syslog server — a good thing. #forward to Syslog Server *.* @syslog.domain Restart the syslog service service syslog restart Open the local firewall to allow UDP over port 514 esxcfg-firewall -o 514,udp,out,syslog Reload the firewall configuration esxcfg-firewall -l

Jun
26
2010
Tips 26 Jun 2010

Old Alfresco install files

ftp://ftp3.ie.freebsd.org/pub/download.sourceforge.net/pub/sourceforge/a/project/al/alfresco

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

Apr
18
2010
Meeting Notes 18 Apr 2010

Mission Shaped Communities – Prayer

Community Events: Event Where When Frock Swap All Saints 24th April 2010 One Community (Tilbury) Quiz Night Tilbury Community Centre 7th May 2010 Grays Baptist Quiz Night Grays Baptist Church hall 15th May 2010 ‘Slice of England’ Kilverts Field 5th June 2010 Tea in the Garden All Saints Gardens 26th June 2010 T-Fest Grays Beach 24th July 2010 Community House Fun Day Kilverts Field 21st August 2010 Street Clean All Saints Area 4th September 2010 Street Party All Saints Area 5th September 2010 Frock Swap All Saints 18th September   Andy – SAS – Seabrook All Saints Greater clarity for the Vision for S.A.S Building and encouraging a prayer foundation How will teaching be worked out When worship will happen For a strong team to take forward the vision Who hear from God Who bring clear guidance Strengthening the links with the community Build on the good reputations that we […]

Pages:«1...7891011121314»