1.错误信息 Message: mysqli::real_connect(): (HY000/2000): mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication. Please use an admin....
分类:
数据库 时间:
2015-04-15 16:58:48
阅读次数:
201
1.什么是mysqlnd驱动?PHP手册上的描述:MySQLNativeDriverisareplacementfortheMySQLClientLibrary(libmysql).MySQLNativeDriverispartoftheofficialPHPsourcesasofPHP5.3.0....
分类:
数据库 时间:
2015-04-01 19:00:14
阅读次数:
157
Fatalerror:Uncaughtexception‘PDOException’withmessage‘SQLSTATE[HY000][2000]mysqlndcannotconnecttoMySQL4.1+usingtheoldinsecureauthentication.PleaseuseanadministrationtooltoresetyourpasswordwiththecommandSETPASSWORD=PASSWORD(‘your_existing_password’).Thi..
分类:
数据库 时间:
2015-03-20 18:56:19
阅读次数:
179
对于 InnoDB 引擎的,拷贝data目录下的ib_logfile0,ib_logfile1,ibdata1和数据库文件夹(里面只有frm文件)
不要惧怕版本啦,my.cnf设置了什么问题,尽管去冷备份好了,如果感觉大,可以tar压缩,压缩效率吓人
对于myisam引擎的,拷贝data目录下的数据库文件夹
当然最好用cp -pr 命令,p是保存属性的意思。
编译安装mysql...
分类:
数据库 时间:
2015-03-09 14:33:14
阅读次数:
163
帮助信息./configure -help|grep mysql安装php./configure --prefix=/usr/local/fastphp --with-mysql=mysqlnd\--enable-mysqld\--with-gd\--enable-gd-native-ttf\--e...
分类:
系统相关 时间:
2015-01-29 19:13:42
阅读次数:
243
关于编译安装php的选项可以为./configure--prefix=/usr/local/php--with-mysql=mysqlnd--with-pdo-mysql=mysqlnd--with-mysqli=mysqlnd--with-iconv--with-openssl--enable-mbstring--with-freetype-dir--with-jpeg-dir--with-png-dir--with-libxml-dir=/usr/--enable-xml--ena..
分类:
Web程序 时间:
2015-01-08 15:38:08
阅读次数:
182
作者:zhanhailiang 日期:2015-01-01
MySQL Native Driver简称mysqlnd,作为libmysqlclient替代品于PHP5.3.0版本引入。之前,MySQL数据库扩展mysql,mysqli,PDO MYSQL都是通过libmysqlclient实现与MySQL Server的通信。引入mysqlnd,这三个扩展都可以通过mysqlnd实现与My...
分类:
数据库 时间:
2015-01-01 01:33:12
阅读次数:
207
编译安装php5.6.4一、准备源码包此处使用的是5.6.4版本,对于PHP5.3以上版本,为了链接MySQL数据库,可以指定mysqlnd,这样在本机就不需要先安装MySQL或MySQL开发包了。mysqlnd从php3开始可用,可以编译时绑定到它(而不用和具体的MySQL客户端库绑定形成依赖),但从PHP5.4开始..
分类:
Web程序 时间:
2014-12-29 06:43:23
阅读次数:
170
系统环境:CentOSrelease6.2(Final)软件版本:php-5.3.13php安装的编译参数:./configure--prefix=/usr/local/php5--with-config-file-path=/usr/local/php5/etc--with-mysql=/usr/local/mysql-5.5.23/--with-mysqli=mysqlnd--with-pdo-mysql--with-apxs2=/usr/local..
分类:
Web程序 时间:
2014-12-18 15:22:57
阅读次数:
183