Home >Database >Mysql Tutorial >Linux基础教程:Fedora安装MySQL

Linux基础教程:Fedora安装MySQL

WBOY
WBOYOriginal
2016-06-07 17:01:211117browse

我们通过执行下面的命令在Fedora下安装MySQL:yum install mysql mysql-server 然后我们为MySQL创建系统启动连接(这样的话,MyS

我们通过执行下面的命令在Fedora下安装MySQL:
yum install mysql mysql-server
 
然后我们为MySQL创建系统启动连接(这样的话,MySQL就会在系统启动的时候自动启动)并且启动MySQL服务器:

chkconfig --levels 235 mysqld on
 
/etc/init.d/mysqld start
现在检查是否支持网络访问,运行:
netstat -tap | grep mysql
 
应该显示如下信息:

[root@ ~]# netstat -tap | grep mysql
 
tcp        0      0 *:mysql                     *:*                         LISTEN      1376/mysqld
 
[root@ ~]#
 
如果不显示,,编辑/etc/my.cnf文件,并注释掉skip-networking参数:
vi /etc/my.cnf
 
[...]
 
 
#skip-networking
 
 
[...]
 
并重启 MySQL 服务器:
/etc/init.d/mysqld restart
 
运行
mysqladmin -u root password yourrootsqlpassword
 
mysqladmin -h server1.example.com -u root password yourrootsqlpassword
 
来为root用户设置一个密码(否则的话任何人都可以访问你的MySQL数据库!)。

最后使用下面的名利进入mysql:
mysql -u root -p
最后输入root用户的密码就进入mysql控制台了。

linux

Statement:
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