Linux mysql5.5

1.假设已经有mysql-5.5.10.tar.gz以及cmake-2.8.4.tar.gz两个源文件

(1)先安装cmake(mysql5.5以后是通过cmake来编译的)

[[email protected] rhel5 local]#tar -zxv -f cmake-2.8.4.tar.gz
[[email protected] rhel5 local]#cd cmake-2.8.4
[[email protected] rhel5 cmake-2.8.4]#./configure
[[email protected] rhel5 cmake-2.8.4]#make
[[email protected] rhel5 cmake-2.8.4]#make install
 

(2)创建mysql的安装目录及数据库存放目录

[[email protected] rhel5~]#mkdir -p /usr/local/mysql                 //安装mysql
[[email protected] rhel5~]#mkdir -p /usr/local/mysql/data            //存放数据库
 

(3)创建mysql用户及用户组

[[email protected] rhel5~]groupadd mysql
[[email protected] rhel5~]useradd -r -g mysql mysql
 

(4)安装mysql

[[email protected] rhel5 local]#tar -zxv -f mysql-5.5.10.tar.gz
[[email protected] rhel5 local]#cd mysql-5.5.10
[[email protected] rhel5 mysql-5.5.10]#cmake .
-DCMAKE_INSTALL_PREFIX=/usr/local/mysql
-DMYSQL_DATADIR=/usr/local/mysql/data
-DDEFAULT_CHARSET=utf8
-DDEFAULT_COLLATION=utf8_general_ci
-DEXTRA_CHARSETS=all
-DENABLED_LOCAL_INFILE=1
[[email protected] rhel5 mysql-5.5.10]#make
[[email protected] rhel5 mysql-5.5.10]#make install

参数说明:

-DCMAKE_INSTALL_PREFIX=/usr/local/mysql        //安装目录

-DINSTALL_DATADIR=/usr/local/mysql/data         //数据库存放目录

-DDEFAULT_CHARSET=utf8                    //使用utf8字符

-DDEFAULT_COLLATION=utf8_general_ci            //校验字符

-DEXTRA_CHARSETS=all                        //安装所有扩展字符集

-DENABLED_LOCAL_INFILE=1                      //允许从本地导入数据

注意事项:

重新编译时,需要清除旧的对象文件和缓存信息。

# make clean

# rm -f CMakeCache.txt

# rm -rf /etc/my.cnf

2.配置

(1)设置目录权限

[[email protected] rhel5~]# cd /usr/local/mysql

[[email protected] rhel5 mysql]# chown -R root:mysql . //把当前目录中所有文件的所有者所有者设为root,所属组为mysql

[[email protected] rhel5 mysql]# chown -R mysql:mysql data

(2)

[[email protected] rhel5 mysql]# cp support-files/my-medium.cnf /etc/my.cnf //将mysql的启动服务添加到系统服务中
 

(3)创建系统数据库的表

[[email protected] rhel5 mysql]# cd /usr/local/mysql
[[email protected] rhel5 mysql]# scripts/mysql_install_db --user=mysql
 

(4)设置环境变量

[[email protected] rhel5~]# vi /root/.bash_profile

在PATH=$PATH:$HOME/bin添加参数为:

PATH=$PATH:$HOME/bin:/usr/local/mysql/bin:/usr/local/mysql/lib

[[email protected] rhel5~]#source /root/.bash_profile

(5)手动启动mysql

[[email protected] rhel5~]# cd /usr/local/mysql

[[email protected] rhel5 mysql]# ./bin/mysqld_safe --user=mysql &   //启动MySQL,但不能停止

启动日志写在此文件下:/usr/local/mysql/data/localhost.err

关闭MySQL服务

[[email protected] rhel5 mysql]# mysqladmin -u root -p shutdown  //这里MySQL的root用户还没有配置密码,所以为空值。需要输入密码时,直接点回车键即可。

(6)另一种简单的启动mysql的方法(mysql已经被添加到系统服务中)

[[email protected] rhel5~]# service mysql.server start
[[email protected] rhel5~]# service mysql.server stop
[[email protected] rhel5~]# service mysql.server restart
如果上述命令出现:mysql.server 未识别的服务

则可能mysql还没添加到系统服务中,下面用另一种方法添加:

[[email protected] rhel5 mysql]# cp support-files/mysql.server  /etc/init.d/mysql //将mysql的启动服务添加到系统服务中
注意:主要是将mysql.server拷贝到/etc/init.d中,命名为mysql。在有的系统中,mysql.server在/usr/local/mysql/share/mysql/mysql.server中,而本系统中,mysql.server在/usr/local/mysql/support-files/mysql.server中。

然后再用#service mysql start 来启动mysql即可。

