centos6安装mysql并远程连接_数据库-CentOS6安装MySQL-5.7.28

说明:

本文主要记录如何在Linux服务器安装一个MySQL数据库,希望本文可以帮助到一些刚入门的童鞋。

ea310413a01f5604c1c062e16f2b7216.png

下载不需要编译的包

这里使用的操作系统是CentOS6,64位操作系统

$ wget https://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.28-linux-glibc2.12-x86_64.tar.gz

解压后放在你想要放置的位置

$ tar zxf mysql-5.7.28-linux-glibc2.12-x86_64.tar.gz$ mkdir -p ~/3rd/mysql-5.7.28$ mv mysql-5.7.28-linux-glibc2.12-x86_64/* ~/3rd/mysql-5.7.28

创建数据目录和日志目录

数据目录和日志目录可以提前创建,如:

$ cd ~/3rd/mysql-5.7.28$ ./bin/mysql_install_db --user=testerzhang --basedir=/home/testerzhang/3rd/mysql-5.7.28 --datadir=/home/testerzhang/3rd/mysql-5.7.28/data

初始化data

假设当前用户名是testerzhang,指定安装目录

2019-10-31 12:30:59 [WARNING] mysql_install_db is deprecated. Please consider switching to mysqld --initialize2019-10-31 12:31:20 [WARNING] The bootstrap log isn't empty:2019-10-31 12:31:20 [WARNING] 2019-10-31T04:30:59.852748Z 0 [Warning] --bootstrap is deprecated. Please consider using --initialize instead2019-10-31T04:30:59.853622Z 0 [Warning] Changed limits: max_open_files: 1024 (requested 5000)2019-10-31T04:30:59.853634Z 0 [Warning] Changed limits: table_open_cache: 431 (requested 2000)

日志输出

2019-10-31 12:30:59 [WARNING] mysql_install_db is deprecated. Please consider switching to mysqld --initialize2019-10-31 12:31:20 [WARNING] The bootstrap log isn't empty:2019-10-31 12:31:20 [WARNING] 2019-10-31T04:30:59.852748Z 0 [Warning] --bootstrap is deprecated. Please consider using --initialize instead2019-10-31T04:30:59.853622Z 0 [Warning] Changed limits: max_open_files: 1024 (requested 5000)2019-10-31T04:30:59.853634Z 0 [Warning] Changed limits: table_open_cache: 431 (requested 2000)

创建配置文件

$ vim bin/my.cnf [mysqld]datadir=/home/testerzhang/3rd/mysql-5.7.28/databasedir=/home/testerzhang/3rd/mysql-5.7.28socket=/home/testerzhang/3rd/mysql-5.7.28/bin/mysql.sockuser=testerzhangport=3306character-set-server=utf8#跳过密码验证,忘记密码 可以设置,然后修改密码,再关闭skip-grant-tables# Disabling symbolic-links is recommended to prevent assorted security riskssymbolic-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=/home/testerzhang/3rd/mysql-5.7.28/log/mysqld.logpid-file=/home/testerzhang/3rd/mysql-5.7.28/bin/mysqld.pid

写个启动脚本

$ cd ~/3rd/mysql-5.7.28/bin$ vim startmysql.sh ./mysqld_safe --defaults-file=./my.cnf &$ sh -x startmysql.sh 

初次设置root密码

$ mysql -h127.0.0.1 -P3306 -uroot -p   Enter password: Welcome to the MySQL monitor.  Commands end with ; or g.Your MySQL connection id is 2Server version: 5.7.28 MySQL Community Server (GPL)Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.mysql> use mysql;Reading table information for completion of table and column namesYou can turn off this feature to get a quicker startup with -ADatabase changedmysql> update user set authentication_string=password('具体密码') where user='root';        Query OK, 1 row affected, 1 warning (0.00 sec)Rows matched: 1  Changed: 1  Warnings: 1mysql> flush privileges;Query OK, 0 rows affected (0.01 sec)mysql> exitBye

修改密码后用密码登录再次设置root密码

mysql> use mysqlERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement.mysql> alter user 'root'@'localhost' identified by '具体密码';Query OK, 0 rows affected (0.00 sec)

设置root可以远程被连接(此步可以不做)

mysql> use mysqlmysql> update user set host='%' where user = 'root';mysql> flush privileges;mysql> exit;

创建普通用户

如创建一个test用户,密码为test123,可以进行远程登录:

mysql>grant all privileges on test.* to 'test'@'%' identified by 'test123';
16431f71de38633337ba7dcf16eac759.png
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值