1:安装数据库
1)检查版本,内核
[root@mysql1 ~]# cat /etc/redhat-release 
CentOS release 6.8 (Final)
[root@mysql1 ~]# una
unalias  uname    
[root@mysql1 ~]# uname -r
2.6.32-642.el6.x86_64
[root@mysql1 ~]# uname -m
x86_64
2)创建文件夹
[root@mysql1 ~]# cd /home/hubo/tools
-bash: cd: /home/hubo/tools: 没有那个文件或目录
[root@mysql1 ~]# mkdir -p /home/hubo/tools
3)上传软件包解压mysql-5.5.32.tar  cmake-2.8.8.tar
[root@mysql1 tools]# ll
总用量 29580
-rw-r--r--. 1 root root  5691656 11月 30 21:08 cmake-2.8.8.tar.gz
-rw-r--r--. 1 root root 24596474 11月 30 21:08 mysql-5.5.32.tar.gz
[root@mysql1 tools]# tar xf cmake-2.8.8.tar.gz 
4)安装cmake
[root@mysql1 tools]# cd cmake-2.8.8
[root@mysql1 cmake-2.8.8]# ./configure 
报错
Log of errors: /home/hubo/tools/cmake-2.8.8/Bootstrap.cmk/cmake_bootstrap.log
解决
[root@mysql1 cmake-2.8.8]# yum install gcc-c++
[root@mysql1 cmake-2.8.8]# make
[root@mysql1 cmake-2.8.8]# make install
[root@mysql1 cmake-2.8.8]# echo $?
0
[root@mysql1 cmake-2.8.8]# cd ../
安装完毕

5)安装依赖包
[root@mysql1 tools]# yum install ncurses-devel -y

6创建用户和组
[root@mysql1 mysql-5.5.32]# groupadd mysql
[root@mysql1 mysql-5.5.32]# useradd mysql -s /sbin/nologin -M -g mysql

7)上传软件包解压mysql-5.5.32.tar
[root@mysql1 tools]# tar xf mysql-5.5.32.tar.gz 
[root@mysql1 tools]# cd mysql-5.5.32
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
[root@mysql1 mysql-5.5.32]# echo $?
0
[root@mysql1 mysql-5.5.32]# make
[root@mysql1 mysql-5.5.32]# make install
[root@mysql1 mysql-5.5.32]# echo $?
0
[root@mysql1 mysql-5.5.32]# ln -s /application/mysql-5.5.32/ /application/mysql
[root@mysql1 mysql-5.5.32]# ls /application/mysql
bin      data  include         lib  mysql-test  scripts  sql-bench
COPYING  docs  INSTALL-BINARY  man  README      share    support-files
安装完成

[root@mysql1 tools]# cp mysql-5.5.32/support-files/my-small.cnf /etc/my.cnf 
cp:是否覆盖"/etc/my.cnf"? y
授权
[root@mysql1 tools]# chown -R mysql.mysql /application/mysql/data/
[root@mysql1 tools]# chmod -R 1777 /tmp/
初始化
[root@mysql1 tools]# cd /application/mysql/scripts/
[root@mysql1 scripts]# ./mysql_install_db --basedir=/application/mysql/ --datadir=/application/mysql/data/ --user=mysql
成功了的话是2个OK
Installing MySQL system tables...
OK
Filling help tables...
OK
[root@mysql1 scripts]# cd ../
[root@mysql1 mysql]# cd /home/hubo/tools/mysql-5.5.32
[root@mysql1 mysql-5.5.32]# /bin/cp support-files/mysql.server /etc/init.d/mysqld
[root@mysql1 mysql-5.5.32]# chmod +x /etc/init.d/mysqld
[root@mysql1 mysql-5.5.32]# /etc/init.d/mysqld start
Starting MySQL..                                           [确定]
安装成功

检查3306端口
[root@mysql1 mysql-5.5.32]# netstat -lntup|grep 3306
tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN      28246/mysqld

进入数据库
[root@nginx bin]# ln -s /application/mysql/bin/mysql /usr/bin/
[root@mysql1 tools]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
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> 
安装成功

========================================数据库优化================================================
数据库优化基本优化
[root@mysql1 tools]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
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       |
|      | localhost |
| root | localhost |
|      | mysql1    |
| root | mysql1    |
+------+-----------+
6 rows in set (0.00 sec)

mysql> 
========================================================
删除空的用户
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 | localhost |
| root | mysql1    |
+------+-----------+
4 rows in set (0.00 sec)

