Linux-6.5下基于cmake28来编译安装mysql服务配置解析_MySQL
下面是安装部署的实现:
一、安装cmake28


二、编译安装mysql-5.5.33及介绍:1、编译参数介绍:1).指定安装文件的安装路径时常用的选项:



3).若要明确指定不编译某存储引擎,可以使用类似如下的选项:







2、编译安装MySQL:2.1 创建MySQL用户:


2.2.1 创建分区:




点击(此处)折叠或打开
- [root@station76 ~]# echo "/dev/mydata/mysqldata /data ext4 defaults,noatime 0 0" >> /etc/fstab2.2.4 先创建mysql数据目录、自动挂载:
2.2.5 先创建目录:赋予相应权限:
2.3 安装MySQL:2.3.1 解压mysql且编译安装:
同上:点击(此处)折叠或打开
- [root@station76 mysql-5.5.33]# cmake28 . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_DATADIR=/mydata/data -DSYSCONFDIR=/etc -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_ARCHIVE_STORAGE_ENGINE=1 -DWITH_BLACKHOLE_STORAGE_ENGINE=1 -DWITH_READLINE=1 -DWITH_SSL=system -DWITH_ZLIB=system /-DWITH_LIBWRAP=0 -DMYSQL_UNIX_ADDR=/tmp/mysql.sock -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci
- [root@station76 mysql-5.5.33]# make
- [root@station76 mysql-5.5.33]# make install
三、修改MySQL相关属性:1、修改其属组和属主2、初始化mysql:
3、查看初始化后生成的文件:
4、提供配置文件脚本:
5、加入服务列表,开机自启动:
6、提供mysqld配置文件:
7、编辑配置文件,指定数据位置:
8、mysql的客户端工具:(默认启用的是mysqld_safe:)
9、启动mysqld服务:
10、查看端口状态:11、mysqld的路径环境变量:
12、导出man,库、头文件:12.1 库文件导出:
12.2 头文件不用导出,这个版本的没有;
12.3 man手册文件导出?
四、 配置初次连入MySQL的环境。1、连接mysql:2、查看匿名用户:
3、删除匿名用户:
4、查看是否已经删除:
5、给root用户设定密码:
第一种: 设定一个root的密码.6、给全部root用户加上密码.
第二种: 设定MySQL的root的所有用户密码.
7、个人建议使用第二种修改密码.
OK!!!
- [root@station76 mysql-5.5.33]# cmake28 . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_DATADIR=/mydata/data -DSYSCONFDIR=/etc -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_ARCHIVE_STORAGE_ENGINE=1 -DWITH_BLACKHOLE_STORAGE_ENGINE=1 -DWITH_READLINE=1 -DWITH_SSL=system -DWITH_ZLIB=system /-DWITH_LIBWRAP=0 -DMYSQL_UNIX_ADDR=/tmp/mysql.sock -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



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

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]

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

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

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.

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

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.

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