(7)修改MySQL的root用户的密码以及打开远程连接

[[email protected] rhel5~]# mysql -u root mysql

mysql>use mysql;
mysql>desc user;
mysql> GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "root";  //为root添加远程连接的能力。
mysql>update user set Password = password(‘xxxxxx‘) where User=‘root‘;
mysql>select Host,User,Password  from user where User=‘root‘;
mysql>flush privileges;
mysql>exit

重新登录:mysql -u root -p

若还不能进行远程连接,则关闭防火墙
[[email protected] rhel5~]# /etc/rc.d/init.d/iptables stop

注:如果不能远程连接,出现错误mysql error number 1130,则加入下面语句试试:

mysql>GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘******‘ WITH GRANT OPTION;

时间: 2024-11-17 11:47:47

Linux mysql5.5的相关文章

LINUX Mysql5.6.19 安装

1.需要扩展安装 yum -y install make bison gcc-c++ cmake ncurses ncurses-devel 2.下载Mysql5.6.19 wget ftp://mirror.switch.ch/mirror/mysql/Downloads/MySQL-5.6/mysql-5.6.19.tar.gz 3.解压安装 tar zxvf mysql-5.6.19.tar.gz cd mysql-5.6.19 cmake -DCMAKE_INSTALL_PREFIX=/

Linux MySQL5.5源码安装

环境:CentOS7,MySQL5.5 1.MySQL5.5源码下载 Oracle的网站打开较慢,http://mirrors.sohu.com/mysql/这里提供了MySQL的镜像.一般的,Linux的程序安装有两种方式:A利用RPM,YUM等工具 B手动安装.其中手动安装又有两种方式,一种是直接下载已经编译好的二进制文件,另一种是下载源码手动编译.我们这里尝试下载源码手动编译的方式. 如何区分下载文件列表的文件是已编译好的二进制文件,还是源码文件: A.文件大小.由于从源码编译为二进制文件

linux mysql5.5安装与配置

MySQL是一个关系型数据库管理系统,由瑞典MySQL AB公司开发,目前属于Oracle公司.MySQL分为社区版和商业版,由于其体积小.速度快.总体拥有成本低,尤其是开放源码这一特点,一般中小型网站的开发都选择MySQL作为网站数据库. CentOS 6 mysql5.5安装配置 1 安装所需软件 2 安装cmake 3 tar.gz形式安装mysql 4 配置与启动 5 rpm形式安装mysql 6 mysql配置参数详细说明 MySQL自5.5版本以后,就开始使用cmake编译工具了.

Linux MySQL5.7.18自动化安装脚本

###### 自动安装数据库脚本root密码MANAGER将脚本和安装包放在/root目录即可#####################数据库目录/data/mysql##################数据目录/data/mysql##################慢日志目录/data/slowlog##################端口号默认3306其余参数按需自行修改############ #####################################!/bin/bash

Linux MySQL5.6.36自动换安装脚本

###### 自动安装数据库脚本root密码MANAGER将脚本和安装包放在/root目录即可#####################数据库目录/data/mysql##################数据目录/data/mysql/data##################慢日志目录/data/slowlog##################端口号默认3306其余参数按需自行修改############ #####################################!/bin

Linux MySQL5.7.18自动化安装脚本1

###### 自动安装数据库脚本root密码MANAGER将脚本和安装包放在/root目录即可############### ######数据库目录/data/mysql############ ######数据目录/data/mysql############ ######慢日志目录/data/slowlog############ ######端口号默认3306其余参数按需自行修改############ ################## ################## #!/bi

Linux mysql-5.7.11 Setup

1.rpm bundel包下载到 /usr/local/src中: [[email protected]localhost src]# ls mysql-5.7.11-1.el6.x86_64.rpm-bundle.tar 2解压缩bundle包 [[email protected] src]# tar xf mysql-5.7.11-1.el6.x86_64.rpm-bundle.tar  [[email protected] src]# ls mysql-5.7.11-1.el6.x86_6

Linux mysql5.5——源码安装

1.假设已经有mysql-5.5.10.tar.gz以及cmake-2.8.4.tar.gz两个源文件 (1)先安装cmake(mysql5.5以后是通过cmake来编译的) [[email protected] rhel5 local]#tar -zxv -f cmake-2.8.4.tar.gz[[email protected] rhel5 local]#cd cmake-2.8.4[[email protected] rhel5 cmake-2.8.4]#./configure[[ema

linux mysql5.7 密码相关问题

ERROR 1819 (HY000): Your password does not satisfy the current policy requirements select @@validate_password_length; mac mysql error You must reset your password using ALTER USER statement before executing this statement. SET PASSWORD = PASSWORD('yo