mysql> 
========================================================
删除用户名为名字的
mysql> delete from mysql.user where host='mysql1';
Query OK, 1 row affected (0.00 sec)

mysql> select user,host from mysql.user;
+------+-----------+
| user | host      |
+------+-----------+
| root | 127.0.0.1 |
| root | ::1       |
| root | localhost |
+------+-----------+
3 rows in set (0.00 sec)
=======================================================
删除::1的这个用户
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> 
==========================================================
把test库干掉
mysql> drop database test;
Query OK, 0 rows affected (0.01 sec)

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
+--------------------+
3 rows in set (0.00 sec)
=================================================================

开机启动mysql
[root@mysql1 tools]# chkconfig mysqld on
[root@mysql1 tools]# chkconfig --list mysqld
mysqld         0:关闭 1:关闭 2:启用 3:启用 4:启用 5:启用 6:关闭

===========================建立安装Mysql多实例,以Mysql 5.5为例===============================
1)安装好Mysql依赖包
yum install ncurses-devel -y
yum install libaio-devel -y

2)以root建立Msql账号和组(已完成)
groupadd mysql
useradd mysql -s /sbin/nologin -M -g mysql

3)获得Mysql软件:(已完成)

4)安装Mysql软件
1.解压软件包,移动到规范的软件安装目录。(已完成)
[root@mysql1 tools]# tar xf mysql-5.5.32.tar.gz 
[root@mysql1 tools]# mkdir -p /application/
[root@mysql1 tools]# mv mysql-5.5.32-linux6.8-x86_64 /application/mysql-5.5.32

2.生成不带版本号的软链接/application/mysql,即mysql安装路径
[root@mysql1 tools]# ln -s /application/mysql-5.5.32/ /application/mysql

5)创建Mysql多实例的数据文件目录
我们采用/data 目录作为mysql多实例总的根目录
先把进程关掉
[root@mysql1 ~]# pkill mysqld
[root@mysql1 ~]# ps -ef|grep mysql
root       4341   1709  0 04:07 pts/0    00:00:00 grep mysql
干掉启动命令
[root@mysql1 ~]# rm -f /etc/init.d/mysqld

创建3306,33072个目录
[root@mysql1 ~]# mkdir -p /data/{3306,3307}/data
看下2个目录结构
[root@mysql1 ~]# tree /data/
/data/           <===总的多实例根目录
├── 3306         <===3306实例的目录
│   └── data     <===3306实例的数据文件目录
└── 3307         <===3307实例的目录
    └── data     <===3307实例的数据文件目录

创建Mysql多实例的配置文件
上传包到cd /home/hubo/tools/
[root@mysql1 ~]# cd /home/hubo/tools/
[root@mysql1 tools]# unzip data.zip 
Archive:  data.zip
   creating: data/
   creating: data/3306/
  inflating: data/3306/my.cnf        
  inflating: data/3306/mysql         
   creating: data/3307/
  inflating: data/3307/my.cnf        
  inflating: data/3307/mysql  
拷贝文件
[root@mysql1 tools]# cp data/3306/my.cnf /data/3306/
[root@mysql1 tools]# cp data/3307/my.cnf /data/3307/
[root@mysql1 tools]# tree /data/
/data/
├── 3306
│   ├── data
│   └── my.cnf
└── 3307
    ├── data
    └── my.cnf

4 directories, 2 files

创建Mysql多实例的启动文件
  inflating: data/3307/mysql  
拷贝文件脚本
[root@mysql1 tools]# cp data/3306/mysql /data/3306/
[root@mysql1 tools]# cp data/3307/mysql /data/3307/
[root@mysql1 tools]# tree data
data
├── 3306
│   ├── my.cnf
│   └── mysql
└── 3307
    ├── my.cnf
    └── mysql

2 directories, 4 files

授权
[root@mysql1 tools]# chown -R mysql.mysql /data
[root@mysql1 tools]# find /data/ -type f -name "mysql"|xargs ls -l
-rw-r--r--. 1 mysql mysql 1305 12月  1 05:52 /data/3306/mysql
-rw-r--r--. 1 mysql mysql 1305 12月  1 05:52 /data/3307/mysql
[root@mysql1 tools]# find /data/ -type f -name "mysql"|xargs chmod +x
[root@mysql1 tools]# find /data/ -type f -name "mysql"|xargs ls -l
-rwxr-xr-x. 1 mysql mysql 1305 12月  1 05:52 /data/3306/mysql
-rwxr-xr-x. 1 mysql mysql 1305 12月  1 05:52 /data/3307/mysql

