查看linux服务器的yum源设置:

[root@hadoop03 yum.repos.d]#cd /etc/yum.repos.d

[root@hadoop03 yum.repos.d]#ll

total 4

-rw-r--r--. 1 root root 564 Dec 27 11:27 CentOS-Media.repo

[root@hadoop03 yum.repos.d]#vi CentOS-Media.repo#CentOS-Media.repo#

#This repo can be used with mounted DVD media, verify the mount point for#CentOS-6. You can use this repo and yum to install items directly off the#DVD ISO that we release.#

#To use this repo, put in your DVD and use it with the other repos too:#yum --enablerepo=c6-media [command]#

#or for ONLY the media repo, do this:#

#yum --disablerepo=\* --enablerepo=c6-media [command]

[c6-media]

name=CentOS-$releasever -Media

baseurl=file:///mnt/cdrom/gpgcheck=1enabled=1gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6~

~"CentOS-Media.repo"19L, 564C written

[root@hadoop03 yum.repos.d]#

我们这里的yum源url设置是file:///mnt/cdrom/,所以需要提前将光盘挂载到/mnt/cdrom/目录(如果没有cdrom目录就创建该目录),其中挂载的命令是:

mount -t iso9660 -o ro /dev/cdrom /mnt/cdrom

注意,每次重启linux服务器都要使用以上命令将光盘(CentOS-6.7-x86_64-bin-DVD1.iso和CentOS-6.7-x86_64-bin-DVD2.iso,

只要将前一个iso挂载即可)挂载到/mnt/cdrom目录,否则yum命令无法使用。

然后可以使用yum list命令来查看一下光盘是否挂载成功:

[root@hadoop03 yum.repos.d]#rpm -qa | grep mysql

mysql-community-release-el6-5.noarch

[root@hadoop03 yum.repos.d]#yum list | grep mysql

mysql-community-release.noarch el6-5 @/mysql-community-release-el6-5.noarch

apr-util-mysql.x86_64 1.3.9-3.el6_0.1 c6-media

bacula-director-mysql.x86_64 5.0.0-13.el6 c6-media

bacula-storage-mysql.x86_64 5.0.0-13.el6 c6-media

dovecot-mysql.x86_64 1:2.0.9-19.el6 c6-media

freeradius-mysql.x86_64 2.2.6-4.el6 c6-media

libdbi-dbd-mysql.x86_64 0.8.3-5.1.el6 c6-media

mod_auth_mysql.x86_641:3.0.0-11.el6_0.1 c6-media

mysql.x86_645.1.73-5.el6_6 c6-media

mysql-bench.x86_64 5.1.73-5.el6_6 c6-media

mysql-connector-java.noarch 1:5.1.17-6.el6 c6-media

mysql-connector-odbc.x86_64 5.1.5r1144-7.el6 c6-media

mysql-devel.i686 5.1.73-5.el6_6 c6-media

mysql-devel.x86_64 5.1.73-5.el6_6 c6-media

mysql-embedded.i686 5.1.73-5.el6_6 c6-media

mysql-embedded.x86_64 5.1.73-5.el6_6 c6-media

mysql-embedded-devel.i686 5.1.73-5.el6_6 c6-media

mysql-embedded-devel.x86_64 5.1.73-5.el6_6 c6-media

mysql-libs.i686 5.1.73-5.el6_6 c6-media

mysql-libs.x86_64 5.1.73-5.el6_6 c6-media

mysql-server.x86_64 5.1.73-5.el6_6 c6-media

mysql-test.x86_64 5.1.73-5.el6_6 c6-media

php-mysql.x86_64 5.3.3-40.el6_6 c6-media

qt-mysql.i686 1:4.6.2-28.el6_5 c6-media

qt-mysql.x86_64 1:4.6.2-28.el6_5 c6-media

rsyslog-mysql.x86_64 5.8.10-10.el6_6 c6-media

