-
eventfd() failed when start nginx
Jan072011yum install nginxservice nginx start error.log:2011/01/07 05:39:49 [emerg] 7180#0: eventfd() failed (38: Function not implemented)2011/01/07 05:39:49 [alert] 7179#0: worker process 7180 exited with fatal code 2 and can not be respawn2011/01/07 05:43:01 [emerg] 7296#0: eventfd() failed (38: Funct ...
阅读全文eventfd() failed when start nginx已关闭评论
-
postgresql learning notes
Jan0420111.Host Access file:/var/lib/pgsql/data/pg_hba.confhost all all 172.16.1.0/24 md5 2.logon postgresqlsu – postgres$psqlor $psql -U postg ...
阅读全文作者:u2 | 分类:database | 标签:postgresqlpostgresql learning notes已关闭评论
-
DJANGO FORMS:This field is required
Dec272010when meet This field is required at django forms, we can add “required=False” at Fields. from django import forms class ContactForm(forms.Form): subject = forms.CharField(max_length=100) message = forms.CharField() sender = forms. ...
阅读全文DJANGO FORMS:This field is required已关闭评论
-
nginx dynamic url rewrite — II
Nov252010nginx rewirte II, nginx if has no AND OR and nest,so we only can use regx to do it: ———————————- BEGIN—————————————– location /music/search.html ...
阅读全文nginx dynamic url rewrite — II已关闭评论
-
ibevent-1.1a.so.1 depend memcached CentOS5.5
Oct292010update to centos5.5, memcached has issue: resent failed: Execution of ‘/usr/bin/yum -d 0 -e 0 -y install memcached’ returned 1: memcached-1.2.6-1.el5.rf.x86_64 from EPEL-base has depsolving problems –> Missing Dependency: libevent-1.1a.so.1()(64bit) is needed by ...
阅读全文作者:u2 | 分类:OpenSource | 标签:memcachedibevent-1.1a.so.1 depend memcached CentOS5.5已关闭评论
-
solved: Fatal error: Allowed memory size of 33554432 bytes exhausted
Oct202010wordpress2.8wp-settings.phpchange define(‘WP_MEMORY_LIMIT’, ’32M’);to:define(‘WP_MEMORY_LIMIT’, ’64M’); wordpress3.0 wp-config.php/** Database Charset to use in creating database tables. */define(‘DB_CHARSET’, ‘utf8’); /** T ...
阅读全文作者:u2 | 分类:OpenSource | 标签:wordpresssolved: Fatal error: Allowed memory size of 33554432 bytes exhausted已关闭评论
-
change linux swap size
Sep252010
-
推荐几个milestone可用的工具
Sep142010
-
use openvpn client in ubuntu
Sep102010#install openvpn and resovconf$sudo apt-get install openvpn $sudo apt-get install resovconf $sudo cat client.conf.mytestclient;dev tapdev tun;dev-node MyTapproto tcp;proto udpremote your-vpn-domain 1001remote your-vpn-domain 1002remote-randomresolv-retry infinitenobind;user nobody;group nogroupp ...
阅读全文作者:u2 | 分类:OpenSourceuse openvpn client in ubuntu已关闭评论
-
a script of awk array – just mark
Sep062010Just mark it. 🙂 #!/bin/shawk -F”_t_7_Y_” ‘{if($1==1) {printf $2; for(i=3;i<=NF;i++) if(i==NF) print $i;else printf $i}}’ temp1 > 1.txtawk -F”_t_7_Y_” ‘{if($1==2) if($2 in S22){S22[$2]=$2;S23[$2]=$3″ “S23[$2];N2[$2]++}else {S22[$2 ...
阅读全文a script of awk array – just mark已关闭评论