配置Mysql命令全局使用路径
配置环境变量
[root@mysql1 ~]# vim /etc/profile
export PATH=/application/mysql/bin:$PATH
[root@mysql1 ~]# source /etc/profile

初始化Mysql多实例的数据库文件
[root@mysql1 tools]# cd /application/mysql/scripts
[root@mysql1 scripts]# ./mysql_install_db --basedir=/application/mysql --datadir=/data/3306/data/ --user=mysql
Installing MySQL system tables...
OK
Filling help tables...
OK

[root@mysql1 scripts]# ./mysql_install_db --basedir=/application/mysql --datadir=/data/3307/data/ --user=mysql
Installing MySQL system tables...
OK
Filling help tables...
OK

[root@mysql1 scripts]# tree /data/3306/data/
[root@mysql1 scripts]# /data/3306/mysql start
Starting MySQL...
[root@mysql1 scripts]# /data/3307/mysql start
Starting MySQL...
数据库起来了
[root@mysql1 scripts]# netstat -lntup|grep 330[6-7]
tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN      49673/mysqld        
tcp        0      0 0.0.0.0:3307                0.0.0.0:*                   LISTEN      50392/mysqld  
安装完成

如果启动不了。就看下错误日志
[root@mysql1 ~]# tail /data/3306/mysql_oldboy3306.err 
171202  4:55:16 InnoDB: 5.5.32 started; log sequence number 0
171202  4:55:17 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306
171202  4:55:17 [Note]   - '0.0.0.0' resolves to '0.0.0.0';
171202  4:55:17 [Note] Server socket created on IP: '0.0.0.0'.
171202  4:55:17 [Warning] 'user' entry 'root@mysql2' ignored in --skip-name-resolve mode.
171202  4:55:17 [Warning] 'user' entry '@mysql2' ignored in --skip-name-resolve mode.
171202  4:55:17 [Warning] 'proxies_priv' entry '@ root@mysql2' ignored in --skip-name-resolve mode.
171202  4:55:17 [Note] Event Scheduler: Loaded 0 events
171202  4:55:17 [Note] /application/mysql-5.5.32/bin/mysqld: ready for connections.
Version: '5.5.32-log'  socket: '/data/3306/mysql.sock'  port: 3306  Source distribution

登入3306
[root@mysql1 3306]# mysql -S /data/3306/mysql.sock 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
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> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
4 rows in set (0.00 sec)

mysql> create database d3306;
Query OK, 1 row affected (0.00 sec)

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| d3306              |
| mysql              |
| performance_schema |
| test               |
+--------------------+
5 rows in set (0.00 sec)

mysql> exit
Bye

========================================================================================
登入3307
[root@mysql1 3306]# mysql -S /data/3307/mysql.sock 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
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> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
4 rows in set (0.00 sec)

mysql>

mysql> create database d3307;
Query OK, 1 row affected (0.00 sec)

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| d3307              |
| mysql              |
| performance_schema |
| test               |
+--------------------+
5 rows in set (0.00 sec)

mysql>

从3307跳到3306数据库里面
mysql> system mysql -S /data/3306/mysql.sock
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.5.32-log 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> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| d3306              |
| mysql              |
| performance_schema |
| test               |
+--------------------+
5 rows in set (0.00 sec)

mysql>

登入数据库
mysql -S /data/3306/mysql.sock 
mysql -S /data/3307/mysql.sock

重启数据库
/data/3306/mysql stop 
/data/3306/mysql start

为root增加密码
[root@mysql1 3306]# mysqladmin -u root -S /data/3306/mysql.sock password 'hubo2017'
为mysql设置了密码
[root@mysql2 3306]# mysql -S /data/3306/mysql.sock 
无法直接登录了

停止MYSQL不用密码
进入3306编译器
[root@mysql1 3306]# vi mysql
把密码改为空
mysql_pwd="hubo2017"
改为
mysql_pwd=""
停止成功
[root@mysql1 3306]# /data/3306/mysql stop
Stoping MySQL...
Enter password: 
只有3307了
[root@mysql1 3306]# netstat -lntup|grep 330
tcp        0      0 0.0.0.0:3307                0.0.0.0:*                   LISTEN      50392/mysqld 
重启
[root@mysql1 3306]# /data/3306/mysql start
Starting MySQL...
[root@mysql2 3306]# netstat -lntup|grep 330
tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN      51289/mysqld        
tcp        0      0 0.0.0.0:3307                0.0.0.0:*                   LISTEN      50392/mysqld

