linux-centos7 安装mysql

1.下载mysql,wget安装或者官网下载 地址:https://www.mysql.com/downloads/ 如图:
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

2.tar -zxvf mysql-5.6.41 解压 重命名为mysql,拷贝到/usr/local/目录下,也可自定义位置,但是/etc/my.conf里的basedir 需指定位置为mysql的文件夹路径
3.添加组合用户:groupadd mysql和useradd -r -g mysql mysql
4.进入到mysql目录,分别执行一下命令

cd /usr/local/mysql/
chown -R mysql:mysql ./ 
 ./scripts/mysql_install_db --user=mysql #安装数据库
 chown -R root:root ./
 chown -R mysql:mysql data

5.设置开机自启动

cp support-files/mysql.server /etc/init.d/mysql
chmod +x /etc/init.d/mysql  #设置可执行权限
chkconfig --add mysql 

6.启动mysql

[root@localhost mysql]# service mysql start
Starting MySQL SUCCESS!

启动mysql时可能会报错:
1.

Starting MySQL.181013 06:46:09 mysqld_safe error: log-error set to '/var/log/mariadb/mariadb.log', however file don't exists. Create writable for user 'mysql'.

/var/log/mariadb/mariadb.log这个文件不存在或者权限问题

mkdir /var/log/mariadb
touch mariadb.log
chown -R mysql:mysql mariadb.log
[root@localhost bin]# ./mysql -uroot
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

软连接指向:

ln -s /var/lib/mysql/mysql.sock /tmp/mysql.sock

3.不能设置密码

mysqld_safe –skip-grant-tables &
 mysqladmin -uroot -p password

错误大多问题因为/etc/my.conf里配置的错误

[root@localhost mysql]# cat /etc/my.cnf
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
basedir=/usr/local/mysql #mysql安装路径
# 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=/var/log/mariadb/mariadb.log #日志
pid-file=/var/run/mariadb/mariadb.pid

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

./mysql -uroot 启动

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
4 rows in set (0.38 sec)

备注:从第2步开始,不执行2之后的步骤也可,设置密码(也不可设置),连接

[root@localhost mysql-5.6.41]# ./bin/mysqladmin -u root password "root"
Warning: Using a password on the command line interface can be insecure.
[root@localhost mysql-5.6.41]# ./bin/mysql -u root -p
Enter password: 

查看

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| test               |
+--------------------+
4 rows in set (0.00 sec)

mysql> use mysql
weixin063传染病防控宣传微信小程序系统的设计与实现+springboot后端毕业源码案例设计 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。 1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md或论文文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。 5、资源来自互联网采集,如有侵权,私聊博主删除。 6、可私信博主看论文后选择购买源代码。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值