LNMP架构之MySQL5.5编译安装

简单的说数据库就是一个存放数据的仓库,这个仓库是按照一定的数据结构来组织存储的,我们可以通过数据库提供的多种方法来管理其中的数据

NoSQL 本意是 Not Only SQL 即不仅仅是关系型数据库 因此NoSQL的产生并不是要彻底否定关系型数据库,而是作为传统关系型数据库的一个有效补充

非关系型数据库的种类
1、key-value
键值数据库就类似传统语言中使用的哈希表,可以通过key来添加 查询 或者删除数据 因为使用key主键访问,所以会获得很高的性能及扩展性
键值数据库主要是使用一个哈希表,这个表中有一个特定的键和一个指针指向特定的数据,优势:简单 易部署  高并发

典型产品:memcached redis

列存储数据库
列存储数据库将数据存储在列族中

典型产品:cassandra  HBase

面向文档数据库
数据以文档的形式存储,每个文档都是自包含的数据单元,是一系列数据项的集合

典型产品:mongodb

MySQL安装方法
1、rpm包
2、常规方式编译mysql
3、cmake编译安装mysql
4、二进制方式免编译安装mysql

数据库安装  (centos6.7)
[[email protected] tools]# yum install cmake -y
依赖包
yum install ncurses-devel -y

创建用户
useradd mysql -s /sbin/nologin -M
[[email protected] tools]# tar xf mysql-5.5.32.tar.gz 
[[email protected] tools]# cd mysql-5.5.32
[[email protected] tools]# cmake . -DCMAKE_INSTALL_PREFIX=/application/mysql-5.5.32 -DMYSQL_DATADIR=/application/mysql-5.5.32/data -DMYSQL_UNIX_ADDR=/application/mysql-5.5.32/tmp/mysql.sock -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DEXTRA_CHARSETS=gbk,gb2312,utf8,ascii -DENABLED_LOCAL_INFILE=ON -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_FEDERATED_STORAGE_ENGINE=1 -DWITH_BLACKHOLE_STORAGE_ENGINE=1 -DWITHOUT_EXAMPLE_STORAGE_ENGINE=1 -DWITHOUT_PARTITION_STORAGE_ENGINE=1 -DWITH_FAST_MUTEXES=1 -DWITH_ZLIB=bundled -DENABLED_LOCAL_INFILE=1 -DWITH_READLINE=1 -DWITH_EMBEDDED_SERVER=1 -DWITH_DEBUG=0
[[email protected] mysql-5.5.32]# make && make install
[[email protected] mysql-5.5.32]# ln -s /application/mysql-5.5.32/ /application/mysql
[[email protected] mysql-5.5.32]# cp support-files/my-small.cnf /etc/my.cnf
[[email protected] mysql-5.5.32]# chown -R mysql.mysql /application/mysql/
[[email protected] mysql-5.5.32]# chmod -R 1777 /tmp/
[[email protected] mysql-5.5.32]# cd /application/mysql/scripts/
[[email protected] scripts]# ./mysql_install_db --basedir=/application/mysql/  --datadir=/application/mysql/data/ --user=mysql
Installing MySQL system tables...
OK
Filling help tables...
OK
To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
/application/mysql//bin/mysqladmin -u root password ‘new-password‘
/application/mysql//bin/mysqladmin -u root -h centos03 password ‘new-password‘
Alternatively you can run:
/application/mysql//bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.
See the manual for more instructions.
You can start the MySQL daemon with:
cd /application/mysql/ ; /application/mysql//bin/mysqld_safe &
You can test the MySQL daemon with mysql-test-run.pl
cd /application/mysql//mysql-test ; perl mysql-test-run.pl
Please report any problems with the /application/mysql//scripts/mysqlbug script!

[[email protected] scripts]# cp /tools/mysql-5.5.32/support-files/mysql.server /etc/init.d/mysqld
[[email protected] scripts]# chmod +x /etc/init.d/mysqld
[[email protected] scripts]# /etc/init.d/mysqld start
Starting MySQL.... SUCCESS! 
[[email protected] scripts]# lsof -i :3306
COMMAND   PID  USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
mysqld  14177 mysql   10u  IPv4  52218      0t0  TCP *:mysql (LISTEN)

添加环境变量
[[email protected] scripts]# echo "export PATH=/application/mysql/bin:$PATH"  >> /etc/profile
[[email protected] scripts]# source /etc/profile
[[email protected] scripts]# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.5.32 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql> select user,host from mysql.user;  
+------+-----------+
| user | host      |
+------+-----------+
| root | 127.0.0.1 |
| root | ::1       |
|      | centos03  |
| root | centos03  |
|      | localhost |
| root | localhost |
+------+-----------+
6 rows in set (0.00 sec)
mysql> delete from mysql.user where user=‘‘;   #删除用户名是空的用户
Query OK, 2 rows affected (0.00 sec)
mysql> select user,host from mysql.user;    
+------+-----------+
| user | host      |
+------+-----------+
| root | 127.0.0.1 |
| root | ::1       |
| root | centos03  |
| root | localhost |
+------+-----------+
4 rows in set (0.00 sec)

