发布时间:2013-10-17 15:19:51
post-commit(利用SVN的钩子post-commit同步测试服务器代码)
/snv仓库目录/hooks
cp post-commit.tmpl post-commit
chown apache.apache post-commit
修改post-commint
export LANG="en_US.UTF-8"
svn up /var/www/html/ben/
chmod a+x post-commit
chown -R apache.apache /web目录(确保web目录能访问,否则post-commit不会正常工作) ......【阅读全文】
发布时间:2013-10-16 15:22:01
# vim /etc/profile
在最后,添加:
export PATH="/usr/local/webserver/mysql/bin:$PATH"
保存,退出,然后运行:
#source /etc/profile
不报错则成功。......【阅读全文】
发布时间:2013-09-25 16:31:39
checking size of short... configure: error: cannot compute sizeof (short)去掉参数 –disable-rpath ./configure的时候去掉此参数......【阅读全文】
发布时间:2013-09-25 09:52:20
错误提示 "grep: error while loading shared libraries: libpcre.so.0: cannot open shared object file: No such fileor directory".解决方案"ln -v -sf libpcre.so.1.0.0 /lib/libpcre.so.0"还有一种可能就是系统没有安装pcre的rpm包, rpm -q pcre 查看如没有,请安装就可以了 ftp://rpmfind.net/linux/ce.........【阅读全文】