博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7.2 环境下 mysql-5.1.73 安装配置
阅读量:6623 次
发布时间:2019-06-25

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

安装mysql,安装前准备如果mysql用户不存在,那么添加mysql用户groupadd mysqluseradd -g mysql mysqlmysql编译安装tar -zxvf mysql-5.1.73.tar.gzcd mysql-5.1.73yum install ncurses ncurses-devel./configure  '--prefix=/usr/local/mysql' '--without-debug' '--with-charset=utf8' '--with-extra-charsets=all' '--enable-assembler' '--with-pthread' '--enable-thread-safe-client' '--with-mysqld-ldflags=-all-static' '--with-client-ldflags=-all-static' '--with-big-tables' '--with-readline' '--with-ssl' '--with-embedded-server' '--enable-local-infile' '--with-plugins=innobase'makemake install到此mysql就安装到了/usr/local/mysql路径下,下面开始mysql的配置工作安装mysql选项文件cp support-files/my-medium.cnf /etc/my.cnfcp -r support-files/mysql.server /etc/init.d/mysqld /sbin/chkconfig --del mysqld/sbin/chkconfig --add mysqld配置权限表chown -R mysql:mysql /usr/local/mysql/usr/local/mysql/bin/mysql_install_db --user=mysql启动mysql给/etc/init.d/mysql 执行权限,然后运行chmod a+wrx /etc/init.d/mysql/etc/init.d/mysqld startmysql初始化配置:包括密码设置等export PATH=/usr/local/mysql/bin:$PATH/usr/local/mysql/bin/mysql_secure_installation 在弹出的对话框中要求输入密码:Enter current password for root (enter for none):默认打回车,然后重新设置root密码:Set root password? [Y/n] yDisallow root login remotely? [Y/n] nRemove test database and access to it? [Y/n] nReload privilege tables now? [Y/n] y至此,Mysql运行成功

  

转载于:https://www.cnblogs.com/lixinliang/p/10052294.html

你可能感兴趣的文章
微信网页开发之概要说明(一)
查看>>
Python2 连接MySQL
查看>>
研究内容与成果
查看>>
[Everyday Mathematics]20150126
查看>>
2016-2017-2点集拓扑-课表+上课视频+作业讲解
查看>>
5.27. Spring boot with Elasticsearch 2.x
查看>>
Android 如何实现带滚动条的TextView,在更新文字时自动滚动到最后一行
查看>>
JAVA学习AWT绘图
查看>>
maven web项目build失败
查看>>
socket 异步选择 WSAAsyncSelect 用法
查看>>
C++ 简单实现数组类泛型编程示例
查看>>
ElasticSearch + Logstash + Kibana 搭建笔记
查看>>
JavaScript深入之创建对象的多种方式以及优缺点
查看>>
Matlab中cell2mat的使用
查看>>
DB-Engines:2016年10月份全球数据库排名
查看>>
通过EXPDP/IMPDP导出导入远端数据倒本地
查看>>
SQLPrompt 6.3.0.354 完美破解 安装于 SQL Server 2012/2014
查看>>
MongoDB 3.2.7 for rhel6.4 副本集-分片集群部署
查看>>
[20160517]11GR2Cursor_Sharing=force的bug
查看>>
[20160711]关闭监听的动态注册.txt
查看>>