2012-02-01から1ヶ月間の記事一覧

MySQLでInnoDBが動かない

InnoDB: Error: log file ./ib_logfile0 is of different size 0 134217728 bytes InnoDB: than specified in the .cnf file 0 5242880 bytes! rm -f /var/lib/mysql/ib_logfile0 rm -f /var/lib/mysql/ib_logfile1 /etc/rc.d/init.d/mysqld restart

rakeの中でrvmを使用したい

#!/bin/bash if [ -f /etc/profile.d/rvm.sh ] then source /etc/profile.d/rvm.sh else echo '$0: /etc/profile.d/rvm.sh not found' exit 1 fi

Railsでlogを書きだす場所を変更する。

time = Time.now.strftime "%Y%m%d" file_name = time + "test.log" ActiveRecord::Base.logger = Logger.new("/var/log/test/"+file_name)