mysql> delete from mysql.user where host=‘centos03‘;
Query OK, 1 row affected (0.00 sec)
mysql> delete from mysql.user where host=‘::1‘;     
Query OK, 1 row affected (0.00 sec)
mysql> select user,host from mysql.user;            
+------+-----------+
| user | host      |
+------+-----------+
| root | 127.0.0.1 |
| root | localhost |
+------+-----------+
2 rows in set (0.00 sec)
mysql> drop database test;
Query OK, 0 rows affected (0.03 sec)
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
+--------------------+
3 rows in set (0.00 sec)
[[email protected] scripts]# mysqladmin -u root password ‘123456‘    #为root账户设置密码123456   
[[email protected] scripts]# mysql -uroot -p123456
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.5.32 Source distribution
Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.
mysql>
[[email protected] scripts]# chkconfig mysqld on

简单截图下安装的过程

时间: 2024-10-20 08:45:56

LNMP架构之MySQL5.5编译安装的相关文章

12.1 LNMP架构介绍 12.2 MySQL安装 12.3/12.4 PHP安装 12.5 Ng

12.1 LNMP架构介绍 12.2 MySQL安装 12.3/12.4 PHP安装 12.5 Nginx介绍 12.1 LNMP架构介绍 12.2 MySQL安装 12.3-PHP安装 12.4 PHP安装 12.5 Nginx介绍 原文地址:http://blog.51cto.com/wbyyy/2085811

LAMP论坛架构三部曲之一 手工编译安装Apache

LAMP论坛架构三部曲之一 手工编译安装Apache ---------------------------------安装环境---------------------------------- LAMP软件包: 百度网盘链接:https://pan.baidu.com/s/1V1hkdGdl9e1Os_aaGMxg7A 密码:gca0 安装 gcc . gcc-c++  . make  . pcre.pcre-devel 四个包 (pcre : 一个Perl库,支持正则表达式) ------

搭建LAMP架构— 2、手工编译安装MySQL

在上一篇文档中,我们介绍了手工编译安装APache,本次,让我们继续完成MySQL的手工编译安装. MySQL数据库是C/S架构的,既有客户端又有服务器端,MySQL客户端的安装非常简单,上一篇文档中已经向大家分享了LAMP架构的所有软件包,我们只需要挂载到Linux系统目录底下,使用tar命令解压即可. tar zxvf /opt/lamp/mysql-5.5.24.tar.gz -C /opt/ //把lamp目录中的软件包解压到opt目录下 现在我们先来完成环境包的安装: yum inst

LNMP搭建1:PHP编译安装

LNMP中PHP依赖于MySQL,先安装MySQL,后安装PHP:Nginx不依赖谁,什么时候安装都可.MySQL安装参考LAMP部分的MySQL安装http://rachy.blog.51cto.com/11428504/1891065. 1.切换到目录/usr/local/src/目录下,下载php-5.4.37.tar.gz安装包: [[email protected] ~]# cd /usr/local/src [[email protected] src]# ls php-5.4.37

mysql5.7编译安装

mkdri /home/data cd /home/data rz 软件包(yum install lrzsz) mysql-boost-5.7.15.tar.gz mysql-5.7.15.tar.gz cmake-3.5.2.tar.gz 预装软件: yum install -y make gcc gcc-c++ yum install -y ncurses-devel yum intsall -y bison bison-devel yum install -y openssl opens

MySQL5.5编译安装和安装后的基本配置

使用的软件cmake-2.8.8.tar.gzmysql-5.5.28.tar.gz 编译安装MySQL5.5的步骤介绍1.准备一块lvm磁盘用来存储MySQL的数据,以便后期存储空间的扩展.(可选)2.编译安装cmake环境 mysql 5.5以前的版本可以使用make进行编译安装,但是mysql5.5以后的版本需要cmake进行编译安装了redhat5 系列的版本是没有安装cmake工具的,redhat6以上的版本安装了cmake工具 3.创建MySQL的用户和组4.编译安装MySQL5.编

12.1 LNMP架构介绍12.2 MySQL安装12.3/12.4 PHP安装12.5 Nginx

12.1 LNMP架构介绍 13.12.2 MySQL安装 [[email protected] ~]# service mysql stopRedirecting to /bin/systemctl stop mysql.service[[email protected] ~]# ps -aux |grep mysqlroot 1064 0.0 0.0 112676 956 pts/0 S+ 23:07 0:00 grep --color=auto mysql[[email protected

centos7下mysql5.7编译安装

mysql5.5以后,mysql的编译安装开始采用cmake的方式,使编译能够独立与源码之外工作,同时,编译版本的mysql兼容性非常好,而且易于卸载和移植到其他服务器上使用,本文讲述mysql5.7的编译安装过程:??准备工作 mysql安装包:mysql-5.7.19.tar.gz编译依赖包: boost_1_59_0.tar.gz 安装环境:centos7服务器,磁盘大小20G左右,内存2G或以上 ??建立用户与组 groupadd -g 27 mysqluseradd -u 27 -g

LNMP环境部署之---PHP编译安装。

前两篇文章是讲关于Nginx和MySQL的编译安装,接下来要完成三个软件中最难的一个环节,当然这只是对还没入门的同学说的.安装过一遍后知道技巧后,自然就好简单了,废话不说,直入正题. 1)检查确认Nginx及MySQL的安装路径: [[email protected] ~]# ls -ld /application/ drwxr-xr-x 4 root root 4096 12月  9 07:52 /application/ [[email protected] ~]# ls -ld /appl