rsyslog7-mysql.x86_64 7.4.10-3.el6_6 c6-media

[root@hadoop03 yum.repos.d]#yum install -y mysql-server mysql mysql-deve

Loaded plugins: fastestmirror, refresh-packagekit, security

Setting up InstallProcessLoading mirror speeds from cached hostfile

No package mysql-deve available.

Resolving Dependencies-->Running transaction check---> Package mysql.x86_64 0:5.1.73-5.el6_6 will be installed--> Processing Dependency: mysql-libs = 5.1.73-5.el6_6 for package: mysql-5.1.73-5.el6_6.x86_64--> Processing Dependency: libmysqlclient_r.so.16(libmysqlclient_16)(64bit) for package: mysql-5.1.73-5.el6_6.x86_64--> Processing Dependency: libmysqlclient.so.16(libmysqlclient_16)(64bit) for package: mysql-5.1.73-5.el6_6.x86_64--> Processing Dependency: libmysqlclient_r.so.16()(64bit) for package: mysql-5.1.73-5.el6_6.x86_64--> Processing Dependency: libmysqlclient.so.16()(64bit) for package: mysql-5.1.73-5.el6_6.x86_64---> Package mysql-server.x86_64 0:5.1.73-5.el6_6 will be installed--> Processing Dependency: perl-DBI for package: mysql-server-5.1.73-5.el6_6.x86_64--> Processing Dependency: perl-DBD-MySQL for package: mysql-server-5.1.73-5.el6_6.x86_64--> Processing Dependency: perl(DBI) for package: mysql-server-5.1.73-5.el6_6.x86_64-->Running transaction check---> Package mysql-libs.x86_64 0:5.1.73-5.el6_6 will be installed---> Package perl-DBD-MySQL.x86_64 0:4.013-3.el6 will be installed---> Package perl-DBI.x86_64 0:1.609-4.el6 will be installed-->Finished Dependency Resolution

Dependencies Resolved=======================================================================================================================================================================Package Arch Version Repository Size=======================================================================================================================================================================Installing:

mysql x86_645.1.73-5.el6_6 c6-media 894k

mysql-server x86_64 5.1.73-5.el6_6 c6-media 8.6M

Installingfordependencies:

mysql-libs x86_64 5.1.73-5.el6_6 c6-media 1.2M

perl-DBD-MySQL x86_64 4.013-3.el6 c6-media 134k

perl-DBI x86_64 1.609-4.el6 c6-media 705k

Transaction Summary=======================================================================================================================================================================Install5Package(s)

Total download size:12M

Installed size:33M

Downloading Packages:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------Total46 MB/s | 12 MB 00:00Running rpm_check_debug

Running Transaction Test

Transaction Test Succeeded

Running Transaction

Installing : mysql-libs-5.1.73-5.el6_6.x86_64 1/5Installing : perl-DBI-1.609-4.el6.x86_64 2/5Installing : perl-DBD-MySQL-4.013-3.el6.x86_64 3/5Installing : mysql-5.1.73-5.el6_6.x86_64 4/5Installing : mysql-server-5.1.73-5.el6_6.x86_64 5/5Verifying : mysql-libs-5.1.73-5.el6_6.x86_64 1/5Verifying : perl-DBD-MySQL-4.013-3.el6.x86_64 2/5Verifying : mysql-5.1.73-5.el6_6.x86_64 3/5Verifying : mysql-server-5.1.73-5.el6_6.x86_64 4/5Verifying : perl-DBI-1.609-4.el6.x86_64 5/5Installed:

mysql.x86_640:5.1.73-5.el6_6 mysql-server.x86_64 0:5.1.73-5.el6_6

Dependency Installed:

mysql-libs.x86_64 0:5.1.73-5.el6_6 perl-DBD-MySQL.x86_64 0:4.013-3.el6 perl-DBI.x86_64 0:1.609-4.el6

Complete![root@hadoop03 yum.repos.d]#rpm -qi mysql-server

