`
kanpiaoxue
  • 浏览: 1777215 次
  • 性别: Icon_minigender_1
  • 来自: 北京
文章分类
社区版块
存档分类
最新评论

Linux 下安装mysql (tar.gz压缩包形式)

 
阅读更多

 

自己简单的安装一个mysql。目的:能够运行mysql即可。

缺点:没有任何配置上面的优化。

步骤:

1、在 oracle.com 上面下载社区版本的mysql

2、上传到Linux机器的目录

3、根据mysql官网给出的安装 "2.2 Installing MySQL on Unix/Linux Using Generic Binaries"的步骤进行安装。

如下:

写道
shell> groupadd mysql
shell> useradd -r -g mysql -s /bin/false mysql
shell> cd /usr/local
shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
shell> ln -s full-path-to-mysql-VERSION-OS mysql
shell> cd mysql
shell> chown -R mysql .
shell> chgrp -R mysql .
shell> scripts/mysql_install_db --user=mysql
shell> chown -R root .
shell> chown -R mysql data
shell> bin/mysqld_safe --user=mysql &
# Next command is optional
shell> cp support-files/mysql.server /etc/init.d/mysql.server

 并且这里假设用户使用的是root用户。

原文:

写道
Note
This procedure assumes that you have root (administrator) access to your
system. Alternatively, you can prefix each command using the sudo (Linux) or
pfexec (OpenSolaris) command.

 

运行命令:scripts/mysql_install_db --user=mysql 之后会给出很多的文字描述,这个很有用。具体如下:

写道
[root@cp01-kanpiaoxue-org mysql]# scripts/mysql_install_db --user=mysql
Installing MySQL system tables...2016-06-30 15:24:47 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2016-06-30 15:24:47 0 [Note] ./bin/mysqld (mysqld 5.6.31) starting as process 482 ...
2016-06-30 15:24:47 482 [Note] InnoDB: Using atomics to ref count buffer pool pages
2016-06-30 15:24:47 482 [Note] InnoDB: The InnoDB memory heap is disabled
2016-06-30 15:24:47 482 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2016-06-30 15:24:47 482 [Note] InnoDB: Memory barrier is not used
2016-06-30 15:24:47 482 [Note] InnoDB: Compressed tables use zlib 1.2.3
2016-06-30 15:24:47 482 [Note] InnoDB: Using Linux native AIO
2016-06-30 15:24:47 482 [Note] InnoDB: Using CPU crc32 instructions
2016-06-30 15:24:47 482 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2016-06-30 15:24:47 482 [Note] InnoDB: Completed initialization of buffer pool
2016-06-30 15:24:47 482 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
2016-06-30 15:24:47 482 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB
2016-06-30 15:24:47 482 [Note] InnoDB: Database physically writes the file full: wait...
2016-06-30 15:24:47 482 [Note] InnoDB: Setting log file ./ib_logfile101 size to 48 MB
2016-06-30 15:24:47 482 [Note] InnoDB: Setting log file ./ib_logfile1 size to 48 MB
2016-06-30 15:24:47 482 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0
2016-06-30 15:24:47 482 [Warning] InnoDB: New log files created, LSN=45781
2016-06-30 15:24:47 482 [Note] InnoDB: Doublewrite buffer not found: creating new
2016-06-30 15:24:47 482 [Note] InnoDB: Doublewrite buffer created
2016-06-30 15:24:47 482 [Note] InnoDB: 128 rollback segment(s) are active.
2016-06-30 15:24:47 482 [Warning] InnoDB: Creating foreign key constraint system tables.
2016-06-30 15:24:47 482 [Note] InnoDB: Foreign key constraint system tables created
2016-06-30 15:24:47 482 [Note] InnoDB: Creating tablespace and datafile system tables.
2016-06-30 15:24:47 482 [Note] InnoDB: Tablespace and datafile system tables created.
2016-06-30 15:24:47 482 [Note] InnoDB: Waiting for purge to start
2016-06-30 15:24:47 482 [Note] InnoDB: 5.6.31 started; log sequence number 0
2016-06-30 15:24:47 482 [Note] Binlog end
2016-06-30 15:24:47 482 [Note] InnoDB: FTS optimize thread exiting.
2016-06-30 15:24:47 482 [Note] InnoDB: Starting shutdown...
2016-06-30 15:24:49 482 [Note] InnoDB: Shutdown completed; log sequence number 1625977
OK

Filling help tables...2016-06-30 15:24:49 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2016-06-30 15:24:49 0 [Note] ./bin/mysqld (mysqld 5.6.31) starting as process 539 ...
2016-06-30 15:24:49 539 [Note] InnoDB: Using atomics to ref count buffer pool pages
2016-06-30 15:24:49 539 [Note] InnoDB: The InnoDB memory heap is disabled
2016-06-30 15:24:49 539 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2016-06-30 15:24:49 539 [Note] InnoDB: Memory barrier is not used
2016-06-30 15:24:49 539 [Note] InnoDB: Compressed tables use zlib 1.2.3
2016-06-30 15:24:49 539 [Note] InnoDB: Using Linux native AIO
2016-06-30 15:24:49 539 [Note] InnoDB: Using CPU crc32 instructions
2016-06-30 15:24:49 539 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2016-06-30 15:24:49 539 [Note] InnoDB: Completed initialization of buffer pool
2016-06-30 15:24:49 539 [Note] InnoDB: Highest supported file format is Barracuda.
2016-06-30 15:24:49 539 [Note] InnoDB: 128 rollback segment(s) are active.
2016-06-30 15:24:49 539 [Note] InnoDB: Waiting for purge to start
2016-06-30 15:24:49 539 [Note] InnoDB: 5.6.31 started; log sequence number 1625977
2016-06-30 15:24:49 539 [Note] Binlog end
2016-06-30 15:24:49 539 [Note] InnoDB: FTS optimize thread exiting.
2016-06-30 15:24:49 539 [Note] InnoDB: Starting shutdown...
2016-06-30 15:24:51 539 [Note] InnoDB: Shutdown completed; log sequence number 1625987
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:

./bin/mysqladmin -u root password 'new-password'
./bin/mysqladmin -u root -h cp01-kanpiaoxue-org.epc.com password 'new-password'

Alternatively you can run:

./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 . ; ./bin/mysqld_safe &

You can test the MySQL daemon with mysql-test-run.pl

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

Please report any problems at http://bugs.mysql.com/

The latest information about MySQL is available on the web at

http://www.mysql.com

Support MySQL by buying support/licenses at http://shop.mysql.com

New default config file was created as ./my.cnf and
will be used by default by the server when you start it.
You may edit this file to change server settings

 

 

使用上面文字中提到的:./bin/mysqladmin -u root -h cp01-kanpiaoxue-org.epc.com password 'new-password' 修改密码。

使用 ./bin/mysql -u root -h cp01-kanpiaoxue-org.epc.com -p 可以进行登录mysql。

如果使用localhost登录,如: ./bin/mysql -u root -p 登录,会报错如下:

写道
Access denied for user 'root'@'localhost' (using password: YES)

 怎么解决呢?很简单。使用 ./bin/mysql -u root -h cp01-kanpiaoxue-org.epc.com -p 登录mysql,修改localhost以及密码即可。

mysql> use mysql;

mysql> update user set password=PASSWORD('这里改成你的密码') where User='root';
mysql> flush privileges;
mysql> quit

 

======== 小结

安装mysql的最好办法就是参考mysql官方文档的安装文档部分。没有比他更加权威的了。

 

分享到:
评论

相关推荐

    mysql-8.0.31-linux-glibc2.17-aarch64.tar.gz

    Linux - Generic (glibc 2.17) (ARM, 64-bit), Compressed TAR Archive (mysql-8.0.31-linux-glibc2.17-aarch64.tar.gz)

    mysql-5.7.40-linux-glibc2.12-x86-64.tar.gz 离线安装包

    首先,`mysql-5.7.40-linux-glibc2.12-x86_64.tar.gz` 是一个针对Linux操作系统的MySQL服务器的二进制压缩包。`tar.gz` 是一种常见的文件打包和压缩格式,由`tar` 工具用来归档多个文件,并通过`gzip` 进行压缩。...

    Navicat121——mysql64.tar.gz

    《Navicat121——mysql64.tar.gz:高效管理MySQL数据库的得力助手》 ...通过“mysql64.tar.gz”压缩包中的“navicat121_mysql_en_x64”,用户可以快速安装并开始使用这款高效工具,进一步提升MySQL数据库的管理体验。

    mysql-server-mysql-8.3.0.tar.gz

    `mysql-server-mysql-8.3.0.tar.gz` 文件是一个包含MySQL服务器的源代码压缩包,版本为8.3.0。这个版本可能包含了最新的特性和性能优化,使得数据库的运行更高效,功能更强大。 MySQL 8.x系列是一个重要的里程碑,...

    mysqld_exporter-0.12.1.linux-amd64.tar.gz

    标题中的"mysqld_exporter-0.12.1.linux-amd64.tar.gz"是一个特定版本的MySQL Exporter的Linux x86_64平台二进制发布包。这个压缩文件包含了运行MySQL Exporter所需的所有文件,包括可执行程序和其他支持文件。...

    mysql-connector-java-5.1.40.tar.gz

    总的来说,`mysql-connector-java-5.1.40.tar.gz`是一个包含MySQL数据库Java驱动程序的压缩包,用于在Java应用程序中与MySQL数据库进行通信。在Linux环境下,我们需要通过`tar`命令解压文件,然后在Java代码中加载...

    mariadb-5.5.68-linux-x86_64.tar.gz

    这里的"mariadb-5.5.68-linux-x86_64.tar.gz"是一个针对Linux系统,x86_64架构的MariaDB 5.5.68版本的压缩包文件。这个版本发布于2013年,是MariaDB的早期稳定版本,提供了一系列的数据库管理功能和性能优化。 首先...

    php-5.6.27.tar.gz

    本文将详细介绍如何在Linux环境下安装并配置PHP 5.6.27。 首先,我们需要从源代码编译安装PHP 5.6.27。这个过程包括下载源码、解压、配置、编译和安装五个步骤。 1. **下载源码**:`php-5.6.27.tar.gz` 是...

    mysql-5.6.36-linux.tar.gz

    这就是在Linux系统下安装MySQL 5.6.36的基本步骤。记得在生产环境中,你还应该考虑配置MySQL的优化参数、设置合适的日志和监控、以及定期备份数据以确保数据的安全性。同时,了解如何使用MySQL的复制功能进行高可用...

    xampp-linux-1.7.1.tar.gz

    XAMPP 的安装过程相对简单,首先需要解压 "xampp-linux-1.7.1.tar.gz" 压缩包,然后通过命令行将 XAMPP 目录移动到合适的位置,如 `/opt` 目录下。启动和停止 XAMPP 的服务可以通过提供的 `start-stop-daemon` 脚本...

    mysql-5.5.32.tar.gz

    本文将深入探讨MySQL 5.5.32在Linux环境下的源码安装过程,以及涉及的相关知识点。 首先,我们从“mysql-5.5.32.tar.gz”这个文件名开始,这是一个常见的Linux压缩格式,`tar.gz`或`.tgz`代表使用tar工具打包并且用...

    Mac下手动安装压缩包MySql8.0.11.tar.gz

    配置手记,一站式解决Mac下手动安装压缩包MySql8.0.11.tar.gz,以及相关问题,直到第三方客户端连接。

    navicat_for_mysql_10.0.11_cn_linux.tar.gz的安装包及其安装及配置步骤

    压缩包中包含navicat_for_mysql_10.0.11_cn_linux.tar.gz的安装包及其安装及配置步骤!由于linux里安装Navicat需要安装另一个环境wine,其安装很繁琐,而本Navicat安装包中已经自带wine环境,不需要另外安装wine环境...

    mariadb-10.2.31-linux-x86_64.tar.gz

    此压缩包"mariadb-10.2.31-linux-x86_64.tar.gz"是专为Linux平台设计的64位版本的MariaDB 10.2.31,这是MariaDB的一个重要稳定版本,广泛应用于生产环境,具有高度的可靠性和性能。 MariaDB 10.2系列带来了许多新...

    mysql-8.0.32.tar.gz

    MySQL是世界上最受欢迎的开源关系型数据库管理系统之一,其最新版本为8.0.32,这个版本的...在安装和使用“mysql-8.0.32.tar.gz”压缩包时,需遵循官方文档指导,确保正确配置和优化MySQL服务器以充分利用这些新功能。

    mysql-5.7.33-linux-glibc2.12-x86_64.tar.gz

    1. **二进制安装**:`mysql-5.7.33-linux-glibc2.12-x86_64.tar.gz` 是一个针对Linux系统的二进制压缩包,其中包含了MySQL服务器、客户端工具、必要的库文件和其他相关组件。二进制安装的优点在于快速、简便,无需...

    presto-server-0.196.tar.gz

    `presto-server-0.196.tar.gz` 是Presto服务器的一个版本包,版本号为0.196,采用tar.gz格式进行压缩,这是一种在Linux和Unix系统中常见的归档和压缩方式。在解压后,我们可以得到`presto-server-0.196`目录,里面...

    mysql-5.6.51-linux-glibc2.12-x86_64.tar.gz

    这个压缩包文件"mysql-5.6.51-linux-glibc2.12-x86_64.tar.gz"包含了MySQL 5.6的最新稳定版本,专为运行在Linux操作系统上,基于glibc 2.12库的x86_64(64位)架构系统设计。 MySQL 5.6版本是一个重要的里程碑,它...

    prometheus-2.30.0.linux-amd64.tar.gz

    "prometheus-2.30.0.linux-amd64.tar.gz" 是这个特定版本的源码压缩包,可以被开发者下载、编译和自定义以适应他们的特定需求。 在Prometheus的核心功能中,它能够定期抓取(scrape)目标服务的度量数据,并将这些...

    php-5.3.28.tar.gz

    在本例中,我们关注的是PHP的5.3.28版本,它是一个tar.gz格式的压缩包,通常用于Linux环境。这种压缩格式结合了tar(用于打包多个文件)和gzip(用于压缩数据)的优点,便于存储和传输。 标题“php-5.3.28.tar.gz”...

Global site tag (gtag.js) - Google Analytics