Mysql中批量替换字段内容
由于把博客的图片都迁移到了OSS上,原有的文章内的图片链接都没有更新为OSS链接,在数据库中可以使用replace来批量替换:
格式:
update 表名 set 字段名 = replace(字段名,’原内容’,’新内容’);
实例:
update wp_posts set
post_[……]
由于把博客的图片都迁移到了OSS上,原有的文章内的图片链接都没有更新为OSS链接,在数据库中可以使用replace来批量替换:
格式:
update 表名 set 字段名 = replace(字段名,’原内容’,’新内容’);
实例:
update wp_posts set
post_[……]
在Apache 2.2 2.4版本中,使用这个限速模块,在这个地址下载源码包:http://dominia.org/djao/limitipconn2.html
安装说明:
Instructions for statically compili[……]
默认svn装好后,可以自带的SVN://访问svn库。
如需使用http://,需要在Apache中配置:
1.yum install mod_dav_svn
2.vim /etc/httpd/conf.d/subversion.conf
配置文[……]
1.下载:http://bwmod.sourceforge.net/
2.在编译安装前,我修改了两处地方
1)将下面代码注释掉
#if (APR_MAJOR_VERSION < 1)
#define apr_atomic_inc32 apr_atomic_inc
#define apr_atomic_dec32 apr_atomic_dec
#define apr_atomic_add32 apr_atomic_add
#define apr_atomic_cas32 apr_atomic_cas
#define apr_atomic_set32 apr_atomic_set
#endif
2)将remote_addr改成client_addr(行485,568,613)
3.安装完成后,开始配置
4.在httpd.conf中加入:Include conf/extra/mod_bw.conf
mod_bw.conf这个文件来配置限速
具体配置项参见文件中的注释,非常详细。
下载配置文件:
[……]
#!/bin/bash URL=http://www.xxx.com/ curlit() { curl --connect-timeout 15 --max-time 20 --head --silent "$URL" | grep '200' } doit() { if ! curlit; t[......]
转自:http://www.bootf.com/472.html
MySQL的max_connections参数用来设置最大连接(用户)数。每个连接MySQL的用户均算作一个连接,max_connections的默认值为100。本文将讲解此参数的详细作用与性能影响。
#进入mysql mysql -h -localhost -u用户名 -p密码 #如果数据库不存在,新建 create database test #切换到此数据库 use test #开始导入(source后跟着mysqldump备份出来的文件) source /backup/data/x[......]
#!/bin/bash #备份整个数据目录 backdirname=mysql_data backfilename=mysql_dbfile_ backsource=/var/lib/mysql tar zcfP /backup/$backdirname/files/$backfilename$([......]
网站使用apache作为web服务器,httpd进程使用apache用户/apache组,在web程序中生成的文件(缓存文件,用户上传的文件)的默认权限(644)只有apache用户可以修改。
此时,使用ftp去管理这些文件时,就会遇到无法删除的窘境,因为这些文件只有apache用户可以[……]
配置NGINX的CGI功能,需要使用到nginx-fcgi插件,可以在这里下载nginx-fcgi,使用perl语言写的一个脚本文件。
还需要安装下面几个perl模块,可以使用yum安装:
perl-FCGI
perl-FCGI-ProcManager
perl-CGI[……]
yum install readline-devel ./configure --prefix=/opt/program/postgresql make make install adduser postgres mkdir /opt/postgresqldata chown postgres /[......]
在虚拟主机配置文件中的开头加上:
<virtualhost *:80> ServerAdmin lijl@sheenray.com DocumentRoot /var/www/html/hostdeny ServerName 0.0.0.0 #Apac[......]
这货编译了有10遍了,终于搞定了。
#编译基本的nginx ./configure --prefix=/opt/program/nginx --user=www --group=www --with-pcre --with-jemalloc=/opt/setu[......]