mysql 5.1.34

在make之前,将MAKEFILE中的do abi check注释,不要注释名字。。。

mysql 5.1 编译安装

分类: mysql2012-04-06 13:01 17175人阅读 评论(0) 收藏 举报

mysqlfile编译器测试oracleinput

---------1.install mysql

--1.为mysql新建组和用户

#groupadd mysql

#useradd -g mysql  mysql

--2.检查是否有编译器

#su - root

#rpm -qa | grep gcc gcc-c++

--3.解压
#cd /usr/local/src

# tar xvzf mysql-5.1.47.tar.gz

# cd mysql-5.1.47

--4.配置和编译

#chmod +x configure

# ./configure --prefix=/usr/local/mysql --enable-local-infile

#make

#make install

--5.安装选项文件,将当前文件作为模板

#cp support-files/my-medium.cnf /etc/my.cnf

--6.设置mysql权限

#cd /usr/local/mysql

#chown -R mysql .

#chgrp -R mysql .

--7.新建mysql允许的表

#/usr/local/mysql/bin/mysql_install_db --user=mysql

#chown -R mysql var

--8.设置mysql开机自启动:

# cp /usr/local/src/mysql-5.1.47/support-files/mysql.server /etc/rc.d/init.d/mysql

#chmod +x /etc/rc.d/init.d/mysql

#chkconfig --add mysql

--9.测试并运行mysql

#/usr/local/mysql/bin/mysqld_safe --user=mysql &

#service mysql start

--10.修改mysql管理员密码
#/usr/local/mysql/bin/mysqladmin -u root password password

--11.使用用户登录mysql
# /usr/local/mysql/bin/mysql -u root -p

--12.链接mysql代码

# cd /usr/local/mysql/bin/
#for file in *;
> do 
> ln -s /usr/local/mysql/bin/$file /usr/bin/$file;
> done

测试mysql在任意地点能启动mysql:

#cd

# mysql -u root -p

Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 7
Server version: 5.1.47-log Source distribution

Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql>

--13.查看端口3306

#netstat -atln

时间: 2024-11-05 14:37:55

mysql 5.1.34的相关文章

Mysql:Changes in MySQL 5.6.34 (2016-10-12, General Availability):secure-file-priv

Changes in MySQL 5.6.34 (2016-10-12, General Availability) Security Notes Incompatible Change: The secure_file_priv system variable is used to limit the effect of data import and export operations. The following changes have been made to how the serv

debian下安装mysql 5.1.34

#cd /usr/local/src # tar xvzf mysql-5.1.34.tar.gz # cd mysql-5.5.1.34 配置和编译 #chmod +x configure # ./configure --prefix=/usr/local/mysql --enable-local-infile #make make时会提示有abi相关的错误,在makefile文件中的最后,将abi相关的部分删除即可 #make install 安装选项文件,将当前文件作为模板 #cp sup

MYSQL 5.6.34配置文件详解

[client] port = 3306     #客户端端口号 socket = /data/3306/mysql.sock  #socket文件是linux/unix系统特有的,用户在该环境下的客户端连接可以不通过tcp/ip网络,而直接使用socket文件连接. [mysql] no-auto-rehash    #仅仅允许使用键值的update和deletes [mysqld]          #mysqld组包括了mysqld服务启动的参数,它涉及的方面很多,其中包括mysql的目录

mysql 5.6.34 二进制

安装方法 http://dev.mysql.com/doc/refman/5.6/en/binary-installation.html shell> groupadd mysqlshell> useradd -r -g mysql -s /bin/false mysqlshell> cd /usr/localshell> tar zxvf /path/to/mysql-VERSION-OS.tar.gzshell> ln -s full-path-to-mysql-VERS

mysql 5.6.34 突然宕机,启动不了,提示[ERROR] InnoDB: Space id in fsp header

一.问题描述 一台线上的从服务器,半夜收到报警短信提示异常,连接到该服务器,发现mysqld进程不在了,ps 查看,也没有查到.于是重启,但是重启失败,提示without pid file 于是查看errorlog,内容如下: 2017-09-22 03:37:42 0 [Note] --secure-file-priv is set to NULL. Operations related to importing and exporting data are disabled 2017-09-

第一章: mysql 5.6.34 编译安装 (centos7)

1:下载mysql5.6[[email protected] ~]# wget https://mirrors.tuna.tsinghua.edu.cn/mysql/downloads/MySQL-5.6/mysql-5.6.43.tar.gz 2:安装依赖 [[email protected] tools]# yum install -y ncurses-devel libaio-devel gcc gcc-c++ bison 3:安装cmake[[email protected] tools

MySQL(一)

mysql命令 一.初试命令: show databases; # 查看当前Mysql都有那些数据,根目录都有那些文件夹 create database 数据库名; # 创建文件夹 use 数据库名; # 使用选中数据库,进入目录 show tables; # 查看当前数据库下都有那些表, create table 表名(nid int,name varchar(20), pwd varchar(64)); # 创建数据库表 select * from 表名; # 查看表中的所有数据 inser

mysql命令

1 添加mysql\bin 到path 2 启动cmd 登陆 :mysql -hlocalhost -uroot -pxxxx 3退出 exit 在mysql>提示符下命令   show databases; 显示数据库 use  world; 打开world数据库 show tables; 显示表 create database 库名;建库 drop database 库名 ;删库 create table ...;建表 drop table 表名;删表 delete from 表名; 删除记

mysql 初始化

一.centos7下mysql 安装配置 yum -y install mariadb* systemctl start mariadb.service systemctl enable mariadb.service 二.初始化 1 [[email protected]]#mysql 2 Welcome to the MariaDB monitor. Commands end with ; or \g. 3 Your MariaDB connection id is 3 4 Server ve