linux 下 mysql 编译源码安装操作-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 331573
  • 博文数量: 68
  • 博客积分: 405
  • 博客等级: 一等列兵
  • 技术积分: 1288
  • 用 户 组: 普通用户
  • 注册时间: 2013-01-09 15:39
个人简介

本人从事 linux nginx mysql php 开发多年,联系v:luhuang2003 ,希望接触到更新的web开发软件,开此博客希望能把自己的经验和接触的东西与大家进行共享。

文章分类

全部博文(68)

文章存档

2024年(1)

2013年(67)

我的朋友
相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: mysql/postgresql

2013-01-09 15:47:19

1、服务器系统: centos 系统, 我的系统是最小化安装有的软件包没有需要在安装
2、安装需要软件包:yum install compat-libstdc cpp gcc libstdc -devel gcc-c -y
3、下载 mysql 源包地址:
4、解压下载文件:tar zxvf mysql-5.1.44.tar.gz
5、进入目录: cd mysql-5.1.44
6、配置文件参数, 此操作把mysql 安装到了 /usr/local/mysql 目录下:
./configure \
--prefix=/usr/local/mysql \
--enable-assembler \
--with-extra-charsets=complex \
--without-debug \
--with-pthread \
--enable-thread-safe-client \
--with-charset=utf8 \
--enable-thread-safe-client \
--with-mysqld-ldflags=-all-static
7、以上没有错误的话接着执行以下语句
make
make install
8、配置mysql参数:
cp /usr/local/mysql/share/mysql/my-medium.cnf /etc/my.cnf
groupadd mysql
useradd -g mysql mysql
/usr/local/mysql/bin/mysql_install_db --user=mysql
cd /usr/local/mysql/
chown -r root .
chown -r mysql var
chgrp -r mysql .
bin/mysqld_safe --user=mysql &
ln -s /usr/local/mysql/share/mysql/mysql.server /etc/init.d/mysqld
/usr/local/mysql/bin/mysqladmin -uroot password 数据库密码

9、进入mysql
/usr/local/mysql/bin/mysql -uroot -p   回车后输入密码 如果数据库没有设置密码 就直接回车


10、设置linux机器启动,mysql自动启动
vim /etc/rc.local
添加如下内容:
/etc/init.d/mysqld start

这样机器重新启动, mysql也会自动启动了


11、如果你忘记了数据库密码该如何操作呢?
vim /etc/my.cnf
添加如下内容:
skip-grant-tables
重启数据库: /etc/init.d/mysqld restart
进入mysql: /usr/local/mysql/bin/mysql -uroot
进入后操作命令
user mysql;  回车
update user set password=password('你的数据库新密码') where user='root'; 回车
vim /etc/my.cnf 去除刚才添加的那行 然后在重启 就可以用你的新密码了。

阅读(3081) | 评论(0) | 转发(0) |
0

上一篇:没有了

下一篇:linux 下 apache 编译安装操作

给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图