Name : mysql-server Relocations: (not relocatable)

Version :5.1.73Vendor: CentOS

Release :5.el6_6 Build Date: Mon 22 Jun 2015 06:08:32AM PDT

Install Date: Tue27 Dec 2016 02:12:44PM PST Build Host: c6b9.bsys.dev.centos.org

Group : Applications/Databases Source RPM: mysql-5.1.73-5.el6_6.src.rpm

Size :25882979License: GPLv2 with exceptions

Signature : RSA/SHA1, Mon 22 Jun 2015 07:30:08AM PDT, Key ID 0946fca2c105b9de

Packager : CentOS BuildSystem URL : http://www.mysql.com

Summary : The MySQL server and related files

Description :

MySQL is a multi-user, multi-threaded SQL database server. MySQL is a

client/server implementation consisting of a server daemon (mysqld)

and many different client programs and libraries. This package contains

the MySQL server and some accompanying files and directories.

[root@hadoop03 yum.repos.d]#Name : mysql-server Relocations: (not relocatable)

-bash: syntax error near unexpected token `('

[root@hadoop03 yum.repos.d]#Version : 5.1.73 Vendor: CentOS

Release : 5.el6_6 Build Date: Mon 22 Jun 2015 06:08:32AM PDT

Install Date: Tue27 Dec 2016 02:12:44PM PST Build Host: c6b9.bsys.dev.centos.org

Group : Applications/Databases Source RPM: mysql-5.1.73-5.el6_6.src.rpm

Size :25882979License: GPLv2 with exceptions

Signature : RSA/SHA1, Mon 22 Jun 2015 07:30:08AM PDT, Key ID 0946fca2c105b9de

Packager : CentOS BuildSystem URL : http://www.mysql.com

Summary : The MySQL server and related files

Description :-bash: Version: command not found

[root@hadoop03 yum.repos.d]#Release : 5.el6_6 Build Date: Mon 22 Jun 2015 06:08:32 AM PDT

-bash: Release: command not found

[root@hadoop03 yum.repos.d]#Install Date: Tue 27 Dec 2016 02:12:44 PM PST Build Host: c6b9.bsys.dev.centos.org

MySQL is a multi-user, multi-threaded SQL database server. MySQL is a-bash: Install: command not found

[root@hadoop03 yum.repos.d]#Group : Applications/Databases Source RPM: mysql-5.1.73-5.el6_6.src.rpm

-bash: Group: command not found

[root@hadoop03 yum.repos.d]#Size : 25882979 License: GPLv2 with exceptions

-bash: Size: command not found

[root@hadoop03 yum.repos.d]#Signature : RSA/SHA1, Mon 22 Jun 2015 07:30:08 AM PDT, Key ID 0946fca2c105b9de

-bash: Signature: command not found

[root@hadoop03 yum.repos.d]#Packager : CentOS BuildSystem

-bash: syntax error near unexpected token `newline'

[root@hadoop03 yum.repos.d]#URL : http://www.mysql.com

-bash: URL: command not found

[root@hadoop03 yum.repos.d]#Summary : The MySQL server and related files

-bash: Summary: command not found

[root@hadoop03 yum.repos.d]#Description :

-bash: Description: command not found

[root@hadoop03 yum.repos.d]#MySQL is a multi-user, multi-threaded SQL database server. MySQL is a

-bash: MySQL: command not found

[root@hadoop03 yum.repos.d]#client/server implementation consisting of a server daemon (mysqld)

