Home > Database > Mysql Tutorial > body text

MySQL-Server连接在MySQL-Client下

WBOY
Release: 2016-06-07 16:13:39
Original
1430 people have browsed it

以下的文章主要介绍的是在Ubuntu之下用MySQL-Client对XAMPP中MySQL-Server进行连接的具体操作,如果你对其相关的实际操作有兴趣的话,你就可以对以下的文章点击观看了。望你能有所收获。 XAMPP(apache(Unix平台最流行的WEB服务器平台)+MySQL(和PHP搭配之最

以下的文章主要介绍的是在Ubuntu之下用MySQL-Client对XAMPP中MySQL-Server进行连接的具体操作,如果你对其相关的实际操作有兴趣的话,你就可以对以下的文章点击观看了。望你能有所收获。

XAMPP(apache(Unix平台最流行的WEB服务器平台)+MySQL(和PHP搭配之最佳组合)+PHP+PERL)是一个功能强大的建站集成软件包。这个软件包原来的名字是LAMPP,但是为了避免误解,最新的几个版本就改名为 XAMPP 了。它可以在Windows、Linux、Solaris三种操作系统下安装使用,支持多语言:英文、简体中文、繁体中文、韩文、俄文、日文等。

XAMPP是绿色的,而且不会开机自动启动。即使在Linux中,我还是喜欢绿色的软件。

首先在Ubuntu安装MySQL-Client:

<ol class="dp-xml"><li class="alt"><span><span>sudo apt-get install mysql-client  </span></span></li></ol>
Copy after login

启动XAMPP中的mysql:

<ol class="dp-xml"><li class="alt"><span><span>sudo /opt/lampp/lampp startmysql  </span></span></li></ol>
Copy after login

此时如果直接连接的话会报错:

<ol class="dp-xml"><li class="alt"><span><span>Can’t connect to local Mysql server(WINDOWS平台上强大的数据库平台) through socket ‘/var/run/mysqld/mysqld.sock’ (2) </span></span></li></ol>
Copy after login

在Ubuntu下用MySQL-Client连接XAMPP中MySQL-Server解决方法:

<ol class="dp-xml">
<li class="alt"><span><span>sudo mkdir /var/run/mysqld  </span></span></li>
<li><span>sudo ln -s /opt/lampp/var/mysql/mysql.sock /var/run/mysqld/mysqld.sock   </span></li>
</ol>
Copy after login

再次连接:

mysql -u root -p

连接上了,问题解决。

以上的相关内容就是对在Ubuntu下用MySQL-Client连接XAMPP中MySQL-Server的介绍,望你能有所收获。


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template