Home Database Mysql Tutorial linux安装mysql二进制包( 完整流程 )_MySQL

linux安装mysql二进制包( 完整流程 )_MySQL

Jun 01, 2016 pm 01:10 PM

首先在MySQL官网下载MySQL二进制包(下载要注册,稍显麻烦)

我下载的mysql-5.1.49,有123M大哦,比源码包大多啦。

# ls -lh mysql-5.1.49-linux-i686-glibc23.tar.gz
-rw-r--r-- 1 root root 123M Aug 3 14:20 mysql-5.1.49-linux-i686-glibc23.tar.gz
然后放到/usr/local目录下
#cd /usr/local/
# ls
bin etc games include lib libexec mrtg mysql-5.1.49-linux-i686-glibc23.tar.gz rrdtool sbin share src

添加MySQL用户,组
# groupadd mysql
# useradd -g mysql mysql
解压MySQL
# tar -zxvf mysql-5.1.49-linux-i686-glibc23.tar.gz
建一个符号链接 /usr/local/mysql
# ln -s mysql-5.1.49-linux-i686-glibc23 mysql
# ll
total 126128
drwxr-xr-x 2 root root 4096 Aug 3 14:17 bin
drwxr-xr-x 2 root root 4096 Aug 8 2008 etc
drwxr-xr-x 2 root root 4096 Aug 8 2008 games
drwxr-xr-x 2 root root 4096 Aug 8 2008 include
drwxr-xr-x 2 root root 4096 Aug 8 2008 lib
drwxr-xr-x 2 root root 4096 Aug 8 2008 libexec
drwxr-xr-x 2 root root 4096 May 17 13:57 mrtg
lrwxrwxrwx 1 root root 31 Aug 3 14:29 mysql -> mysql-5.1.49-linux-i686-glibc23
drwxr-xr-x 13 7155 wheel 4096 Jul 11 07:53 mysql-5.1.49-linux-i686-glibc23
-rw-r--r-- 1 root root 128915887 Aug 3 14:20 mysql-5.1.49-linux-i686-glibc23.tar.gz
drwxr-xr-x 6 root root 4096 Aug 3 14:17 rrdtool
drwxr-xr-x 2 root root 4096 Aug 8 2008 sbin
drwxr-xr-x 4 root root 4096 Apr 15 18:41 share
drwxr-xr-x 2 root root 4096 Aug 8 2008 src

看下MySQL具体的目录结构
# ls mysql
bin data EXCEPTIONS-CLIENT INSTALL-BINARY man README share support-files
COPYING docs include lib mysql-test scripts sql-bench

INSTALL-BINARY 是官方的安装说明

66 The basic commands that you must execute to install and use a
67 MySQL binary distribution are:
68
69 Note
70
71 The following process assumes that you have root (administrator)
72 access to your system. Alternatively you can prefix each command
73 using the sudo (Linux) or pfexec (OpenSolaris) command.
74 shell> groupadd mysql
75 shell> useradd -g mysql mysql
76 shell> cd /usr/local
77 shell> gunzip 78 shell> ln -s full-path-to-mysql-VERSION-OS mysql
79 shell> cd mysql
80 shell> chown -R mysql .
81 shell> chgrp -R mysql .
82 shell> scripts/mysql_install_db --user=mysql
83 shell> chown -R root .
84 shell> chown -R mysql data
85 shell> bin/mysqld_safe --user=mysql &

#cd mysql
# pwd
/usr/local/mysql

修改权限

#chown -R mysql .
#chgrp -R mysql .

建立MySQL配置文件
support-files下可以看到提供了5个模板,可以根据自己的环境选择。
# ls support-files/
binary-configure magic my-medium.cnf mysql.server
config.huge.ini my-huge.cnf my-small.cnf ndb-config-2-node.ini
config.medium.ini my-innodb-heavy-4G.cnf mysqld_multi.server
config.small.ini my-large.cnf mysql-log-rotate
我这里用my-medium.cnf
# cp support-files/my-medium.cnf /etc/my.cnf

修改配置文件

# vi /etc/my.cnf

文件中添加下面一句,设置自己想要的数据目录。默认在./mysql/data下。我的数据目录设置为/data/mysql
datadir = /data/mysql

-- {该语句需要加到 [mysqld]数据区域段}
保存退出

建立数据目录
# mkdir -p /data/mysql
# chown -R mysql /data/mysql
# chgrp -R mysql /data/mysql
# ll /data
total 8
drwxr-xr-x 2 mysql mysql 4096 Aug 3 14:41 mysql

初始化
# ./scripts/mysql_install_db --user=mysql

