Archives
- October 2024
- August 2024
- June 2024
- May 2024
- February 2024
- December 2023
- October 2023
- June 2023
- April 2023
- August 2016
- June 2016
- May 2016
- February 2016
- December 2015
- October 2015
- May 2015
- April 2015
- January 2015
- December 2014
- November 2014
- October 2014
- January 2014
- December 2013
- November 2013
- October 2013
- August 2013
- July 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- December 2012
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- April 2012
Categories
Meta
Monthly Archives: January 2014
Lsyncd installation and configuration
Overview This article describes how to use lsyncd as a sync’ing mechanism for multiple web servers data directories. This is only one scenario in which this program could be very useful for our customers. These notes will provide instructions on … Continue reading
Posted in Linux
Comments Off on Lsyncd installation and configuration
Allow ssh only as a single user or from specific IPs
The following are the relevant config bits in /etc/ssh/sshd_config # disable password authentication globally PasswordAuthentication no Either by username: # now re-enable it down at the very end of the sshd_config file like thus Match User rack PasswordAuthentication yes or … Continue reading
WordPress Stuff
To change the admin username in WordPress: 1)Go into your phpmyadmin, and click on “Databases.” 2)Click on the name of your database. 3)Click the “Browse” icon next to wp_users. 4)Click the edit icon next to admin – should be first … Continue reading
Posted in Linux
Comments Off on WordPress Stuff
Regular Expression Notes
Explaining the following regular expression: (\d(3,4)[.-]?)+ ( starts a capturing group \ escapes the following character d end character shorthand (match any digit in the range 0 through 9 with \d) { open qualifier 3 minimum quantity to match , … Continue reading
Posted in Linux
Comments Off on Regular Expression Notes