请教PHP里使用命名管道连接本机mysql如何写连接串

请教PHP里使用命名管道连接本机mysql如何写连接串,第1张

要使用管道方式必须满足以下条件:

1.MySql数据库为mysqld-nt, mysqld-max-nt.

2.Windows NT以上平台(Windows NT、2000、XP、2003....)

3.My.ini配置的修改以支持管道(要有下面给出的配置):

[client]

protocol = pipe

socket = mysql

[mysqld]

enable-named-pipe

socket = mysql

重启MySql数据库

用个客户端连接数据库(HostName/IP要填"."(英文的句号),以说明用管道方式连接),以测试是否管道

连接可以成功.

好了.连接成功.现在进入编程.其实和平常的MySql编译的一样的.HostName/IP填"."(英文的句号),就

代表使用管道方式了:

mysql_real_connect(hMySql, ".", m_szUser, m_szPasswd, m_szDBName, m_uPort, NULL,

m_uFlag)

mysql.sock是MySQL的主机和客户机在同一host上的时候,使用unix domain socket做为通讯协议的载体,它比tcp快。

MySQL有两种连接方式: 

(1)TCP/IP 

(2)socket 

其实windows下还支持管道连接方式。

对mysql.sock来说,其作用是程序与MySQLserver处于同一台机器,发起本地连接时可用。 

例如你无须定义连接host的具体IP,只要为空或localhost就可以。 

在此种情况下,即使你改变MySQL的外部port也是一样可能正常连接。 

因为你在my.ini中或my.cnf中改变端口后,mysql.sock是随每一次 mysql server启动生成的,经根据你在更改完my.cnf后重启mysql时重新生成了一次,信息已跟着变更。

那么对于外部连接,必须是要变更port才能连接的。

# systemctl status mysqld

# mysql  --help

mysql.sock 文件解析

https://segmentfault.com/a/1190000016098820

https://blog.csdn.net/kerwin612/article/details/8568206

mysql.sock文件作用

https://www.jianshu.com/p/d6c1e3458ca9

How to Protect or Change the MySQL Unix Socket File

https://dev.mysql.com/doc/refman/8.0/en/problems-with-mysql-sock.html

Missing mysqld.sock file?

https://mariadb.com/kb/en/library/missing-mysqldsock-file/

How to solve “Can't connect to local MySQL server through socket” error?

https://dba.stackexchange.com/questions/98467/how-to-solve-cant-connect-to-local-mysql-server-through-socket-error

https://dba.stackexchange.com/questions/11027/cant-connect-to-local-mysql-server-through-socket-var-lib-mysql-mysql-sock

`select into outfile` 只能输出到mysql server,而不能输出到客户端。(mysql使用客户端/服务端的访问方式,用户通过mysql客户端访问mysql数据库服务端)

如果想导出数据到客户端,可以通过管道的方式来实现。

如:

mysql -h Remote_host -e "SELECT ..." >file_on_the_client.

参考: [MySQL SELECT INTO OUTFILE to a different server?](https://stackoverflow.com/a/2805186/6521116)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7662990.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-08
下一篇 2023-04-08

发表评论

登录后才能评论

评论列表(0条)

保存