树莓派LAMP配置数据库和PHP连接
Posted 橙子Oranges
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了树莓派LAMP配置数据库和PHP连接相关的知识,希望对你有一定的参考价值。
Raspberry 3B+LAMP配置mariadb和php连接踩坑
php版本为7.3,使用最新的mariadb,书和博文太老了,php-mysql扩展已经被踢出,现有
mysqli
PDO
两种扩展。在使用之前先对mariadb进行设置
$ mariadb -uroot -p
#登录数据库,设置了密码的需要输入密码。
>>select Host,User,plugin from mysql.user where User='root';
这个时候会发现plugin(加密方式)是unix_socket,
>> update mysql.user set plugin='mysql_native_password';
#重置加密方式
>> update mysql.user set password = PASSWORD( "newpassword") where User='root';
#设置新的密码’newpassword’,
>> flush privileges;
#刷新权限信息OK。
关于对PDO和Mysqli的测试网络上很多。
以上是关于树莓派LAMP配置数据库和PHP连接的主要内容,如果未能解决你的问题,请参考以下文章
树莓派debian配置lamp[解决Apache不显示php网页]