This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# www.fduran.com | |
MySQL Master-Slave Replication Notes | |
Master | |
/etc/mysql/my.cnf | |
server-id = 100 | |
log_bin = /var/log/mysql/mysql-bin.log | |
binlog-do-db = wpdb | |
binlog-ignore-db = mysql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# www.fduran.com | |
# delete files in a folder older than a number of days (100 for example) | |
find /path/to/folder -mtime +100 -exec rm -f {} \; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// www.fduran.com | |
// send mail with Amazon AWS SES without extra library | |
// needs Pear: apt-get install php-pear | |
<?php | |
function mailSES($to, $subject, $body, $from) | |
{ | |
include_once('Mail.php'); | |
$headers["From"] = $from; | |
$headers["To"] = $to; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# www.fduran.com | |
# renice many processes with the same name | |
for i in `pgrep processname`; do renice 20 -p $i; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# www.fduran.com | |
# test cronjobs | |
# cron running? | |
pgrep cron | |
service cron status | |
# or crond for redhat, other distros above | |
# add line in crontab: | |
*/1 * * * * root /bin/date >> /tmp/cronlog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# www.fduran.com | |
# sync (copy) local to remote server directory | |
# take out dry-run after test | |
rsync --dry-run -azvrh -e 'ssh -p 2022' --exclude 'donotcopy' /var/www/ [email protected]:/var/www/ | |
# options: | |
a: archive, preserve metadata | |
z: compression | |
v: verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# www.fduran.com | |
# check ssl connection | |
echo '' |openssl s_client -ssl3 -connect google.com:443 -CApath /usr/share/ssl-cert |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# www.fduran.com | |
# Run script detached from an SSH terminal | |
nohup script.sh </dev/null & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Postfix mail review | |
# look at logs | |
tail /var/log/mail.log | |
tail /var/log/mail.err | |
# view queue | |
mailq | |
# delete deferred messages in queue | |
postsuper -d ALL deferred |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# www.fduran.com | |
# set up Celery with Django (dev queuing) | |
(source activate) | |
# install (kombu is included) | |
pip install celery | |
pip install django-celery | |