Home Database Mysql Tutorial linux下安装mysql(实践版)_MySQL

linux下安装mysql(实践版)_MySQL

Jun 01, 2016 pm 01:01 PM

【环境及文件版本】

red hat linux v6.2

mysql linux 版 x86-x64 v5.6

【准备需要的文件】

首先去官网下载mysql的linux版本,可以针对安装的操作系统选择合适的版本。

然后将文件解压到一个目录,例如 /usr/local/中,并重命名为mysql。确保最终所有的文件在/usr/local/mysql/这个目录中,使用命令行时,也需要定位到此目录,后续的操作都是在这个目录中完成的。

 

【初始化数据库文件】

然后拷贝support-files/my-default.cnf 到 当前目录,并命名为my.cnf,并修改其中内容如下:

[mysqld]

skip-name-resolve #跳过表扫描,可以加快mysql的执行树的

lower_case_table_names=1 #表名全部使用小写

datadir=/usr/local/mysql/data/ #设定数据文件存放位置

socket=/usr/local/mysql/mysql.sock

user=mysql

character-set-server=utf8 #设定server的字符集,防止中文乱码

# Disabling symbolic-links isrecommended to prevent assorted security risks

symbolic-links=0

 

[mysqld_safe]

log-error=/usr/local/mysql/log/mysqld.log #注意,这里要手动创建一下log目录

pid-file=/usr/local/mysql/mysqld.pid

 

然后执行数据库初始化脚本文件:

./scripts/mysql_install_db --defaults-file=my.cnf #后面的参数表示使用上一步定义的my.cnf来初始化数据库。

 

等待若干秒后,可以查看 data 目录查增加了 mysql 目录以及其他文件。此时mysql自身已经初始化完成了,不过现在mysql还不是服务的形式,不能使用service xxx start 的方式启动。但可以使用./bin/mysqld_safe & 的方式启动

注:手动启动mysql 的命令:./bin/mysqld_safe & #至于为什么使用mysqld_safe,自己可以查下原因。

手动停止mysql的命令:./bin/mysqladmin –h127.0.0.1 shutdown #注意,尽量不要使用localhost,因为有时由于系统的原因,使用localhost会提示无法连接mysql。

手动停止mysql的第二种命令:pkill mysql #杀死所有名称中包含mysql的进程,干净利落 :-D

其他linux下mysql实用命令我后边会附带些。

【注册mysql为系统服务】

如果希望mysql以服务的方式启动,或者设置mysql开机启动,还需要如下步骤。

将support-files 中的mysql.server 拷贝到 /etc/rc.d/init.d/ 下,并重名为mysql (如果你不嫌mysql.server这个名字比较长的话,可以不重命名:-D ,文件名就是服务的名字)。

这是就可以使用service mysql start 来启动mysql了(如果在上一步中你不小心手动启动了mysql,这一步会提示mysql已经启动)。

当然,相应的其他命令还有 service mysql stop/restart/status 等

【设置mysql 开机启动】

此时mysql已经注册为服务了,如需开机启动,再需要两步操作。

首先将mysql加入开机启动列表:

chkconfig --add mysql

然后设置它开机启动:

chkconfig mysql on

这样mysql就会开机启动了。

如果需要关闭开机启动,可以:

chkconfig mysql off

查看mysql是否开机启动:

chkconfig --list mysql

查看mysql侦听是否在侦听端口(默认为3306):

netstat -lt | grep mysql

【mysql用户名、远程登录设置】

上面时如何安装及启动mysql,mysql在初次安装后,还需要设置用户名、密码、及远程登录等。

mysql默认情况下,只有root用户,且密码为空,不允许本机以为其他机器登录。如需设置给root设置一个密码,且允许其远程登录,需要这样操作。

 

首先在mysql安装的机器登录mysql:

mysql -uroot -h127.0.0.1

然后执行如下命令:

grant all privilegeson *.* to root@’%’ identified by ‘12345678’;

如果不需要设置密码,后面的identified by ‘12345678’ 可以省略。

这样,就可以在使用navicat等工具远程连接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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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 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.

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]

How do you handle large datasets in MySQL? How do you handle large datasets in MySQL? Mar 21, 2025 pm 12:15 PM

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

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]

How do you drop a table in MySQL using the DROP TABLE statement? How do you drop a table in MySQL using the DROP TABLE statement? Mar 19, 2025 pm 03:52 PM

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

How do you create indexes on JSON columns? How do you create indexes on JSON columns? Mar 21, 2025 pm 12:13 PM

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

How do you represent relationships using foreign keys? How do you represent relationships using foreign keys? Mar 19, 2025 pm 03:48 PM

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)? How do I secure MySQL against common vulnerabilities (SQL injection, brute-force attacks)? Mar 18, 2025 pm 12:00 PM

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)

See all articles