授权
[root@mysql1 3307]# find /data -type f -name "mysql" -exec ls -l {} \;
-rwxr-xr-x. 1 mysql mysql 1309 12月  2 05:40 /data/3307/mysql
-rwxr-xr-x. 1 mysql mysql 1309 12月  2 05:39 /data/3306/mysql
[root@mysql1 3307]# find /data -type f -name "mysql" -exec chmod 700 {} \;
[root@mysql1 3307]# find /data -type f -name "mysql" -exec chown root.root {} \;
[root@mysql1 3307]# find /data -type f -name "mysql" -exec ls -l {} \;
-rwx------. 1 root root 1309 12月  2 05:40 /data/3307/mysql
-rwx------. 1 root root 1309 12月  2 05:39 /data/3306/mysql
干掉进程
[root@mysql1 3307]# pkill mysqld
[root@mysql1 3307]# netstat -lntup|grep 330
重启数据库
[root@mysql1 3307]# /data/3306/mysql start
Starting MySQL...
[root@mysql1 3307]# /data/3307/mysql start
Starting MySQL...
[root@mysql1 3307]# netstat -lntup|grep 330
tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN      53556/mysqld        
tcp        0      0 0.0.0.0:3307                0.0.0.0:*                   LISTEN      54273/mysqld

如何再增加一个MYSQL3308实例
2个实例
[root@mysql1 3307]# ps -ef|grep mysql
root      52834      1  0 05:46 pts/0    00:00:00 /bin/sh /application/mysql/bin/mysqld_safe --defaults-file
=/data/3306/my.cnfmysql     53556  52834  0 05:46 pts/0    00:00:00 /application/mysql-5.5.32/bin/mysqld --defaults-file=/data
/3306/my.cnf --basedir=/application/mysql --datadir=/data/3306/data --plugin-dir=/application/mysql/lib/plugin --user=mysql --log-error=/data/3306/mysql_oldboy3306.err --open-files-limit=1024 --pid-file=/data/3306/mysqld.pid --socket=/data/3306/mysql.sock --port=3306root      53575      1  0 05:46 pts/0    00:00:00 /bin/sh /application/mysql/bin/mysqld_safe --defaults-file
=/data/3307/my.cnfmysql     54273  53575  0 05:46 pts/0    00:00:00 /application/mysql-5.5.32/bin/mysqld --defaults-file=/data
/3307/my.cnf --basedir=/application/mysql --datadir=/data/3307/data --plugin-dir=/application/mysql/lib/plugin --user=mysql --log-error=/data/3307/mysql_oldboy3307.err --open-files-limit=1024 --pid-file=/data/3307/mysqld.pid --socket=/data/3307/mysql.sock --port=3307root      54328   1671  0 05:58 pts/0    00:00:00 grep mysql

创建一个3308文件夹
[root@mysql1 3307]# mkdir /data/3308/data -p
拷贝3306里面的my.cnf和mysql
[root@mysql1 ~]# cp /data/3306/my.cnf /data/3308/
[root@mysql1 ~]# cp /data/3306/mysql /data/3308/
授权,一定要记得
[root@mysql1 ~]# chown -R mysql.mysql /data/3308/
[root@mysql1 ~]# cd /data/3308/
[root@mysql1 3308]# ll
总用量 12
drwxr-xr-x. 2 mysql mysql 4096 12月  2 06:00 data
-rw-r--r--. 1 mysql mysql 1899 12月  2 06:02 my.cnf
-rwx------. 1 mysql mysql 1309 12月  2 06:02 mysql
进入编译器
[root@mysql1 3308]# vi my.cnf
改3306为3308
改下server-id = 
[root@mysql1 3308]# vi mysql 
改3306为3308

[root@mysql1 3308]# cd /application/mysql/scripts/
[root@mysql1 scripts]# ./mysql_install_db --user=mysql --basedir=/application/mysql --datadir=/data/3308/data/
Installing MySQL system tables...
OK
Filling help tables...
OK

启动数据库
[root@mysql1 scripts]# /data/3308/mysql start
Starting MySQL...
[root@mysql1 scripts]# netstat -lntup|grep 330
tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN      53556/mysqld        
tcp        0      0 0.0.0.0:3307                0.0.0.0:*                   LISTEN      54273/mysqld        
tcp        0      0 0.0.0.0:3308                0.0.0.0:*                   LISTEN      55185/mysqld

设置密码
[root@mysql2 3308]# mysqladmin -u root -S /data/3307/mysql.sock password 'hubo2017'

多实例做完

===============================================================================================

