mysql源码linux环境部署

2023-12-13 05:01:23



提示:以下是本篇文章正文内容,下面案例可供参考

一、mysql下载地址

https://downloads.mysql.com/archives/community/
在这里插入图片描述

二、安装步骤

1.cd /usr/local/ #切换到此目录下

2.上传mysql安装包到该目录下

在这里插入图片描述

3.解压并且移动文件到 /usr/local/mysql目录下

在这里插入图片描述

三、创建用户组,分配权限

1 、创建:
1.1、用户:
groupadd mysql
1.2、用户组:
useradd -g mysql mysql
1.3、进入MySQL
cd mysql

2、修改用户和用户组:
chown -R mysql:mysql /usr/local/mysql/
在这里插入图片描述

3、初始化数据库
./bin/mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data
在这里插入图片描述

4、把权限在修改回去并保留 “data”
chown -R root .
chown -R mysql data/
在这里插入图片描述

四、修改文件

1、复制 'support-files/mysql.server' 到 'etc/init.d/'目录下并改名'mysqld'
 cp support-files/mysql.server /etc/init.d/mysqld

在这里插入图片描述
查看该目录下是否有mysqld文件了
在这里插入图片描述
2、将 "mysql/bin/my_print_defaults"复制到 "usr/bin"目录下
cp bin/my_print_defaults /usr/bin/
在这里插入图片描述
在这里插入图片描述
3.修改 “vim /etc/init.d/mysqld” 文件添加端口号
vim /etc/init.d/mysqld
basedir=/usr/local/mysql/
datadir=/usr/local/musql/data/
port=3306 #(自己添加上去)
#修改好了之后保存退出

在这里插入图片描述
vim /etc/my.cnf
在这里插入图片描述

[mysqld]
basedir=/usr/local/mysql/
datadir=/usr/local/mysql/data/
socket=/tmp/mysql.sock
user=mysql
tmpdir=/tmp/
# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0
# Settings user and group are ignored when systemd is used.
# If you need to run mysqld under a different user or group,
# customize your systemd unit file for mariadb according to the
# instructions in http://fedoraproject.org/wiki/Systemd

[mysqld_safe]
log-error=/usr/local/mysql/data/error.log
pid-file=/usr/local/mysql/mysql.pid

#
# include all files from the config directory
#
!includedir /etc/my.cnf.d

5、全局修改 “vim /etc/profile” 添加到最后一行
#打开文件:
vim /etc/profile
添加到最后一行 保存
export PATH=$PATH:/usr/local/mysql/bin/
#启动文件
source /etc/profile
在这里插入图片描述
6、启动MySQL登录并修改密码:
#启动文件
source /etc/profile
#开启MySQL
service mysqld start
mysql -uroot -p
Enter password: 密码
use mysql;
update user set host=‘%’ where user=‘root’ and host=‘localhost’;
commit;
// 允许远程访问
GRANT ALL ON . TO ‘root’@‘%’ IDENTIFIED BY ‘123456’ WITH GRANT OPTION;
#修改密码:(必须修改密码)
ALTER USER ‘root’@‘localhost’ IDENTIFIED BY ‘jsf_manage!’ PASSWORD EXPIRE NEVER;
FLUSH PRIVILEGES;
#退出
exit
在这里插入图片描述
完成部署!!!


总结

人生物语:爱情不是花前月下的甜言,不是桃花源中的蜜语,不是轻绵的眼泪,更不是死硬的强迫,爱情是建立在共同信任的基础上的。

文章来源:https://blog.csdn.net/weixin_45982841/article/details/134824904
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。