修改权限
#chown -R root .

修改数据目录权限
# ll /data/mysql/
total 764
drwx------ 2 mysql root 4096 Aug 3 14:45 mysql
-rw-rw---- 1 mysql mysql 19079 Aug 3 14:45 mysql-bin.000001
-rw-rw---- 1 mysql mysql 722735 Aug 3 14:45 mysql-bin.000002
-rw-rw---- 1 mysql mysql 38 Aug 3 14:45 mysql-bin.index
drwx------ 2 mysql root 4096 Aug 3 14:45 test
# chown -R mysql:mysql /data/mysql/

启动MySQL
# ./bin/mysqld_safe --user=mysql &


设置MySQL密码
# ./bin/mysqladmin -u root password 123456

看看服务是否已启动
# netstat -tunlp |grep 3306
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN 5809/mysqld
# ps -ef |grep mysql
root 5707 3339 0 14:50 pts/3 00:00:00 /bin/sh ./bin/mysqld_safe --user=mysql
mysql 5809 5707 0 14:50 pts/3 00:00:00 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/data/mysql --user=mysql --log-error=/data/mysql/vbird.err --pid-file=/data/mysql/vbird.pid --socket=/tmp/mysql.sock --port=3306
root 5836 3339 0 14:54 pts/3 00:00:00 grep mysql

把MySQL加入环境变量
# echo "export PATH=$PATH:/usr/local/mysql/bin">>/etc/profile
# source /etc/profile //使环境变量生效

# echo $PATH
/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin:/usr/local/mysql/bin

把MySQL加入开机启动
#echo "/usr/local/mysql/bin/mysqld_safe --user=mysql &" >>/etc/rc.local
或者
# cp support-files/mysql.server /etc/init.d/mysqld
# chkconfig --add mysqld

重启mysql

# /etc/init.d/mysqld restart

 

# cp share/mysql/my-huge.cnf /etc/my.cnf
# cp share/mysql/mysql.server /etc/rc.d/init.d/mysqld //开机自动启动 mysql。
# chmod 755 /etc/rc.d/init.d/mysqld
# chkconfig --add mysqld
# /etc/rc.d/init.d/mysqld start           //启动 MySQL
# bin/mysqladmin -u root password "password_for_root"
# service mysqld stop               //关闭 MySQL

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to solve the problem of mysql cannot open shared library How to solve the problem of mysql cannot open shared library Mar 04, 2025 pm 04:01 PM

This article addresses MySQL's "unable to open shared library" error. The issue stems from MySQL's inability to locate necessary shared libraries (.so/.dll files). Solutions involve verifying library installation via the system's package m

Reduce the use of MySQL memory in Docker Reduce the use of MySQL memory in Docker Mar 04, 2025 pm 03:52 PM

This article explores optimizing MySQL memory usage in Docker. It discusses monitoring techniques (Docker stats, Performance Schema, external tools) and configuration strategies. These include Docker memory limits, swapping, and cgroups, alongside

How do you alter a table in MySQL using the ALTER TABLE statement? How do you alter a table in MySQL using the ALTER TABLE statement? Mar 19, 2025 pm 03:51 PM

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Run MySQl in Linux (with/without podman container with phpmyadmin) Run MySQl in Linux (with/without podman container with phpmyadmin) Mar 04, 2025 pm 03:54 PM

This article compares installing MySQL on Linux directly versus using Podman containers, with/without phpMyAdmin. It details installation steps for each method, emphasizing Podman's advantages in isolation, portability, and reproducibility, but also

What is SQLite? Comprehensive overview What is SQLite? Comprehensive overview Mar 04, 2025 pm 03:55 PM

This article provides a comprehensive overview of SQLite, a self-contained, serverless relational database. It details SQLite's advantages (simplicity, portability, ease of use) and disadvantages (concurrency limitations, scalability challenges). C

How do I configure SSL/TLS encryption for MySQL connections? How do I configure SSL/TLS encryption for MySQL connections? Mar 18, 2025 pm 12:01 PM

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Running multiple MySQL versions on MacOS: A step-by-step guide Running multiple MySQL versions on MacOS: A step-by-step guide Mar 04, 2025 pm 03:49 PM

This guide demonstrates installing and managing multiple MySQL versions on macOS using Homebrew. It emphasizes using Homebrew to isolate installations, preventing conflicts. The article details installation, starting/stopping services, and best pra

What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? What are some popular MySQL GUI tools (e.g., MySQL Workbench, phpMyAdmin)? Mar 21, 2025 pm 06:28 PM

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

See all articles