解决不能通过mysql.sock连接MySQL问题的办法

2016-02-19 17:38 43 1 收藏

今天图老师小编要跟大家分享解决不能通过mysql.sock连接MySQL问题的办法,精心挑选的过程简单易学,喜欢的朋友一起来学习吧!

【 tulaoshi.com - 编程语言 】

  这个问题主要提示是,不能通过'/tmp/mysql.sock'连到服务器,而php标准配置正是用过'/tmp/mysql.sock',但是一些mysql安装方法将mysql.sock放在/var/lib/mysql.sock或者其他的什么地方,你可以通过修改/etc/my.cnf文件来修正它,打开文件,可以看到如下的东东:

  [mysqld]

  socket=/var/lib/mysql.sock

  改一下就好了,但也会引起其他的问题,如mysql程序连不上了,再加一点:

  [mysql]

  socket=/tmp/mysql.sock

  或者还可以通过修改php.ini中的配置来使php用其他的mysql.sock来连,这个大家自己去找找

  或者用这样的方法:

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

  ln -s /var/lib/mysql/mysql.sock /tmp/mysql.sock

  还有:

  phpmyadmin的说明书有说

  The error message "Warning: MySQL Connection Failed: Can't connect to local MySQL server through socket '/tmp/mysql.sock' (111)..." is displayed. What can I do?

  For RedHat users, Harald Legner suggests this on the mailing list:

  On my RedHat-Box the socket of mysql is /var/lib/mysql/mysql.sock. In your php.ini you will find a line

  mysql.default_socket = /tmp/mysql.sock

  change it to

(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)

  mysql.default_socket = /var/lib/mysql/mysql.sock

  Then restart apache and it will work.

  Here is a fix suggested by Brad Ummer in the phpwizard forum:

  First, you need to determine what socket is being used by MySQL.

  To do this, telnet to your server and go to the MySQL bin directory. In this directory there should be a file named mysqladmin. Type ./mysqladmin variables, and this should give you a bunch of info about your MySQL server, including the socket (/tmp/mysql.sock, for example).

  Then, you need to tell PHP to use this socket.

  Assuming you are using PHP 3.0.10 or better, you can specify the socket to use when you open the connection. To do this in phpMyAdmin, you need to complete the socket information in the config.inc.php3.

  For example: $cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock';

来源:http://www.tulaoshi.com/n/20160219/1615715.html

延伸阅读
最近碰到一个mysql5数据库的问题。就是一个标准的servlet/tomcat网络应用,后台使用mysql数据库。问题是待机一晚上后,第二天早上第一次登录总是失败。察看日志发现如下错误: “com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure Last packet sent to the server was 0 ms ago.” 经...
Mysql提供了一套C API函数,可以直接操纵数据库(功能还是很强大的). 用VC开发一个客户端程序,需要连接一个远程的数据库. 第一步:建立一个MYSQL"对象 ",然后对其初始化(文档中要求的); 第二步:使用mysql_real_connect函数连接,不建议使用mysql_connect (这是一个较早的版本); 注意:通过TCP/IP方式连接,所以HOST一项填服务器的...
一、下载安装文件 到MySQL官方网站找到ZIP文件 二、解压文件,选择位置 最好是放在某个盘的mysql文件夹下,这样比较容易找到,这里我们将文件解压到D盘的mysql文件夹下。 三、让windows知道你的MySQL在哪个位置 在系统盘的Windows主目录下建立一个my.ini文件,内容如下: [mysqld]basedir=D:/mysql/datadir=...
标签: 怀孕
饮食习惯的改变也会影响孕期睡眠质量的好坏,均衡的饮食很重要。所以,专家提醒广大孕妇,要想远离失眠,那么在睡觉前,以下这些食物就不要吃。 1、别吃胀气食物 有些食物在消化过程中会产生较多的气体,从而产生腹胀感,妨碍正常睡眠。如豆类、包心菜、洋葱、绿椰菜、球甘蓝、青椒、茄子、土豆、红薯、芋头、玉米、香蕉...
标签: MySQL mysql数据库
1 设置phpMyAdminLanguage:Chinese simplified (zh-utf-8)MySQL 字符集:UTF-8 Unicode (utf8)MySQL 连接校对 gbk_chinese_ci2 创建数据库时整理设置成 gbk_chinese_ci3 用SQL建立表中ENGINE=MyISAM DEFAULT CHARSET=gbk;ENGINE=InnoDB DEFAULT CHARSET=gbk AUTO_INCREMENT=40 ;4 检查表结构中varchar(100) 的整理属性为gbk_chinese_ci其它类型...

经验教程

959

收藏

66
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部