CentOS 6.8 数据库安装5.5.32相关推荐

  1. PostgreSQL(Pgsql)快速开始/ ubuntu、centos下PostgreSQL数据库安装配置/查看已经编译的pg 编译选项

    文章目录 一.PostgreSQL是什么 1. Pgsql和Mysql的对比 二.ubuntu 下安装配置postgres sql 数据库 1. [推荐]apt-get 安装postgres 安装和配 ...

  2. CentOS下DB2数据库安装过程详解

    这篇文章主要介绍了CentOS下DB2数据库安装过程详解,本文步骤详细,操作的命令也比较全 安装前请查看DB2版本和许可证说明来增加了解,先弄明白改安装什么版本,这里我用的是最新的Express-C版 ...

  3. centos8安装mysql5.5_CentOS 6.8 编译安装MySQL5.5.32 (二 多实例)

    MySQL多实例的配置 通过上文 CentOS 6.8 编译安装MySQL5.5.32 ,我们完成了编译安装,接下配置多实例 本图借鉴徐亮伟"思维简图" 5,添加多实例目录[roo ...

  4. 32位服务器系统安装教程,服务器系统数据库安装教程

    服务器系统数据库安装教程 内容精选 换一换 应用容器化改造有三种方式,您可单击这里查看.本教程以某游戏为例,将该游戏进行微服务的架构改造,再进行容器化.本教程不对改造细节做深度讲解,仅讲解大致的建议. ...

  5. (64位oracle使用32位的PLSQL)安装64位的oracle数据库软件,使用32位的PLSQL Developer连接方法...

    因为PLSQL Developer没有提供64位的,于是依据网上的资料做了一下整理,发上来 1.下载并安装Oracle 11g R2 64位,在server上安装时忽略硬件检測失败信息: 2.下载Or ...

  6. CentOS 安装jdk1.7 32位

    CentOS 安装jdk1.7 32位 1.下载jdk-7u21-linux-i586.rpm ? 1 wget http://uni-smr.ac.ru/archive/dev/java/bulk/ ...

  7. CentOS 7.9 RPM安装Mysql数据库过程

    CentOS 7.9 RPM安装Mysql数据库过程 1.查看系统版本 cat /etc/redhat-release 2.下载mysql 的安装文件 下载地址 https://downloads.m ...

  8. centos打开 mysql数据库文件_centos安装mysql数据库和配置mysql数据库

    mysql数据库安装 yum安装 1.下载rpm文件 yum locatinstall https://repo.mysql.com//mysql80-community-release-el7-1. ...

  9. CentOS 7.0编译安装Nginx+MySQL+PHP

    转自http://www.centoscn.com/CentosServer/www/2014/0904/3673.html 准备篇: CentOS 7.0系统安装配置图解教程 http://www. ...

最新文章

  1. java异常怎么输出到页面_怎么把抛出的异常信息输出到SWING 界面上
  2. JavaScript9x9乘法表
  3. c#中out和ref的使用区别 [转]
  4. FORMS变量类型和消息提示
  5. VTK:网格之MatrixMathFilter
  6. treegrid,可以展开的jqgrid树
  7. iOS-MVVM-模式介绍
  8. 列举python中可变数据类型_python 可变数据类型 和 不可变数据类型
  9. 微信小程序开发 -- 获取当前页面路径
  10. 几个好用的资源下载网址
  11. 【chp3】代码调试-车万翔-自然语言处理:基于预训练模型的方法
  12. python如何表示正整数_python 正整数
  13. layui富文本编辑器,使用第三方插件Kz.layedit上传文件时自定义文件域字段名和请求参数
  14. 喇叭POP爆破音产生的原因与解决办法
  15. [DP]hdu5234
  16. uni-app:实现PayPal支付功能
  17. MEC的云边协同分析
  18. 大数据实战 --- 淘宝用户行为数据分析
  19. 曼哈顿距离和欧氏距离
  20. 云计算、大数据、人工智能的关系

热门文章

  1. 微信公众平台开发最佳实践(第2版)
  2. Jenkins使用问题记录
  3. 苹果恢复出厂设置系统也会还原吗_手机恢复出厂设置会影响使用吗?听听专业人士看法,减少后顾之忧...
  4. SQL Server 2014 无法连接到服务器
  5. 4.3 51单片机-串口通信
  6. 淮师计算机网络试题库,淮阴师范学院(淮师)计算机基础一至六章习题
  7. 一文搞懂考研数列极限问题(概念/计算/证明)史上最强/最全总结
  8. Lending Club贷款违约预测
  9. merge和AMVP
  10. manjaro 安装的艰辛历程,常用软件安装以及踩坑