-bash: syntax error near unexpected token `('

[root@hadoop03 yum.repos.d]#and many different client programs and libraries. This package contains

-bash: and: command not found

[root@hadoop03 yum.repos.d]#service mysqld start

Initializing MySQL database: 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 foryour system

PLEASE REMEMBER TO SET A PASSWORDFOR THE MySQL root USER !Todoso, start the server, then issue the following commands:/usr/bin/mysqladmin -u root password 'new-password'/usr/bin/mysqladmin -u root -h hadoop03 password 'new-password'

Alternatively you can run:/usr/bin/mysql_secure_installation

which will also give you the option of removing the test

databases and anonymous user created bydefault. This is

strongly recommendedforproduction servers.

See the manualformore instructions.

You can start the MySQL daemon with:

cd/usr ; /usr/bin/mysqld_safe &You can test the MySQL daemon with mysql-test-run.pl

cd/usr/mysql-test ; perl mysql-test-run.pl

Please report any problems with the/usr/bin/mysqlbug script![ OK ]

Starting mysqld: [ OK ]

[root@hadoop03 yum.repos.d]#service mysqld restart

Stopping mysqld: [ OK ]

Starting mysqld: [ OK ]

[root@hadoop03 yum.repos.d]#chkconfig --list | grep mysqld

mysqld 0:off 1:off 2:off 3:off 4:off 5:off 6:off

[root@hadoop03 yum.repos.d]#chkconfig mysqld on

[root@hadoop03 yum.repos.d]#chkconfig --list | grep mysql

mysqld 0:off 1:off 2:on 3:on 4:on 5:on 6:off

[root@hadoop03 yum.repos.d]#/usr/bin/mysqladmin -u root password 'root'

[root@hadoop03 yum.repos.d]#mysql -u root -p

Enter password:

Welcome to the MySQL monitor. Commandsendwith ; or \g.

Your MySQL connection id is3Server version:5.1.73Source 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'forhelp. Type '\c' to clear the current input statement.

mysql>show databases;+--------------------+

| Database |

+--------------------+

| information_schema |

| mysql |

| test |

+--------------------+

3 rows in set (0.00sec)

mysql>use test

Database changed

mysql>show tables;

Empty set (0.00sec)

mysql>use mysql;

Reading table informationforcompletion of table and column names

You can turn off this feature to get a quicker startup with-A

Database changed

mysql>show tables;+---------------------------+

| Tables_in_mysql |

+---------------------------+

| columns_priv |

| db |

| event |

| func |

| general_log |

| help_category |

| help_keyword |

| help_relation |

| help_topic |

| host |

| ndb_binlog_index |

| plugin |

| proc |

| procs_priv |

| servers |

| slow_log |

| tables_priv |

| time_zone |

| time_zone_leap_second |

| time_zone_name |

| time_zone_transition |

| time_zone_transition_type |

| user |

+---------------------------+

23 rows in set (0.00sec)

mysql> Ctrl-C -- exit!Aborted

[root@hadoop03 yum.repos.d]#

[root@hadoop03 yum.repos.d]#

[root@hadoop03 yum.repos.d]#

[root@hadoop03 yum.repos.d]#

[root@hadoop03 yum.repos.d]#mysql -uroot -proot

Welcome to the MySQL monitor. Commands endwith ; or \g.

Your MySQL connection id is7Server version:5.1.73Source 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'forhelp. Type '\c' to clear the current input statement.

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

Query OK,0 rows affected (0.00sec)

mysql> Ctrl-C -- exit!Aborted

[root@hadoop03 yum.repos.d]#

[root@hadoop03 yum.repos.d]#

[root@hadoop03 yum.repos.d]#service mysqld restart

Stopping mysqld: [ OK ]

Starting mysqld: [ OK ]

[root@hadoop03 yum.repos.d]#

==============================================================================================MySQL数据库安装之后,出现乱码问题。

问题描述:在linux上安装MySQL数据库之后,使用SecureCRT工具连接MySQL查询数据,数据中出现中文乱码问题:

[root@hadoop03 ~]#mysql -uroot -p

Enter password:

Welcome to the MySQL monitor. Commandsendwith ; or \g.

Your MySQL connection id is3Server version:5.1.73Source 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'forhelp. Type '\c' to clear the current input statement.

mysql>use taotao;

Reading table informationforcompletion of table and column names

You can turn off this feature to get a quicker startup with-A

Database changed

mysql>show tales;

ERROR1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'tales' at line 1mysql>show tables;+---------------------+

| Tables_in_taotao |

+---------------------+

| tb_content |

| tb_content_category |

| tb_item |

| tb_item_cat |

| tb_item_desc |

| tb_item_param |

| tb_item_param_item |

| tb_order |

| tb_order_item |

| tb_order_shipping |

| tb_user |

+---------------------+

11 rows in set (0.00sec)

mysql> select * from tb_item limit 1;+-----------------+---------------------------------+---------------------------------+-------+-----+---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----+--------+---------------------+---------------------+

| id | title | sell_point | price | num | barcode | image | cid | status | created | updated |

+-----------------+---------------------------------+---------------------------------+-------+-----+---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----+--------+---------------------+---------------------+

| 148294659268204 | TCL D48A261 48?? ???? ??TV ???? | TCL D48A261 48?? ???? ??TV ???? | 89900 | 999 | | http://hadoop01:8088/images/2016/12/28/1482946504821995.jpg,http://hadoop01:8088/images/2016/12/28/1482946505522895.jpg,http://hadoop01:8088/images/2016/12/28/1482946505646369.jpg | 560 | 1 | 2016-12-28 09:36:32 | 2016-12-28 09:36:32 |

+-----------------+---------------------------------+---------------------------------+-------+-----+---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----+--------+---------------------+---------------------+

1 row in set (0.00sec)

mysql> show variables like '%character%';+--------------------------+----------------------------+

| Variable_name | Value |

+--------------------------+----------------------------+

| character_set_client | latin1 |

| character_set_connection | latin1 |

| character_set_database | latin1 |

| character_set_filesystem | binary |

| character_set_results | latin1 |

| character_set_server | latin1 |

| character_set_system | utf8 |

| character_sets_dir | /usr/share/mysql/charsets/ |

+--------------------------+----------------------------+

8 rows in set (0.00sec)

mysql>下面是解决乱码问题的整个过程:

[root@hadoop03 ~]#vi /etc/my.cnf

[mysqld]

datadir=/var/lib/mysql

socket=/var/lib/mysql/mysql.sock

user=mysql#Disabling symbolic-links is recommended to prevent assorted security risks

symbolic-links=0

default-character-set =utf8

[mysqld_safe]

log-error=/var/log/mysqld.log

pid-file=/var/run/mysqld/mysqld.pid#set mysql character_set

[client]default-character-set =utf8

~

~

~"/etc/my.cnf"18L, 348C written

[root@hadoop03 ~]#/etc/init.d/mysqld restart

Stopping mysqld: [ OK ]

Starting mysqld: [ OK ]

[root@hadoop03 ~]#

mysql> show variables like '%character%';

ERROR2006(HY000): MySQL server has gone away

No connection. Trying to reconnect...

Connection id:2Current database:*** NONE ***

+--------------------------+----------------------------+

| Variable_name | Value |

+--------------------------+----------------------------+

| character_set_client | latin1 |

| character_set_connection | latin1 |

| character_set_database | utf8 |

| character_set_filesystem | binary |

| character_set_results | latin1 |

| character_set_server | utf8 |

| character_set_system | utf8 |

| character_sets_dir | /usr/share/mysql/charsets/ |

+--------------------------+----------------------------+

8 rows in set (0.00sec)

mysql>mysql> SET character_set_client =utf8;

Query OK,0 rows affected (0.00sec)

mysql> SET character_set_connection =utf8;

Query OK,0 rows affected (0.00sec)

mysql> SET character_set_results =utf8;

Query OK,0 rows affected (0.00sec)

mysql> show variables like '%character%';+--------------------------+----------------------------+

| Variable_name | Value |

+--------------------------+----------------------------+

| character_set_client | utf8 |

| character_set_connection | utf8 |

| character_set_database | utf8 |

| character_set_filesystem | binary |

| character_set_results | utf8 |

| character_set_server | utf8 |

| character_set_system | utf8 |

| character_sets_dir | /usr/share/mysql/charsets/ |

+--------------------------+----------------------------+

8 rows in set (0.00sec)

然后重启一下mysql服务:

[root@hadoop03 ~]#/etc/init.d/mysqld restart

Stopping mysqld: [ OK ]

Starting mysqld: [ OK ]

重新使用SecureCRT工具连接MySQL再次查询数据,还是乱码,但是这次的乱码和上次不一样了:

mysql> select * from tb_item limit 1;+-----------------+---------------------------------------------------------+---------------------------------------------------------+-------+-----+---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----+--------+---------------------+---------------------+

| id | title | sell_point | price | num | barcode | image | cid | status | created | updated |

+-----------------+---------------------------------------------------------+---------------------------------------------------------+-------+-----+---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----+--------+---------------------+---------------------+

| 148294659268204 | TCL D48A261 48鑻卞 寰俊鐢佃 寰俊TV 娴烽噺鐖卞 | TCL D48A261 48鑻卞 寰俊鐢佃 寰俊TV 娴烽噺鐖卞 | 89900 | 999 | | http://hadoop01:8088/images/2016/12/28/1482946504821995.jpg,http://hadoop01:8088/images/2016/12/28/1482946505522895.jpg,http://hadoop01:8088/images/2016/12/28/1482946505646369.jpg | 560 | 1 | 2016-12-28 09:36:32 | 2016-12-28 09:36:32 |

+-----------------+---------------------------------------------------------+---------------------------------------------------------+-------+-----+---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----+--------+---------------------+---------------------+

1 row in set (0.00sec)

mysql>猜想可能是SecureCRT客户端工具的编码设置有问题,所以设置一下SecureCRT客户端的字符编码;

选择菜单中的Options->Session-Options->Appearance,然后找到右侧的Character-encoding,将其设置为UTF-8即可。

下面使用SecureCRT工具连接MySQL再次查询数据,乱码问题解决:

mysql> select * from tb_item limit 1;+-----------------+---------------------------------------------------------+---------------------------------------------------------+-------+-----+---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----+--------+---------------------+---------------------+

| id | title | sell_point | price | num | barcode | image | cid | status | created | updated |

+-----------------+---------------------------------------------------------+---------------------------------------------------------+-------+-----+---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----+--------+---------------------+---------------------+

| 148294659268204 | TCL D48A261 48英寸 微信电视 微信TV 海量爱奇 | TCL D48A261 48英寸 微信电视 微信TV 海量爱奇 | 89900 | 999 | | http://hadoop01:8088/images/2016/12/28/1482946504821995.jpg,http://hadoop01:8088/images/2016/12/28/1482946505522895.jpg,http://hadoop01:8088/images/2016/12/28/1482946505646369.jpg | 560 | 1 | 2016-12-28 09:36:32 | 2016-12-28 09:36:32 |

+-----------------+---------------------------------------------------------+---------------------------------------------------------+-------+-----+---------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----+--------+---------------------+---------------------+

1 row in set (0.00sec)

mysql>

mysql下载64位 linux_在linux(CentOS-6.7_x86_64)上安装mysql成功记录相关推荐

  1. 在CentOS 7.6上安装MySQL 5.7.29+Navicat Premium 12 安装教程 + 注册机

    在CentOS 7.6上安装MySQL 5.7 系统环境 软件包下载地址 是否安装过mysql或者mariadb 解压并移动 创建 用户,并给数据目录赋予权限 配置参数 初始化mysql 查看初始密码 ...

  2. centos+7.2+linux版本,在Linux Centos 7.2 上安装指定版本Docker。

    相关资料链接: 先清空下"历史" yum remove docker \ docker-common \ docker-selinux \ docker-engine 安装必要的包 ...

  3. centos mysql下载64位_CentOS7 64位安装mysql教程

    参考链接:http://baijiahao.baidu.com/s?id=1597184796823517712&wfr=spider&for=pc https://www.cnblo ...

  4. ubuntu mysql下载64位下载_ubuntu mysql下载|

    mysql for ubuntu是ubuntu linux系统使用的mysql server数据库客户端,这里提供的事x86和64位的程序,ubuntu 16.10 mysql的安装配置教程可以参考网 ...

  5. mysql下载64位 win7_win7 64位安装MySQL 绝对经典

    windows 7 64位下配置mysql64位免安装版 1.官方网站下载mysql-5.6.10-winx64.zip 这里也可以下载 http://xiazai.zol.com.cn/detail ...

  6. mysql下载64位 太平洋,Win10 64位安装MySQL5.6.35的详细教程

    1. 下载MySQL Community Server 5.6.35 下载地址http://dev.mysql.com/downloads/mysql/5.6.html 2. 解压MySQL压缩包 将 ...

  7. 中文输入法 linux 下载64位,最新搜狗输入法linux版v2.2.0.0108 官方版(32位+64位)下载地址电脑版-锐品软件...

    快速精准,更加出色!搜狗输入法linux版全新发布!提供了模糊拼音.最新词库.云端输入.自动纠错.多彩皮肤.长词联想.网址输入.简繁切换等功能,本站提供了32位+64位搜狗linux输入法下载,请根据 ...

  8. mysql下载64位免安装_windows 安装MySQL 5.7.19【免安装版】

    windows 安装MySQL 5.7(.zip Archive版[免安装版],非.msi Installer安装版) 以前安装过,没做笔记.这次再安装记录之.(好记性不如烂笔头啊,又查了一堆资料) ...

  9. mysql下载64位 csdn_Linunx-CentOS7安装mysql-5.7.23-linux-glibc2.12-x86_64.tar

    2. Linux下安装Mysql 2.2 将下载好的mysql安装包通过xftp上传到虚拟机上. 2.3 将安装包移动到/usr/local路径下 #mv mysql-5.7.23-linux-gli ...

最新文章

  1. 第1条:考虑用静态工厂方法代替构造器
  2. spring的单例回收
  3. go reflect的用法
  4. Linux技巧:自动挂载UDF光盘的技巧
  5. 微软文本检索_如何在Microsoft Word中引用其他文档中的文本
  6. 【译】来看看WebWindow,一个跨平台的.NET Core webview 库
  7. jQuery 的属性操作方法
  8. SAP License:账号锁定的处理
  9. MySQL 5.7原生JSON格式支持
  10. 跑步是冻龄,还是催人老?
  11. 迷瘴 详解(C++)
  12. c++如何让字符串重复输出_Python基础三(数据类型之数字和字符串)
  13. python idle背景设置为黑色_python IDLE颜色设置
  14. 1660 super安装tensorflow1.15
  15. 男は失恋夜盗11台奔スポーツカーエンブレム腹いせ(写真)
  16. 文件被其他程序占用及解决方法
  17. 使用Navicat远程连接oracle数据库
  18. Linux 灾难恢复
  19. PHP工厂模式的好处
  20. 【C语言】assert() 断言的作用

热门文章

  1. 智能投影:下一个传统投影的颠覆者
  2. JFinal针对ORACLE的timestamp字段解决办法
  3. 英文.数字和中文混合的彩色验证码【JSP】
  4. IBM胡世忠谈大数据时代企业面临的四大挑战
  5. 让Windows Server 2008 R2 SP1 的“网络发现”真正能发现和被发现
  6. OJ1083: 数值统计(多实例测试)(C语言)
  7. android 数据库模糊查询语句_单表千万行数据库:LIKE 搜索优化手记
  8. arm搭建云手机教程_教你从0开始部署阿里云服务器,阿里云服务器搭建网站教程...
  9. 信息学奥赛一本通(1108:向量点积计算)
  10. Lucky Number(HDU-4937)