博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux中MySQL5.5解压版普通用户安装
阅读量:4995 次
发布时间:2019-06-12

本文共 1975 字,大约阅读时间需要 6 分钟。

#查看本机mysql 安装路径

[hadoop@SY-0134 toolkit]$ rpm -qa|grep -i mysql[hadoop@SY-0134 toolkit]$ whereis mysqlmysql: /usr/lib/mysql /usr/share/mysql

环境Centos, 经过检验,上述目录实际没有mysql的安装,只是有一些lib包和帮助语言包。

 

#解压mysql-5.5.39-linux2.6-i686.tar.gz 到/lab/mysql5.5目录

 #配置mysql5.5 conf文件

cp support-files/my-medium.cnf /data/my.cnf

 

#修改my.cnf文件,配置Mysql数据存储目录

在mysqld下面添加:datadir=/lab/mysql5.5/data

 

#配置目录用户访问权限:

[hadoop@SY-0134 mysql5.5]$ scripts/mysql_install_db -user=hadoopInstalling MySQL system tables...OKFilling help tables...OKTo start mysqld at boot time you have to copysupport-files/mysql.server to the right place for your systemPLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !To do so, start the server, then issue the following commands:./bin/mysqladmin -u root password 'new-password'./bin/mysqladmin -u root -h SY-0134 password 'new-password'Alternatively you can run:./bin/mysql_secure_installationwhich will also give you the option of removing the testdatabases and anonymous user created by default.  This isstrongly recommended for production servers.See the manual for more instructions.You can start the MySQL daemon with:cd . ; ./bin/mysqld_safe &You can test the MySQL daemon with mysql-test-run.plcd ./mysql-test ; perl mysql-test-run.plPlease report any problems at http://bugs.mysql.com/

  

#设置mysqld服务随服务器启动

#切换到root用户

cp support-files/mysql.server /etc/rc.d/init.d/mysqldchmod 700 /etc/init.d/mysqldchkconfig --add mysqldchkconfig -–level 2345 mysqld on

 [root@SY-0134 mysql5.5]# chkconfig --list mysqld

 mysqld          0:off   1:off   2:on    3:on    4:on    5:on    6:off

 

#修改/etc/rc.d/init.d/mysqld文件设置,制定Mysql安装目录和数据存储目录

basedir=/lab/mysql5.5

datadir=/lab/mysql5.5/data

 

#启动mysqld服务

service mysqld start

 

#查看3306端口是否打开。要注意在防火墙中开放该端口

netstat -atln

 

权限放开 ,使得普通用户也能启动mysql服务

[root@SY-0134 mysql5.5]# chmod a+wrx /etc/init.d/mysqld

MySQL问题解决:-bash::command not found

解决办法,将mysql命令创建软连接到/usr/bin中:

ln -s /lab/mysql5.5/bin/mysql  /usr/bin

参考网址:

 

转载于:https://www.cnblogs.com/tmeily/p/4243332.html

你可能感兴趣的文章
Mysql命令集
查看>>
记java应用linux服务单个CPU使用率100%分析
查看>>
将文件字节输出流写入到文本中
查看>>
Linux编程之给你的程序开后门
查看>>
Ubuntu下Hadoop的安装和配置
查看>>
VS2010中生成遇到的 web.config 问题
查看>>
Nginx安装部署(反向代理与负载均衡)
查看>>
2018年最新小程序一键智能生成平台限时限量销售!
查看>>
集合遍历过程iterator, 添加删除元素报异常
查看>>
echarts一些笔记
查看>>
最长上升子序列
查看>>
Java-面向对象
查看>>
salesforce 零基础学习(四十四)实现checkbox列表简单过滤功能
查看>>
Android 异步下载
查看>>
c# 中 利用 CookieContainer 对 Cookie 进行序列化和反序列化校验
查看>>
Leetcode 743. Closest Leaf in a Binary Tree
查看>>
如何用Java实现反转排序
查看>>
自己动手写字符串库函数 一(C语言实现) 分类: C语言学习 ...
查看>>
说说接口封装
查看>>
Linux Supervisor的安装与使用入门---SuSE
查看>>