本篇内容主要讲解“Linux服务器如何安装mysql”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Linux服务器如何安装mysql”吧!
创新互联坚持“要么做到,要么别承诺”的工作理念,服务领域包括:
成都网站设计、成都网站制作、企业官网、英文网站、手机端网站、网站推广等服务,满足客户于互联网时代的
靖宇网站设计、移动媒体设计的需求,帮助企业找到有效的互联网解决方案。努力成为您成熟可靠的网络建设合作伙伴!
安装mysql
1、检测是否已安装mysql
[root@localhost bin]# rpm -qa | grep mysql
mysql-libs-5.1.71-1.el6.i686
[root@localhost bin]
|
2、安装mysql和mysql-server
[root@localhost bin]# yum install -y mysql
[root@localhost bin]# yum install -y mysql-server
|
3、启动mysql,注意这里的服务名字是“mysqld”
[root@localhost bin]# service mysqld start
shell-init: error retrieving current directory: getcwd: cannot access parent directories: 没有那个文件或目录
chdir: error retrieving current directory: getcwd: cannot access parent directories: 没有那个文件或目录
初始化 MySQL 数据库: Installing MySQL system tables...
OK
Filling help tables...
OK [ 确定 ]
正在启动 mysqld : [ 确定 ]
[root@localhost bin]#
|
4、配置MySQL开机启动
[root@localhost bin]# chkconfig mysqld on
[root@localhost bin]# chkconfig --list mysqld
mysqld 0: 关闭 1: 关闭 2: 启用 3: 启用 4: 启用 5: 启用 6: 关闭
[root@localhost bin]#
|
5、设置root用户密码 ,设置密码的命令是“mysqladmin -u
用户名
password
密码
”
[root@localhost bin]# mysqladmin -u root password 543092 // 密码是 543092
|
6、修改密码,命令是“mysqladmin -u
用户名
-p password
新密码
”
[root@localhost bin]# mysqladmin -u root -p password 123456 // 新密码 123456
Enter password: // 这里要求输入旧密码
[root@localhost bin]#
|
7、mysql配置文件“/etc/my.cnf”
[root@localhost bin]# cat /etc/my.cnf
[mysqld]
datadir=/var/lib/mysql // 数据库文件目录
socket=/var/lib/mysql/mysql.sock //socket 文件
user=mysql
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
[mysqld_safe]
log-error=/var/log/mysqld.log // 日志文件
pid-file=/var/run/mysqld/mysqld.pid // 进程 pid 文件
|
8、修改端口
1)mysql默认的端口是3306,可以使用netstat来查看
[root@localhost bin]# netstat -tunlp | grep mysqld
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 4339/mysqld
|
2)端口在配置文件中修改,打开配置文件,在后面追加一句话”port=xxx”
[root@localhost bin]# gedit /etc/my.cnf
port=3307
|
3)重启myslqd服务,查看端口
[root@localhost bin]# service mysqld restart
shell-init: error retrieving current directory: getcwd: cannot access parent directories: 没有那个文件或目录
chdir: error retrieving current directory: getcwd: cannot access parent directories: 没有那个文件或目录
^[[A 停止 mysqld : [ 确定 ]
正在启动 mysqld : [ 确定 ]
[root@localhost bin]# netstat -tunlp | grep mysqld
tcp 0 0 0.0.0.0:3307 0.0.0.0:* LISTEN 4604/mysqld
|
到此,相信大家对“Linux服务器如何安装mysql”有了更深的了解,不妨来实际操作一番吧!这里是创新互联网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
当前题目:Linux服务器如何安装mysql-创新互联
本文地址:/article20/csppjo.html
成都网站建设公司_创新互联,为您提供App设计、关键词优化、网站排名、网站策划、Google、网站设计
广告
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源:
创新互联