全部博文(362)
发布时间:2013-05-04 14:01:49
mysql -uroot -p123456 -e "use information_schema;select concat('ALTER TABLE ', TABLE_SCHEMA, '.', TABLE_NAME, ' ENGINE = InnoDB;') from TABLES where TABLE_SCHEMA like 'xxxdb_%' and ENGINE != 'InnoDB';"......【阅读全文】
发布时间:2013-04-25 15:15:55
我这边数据库采用一主一从,结果发现主库挂了,原因是磁盘有坏道,然后就进行切换数据库到从库上。切换过来了,那么原来的从库就变成主库了。主库有了,接着就得再构建一台从库了。反正挺难处理的。太懒了不想写了。.........【阅读全文】
发布时间:2013-04-22 16:43:31
#!/bin/bashtest=`cat << EOF<?php if (isset($canonicalLink) && $canonicalLink != '') { ?><link rel="canonical" href="<?php echo $canonicalLink; ?>" /><?php } ?>EOF`echo $test......【阅读全文】