您当前的位置:首页 > 电脑百科 > 数据库 > MYSQL

ubuntu18.04中Mysql5.7数据库安装及远程登录

时间:2021-07-05 17:49:06  来源:  作者:爱玩的安哥

安装MySQL

sudo apt-get update
sudo apt-get install mysql-server

输出:

Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
  mysql-server
0 upgraded, 1 newly installed, 0 to remove and 64 not upgraded.
Need to get 9,948 B of archives.
After this operation, 111 kB of additional disk space will be used.
Get:1 http://mirrors.ustc.edu.cn/ubuntu bionic-updates/main amd64 mysql-server all 5.7.34-0ubuntu0.18.04.1 [9,948 B]
Fetched 9,948 B in 0s (139 kB/s)
Selecting previously unselected package mysql-server.
(Reading database ... 110437 files and directories currently installed.)
Preparing to unpack .../mysql-server_5.7.34-0ubuntu0.18.04.1_all.deb ...
Unpacking mysql-server (5.7.34-0ubuntu0.18.04.1) ...
Setting up mysql-server (5.7.34-0ubuntu0.18.04.1) ...

初始化配置

sudo mysql_secure_installation

其它都可以回车,需要输入password的时候输入两次,这个是root密码。

Securing the MySQL server deployment.
Connecting to MySQL using a blank password.
# 检测密码插件,可以增加安全性,一般学习时不需要。
VALIDATE PASSWORD PLUGIN can be used to test passwords and improve security. It checks the strength of password and allows the users to set only those passwords which are secure enough. Would you like to setup VALIDATE PASSWORD plugin?
Press y|Y for Yes, any other key for No:

# 请在此设置root密码
Please set the password for root here.
New password:
Re-enter new password:


By default, a MySQL installation has an anonymous user,allowing anyone to log into MySQL without having to have a user account created for them. This is intended only for testing, and to make the installation go a bit smoother. You should remove them before moving into a production environment.

# 是否移除匿名用户?
Remove anonymous users? (Press y|Y for Yes, any other key for No) :
 ... skipping.
Normally, root should only be allowed to connect from 'localhost'. This ensures that someone cannot guess at the root password from the network.
# 不允许root远程登录?
Disallow root login remotely? (Press y|Y for Yes, any other key for No) :
 ... skipping.
 
By default, MySQL comes with a database named 'test' that anyone can access. This is also intended only for testing, and should be removed before moving into a production environment.

# 移除test数据库并访问?
Remove test database and access to it? (Press y|Y for Yes, any other key for No) :
 ... skipping.
Reloading the privilege tables will ensure that all changes made so far will take effect immediately. Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
Success.
All done!

检查mysql服务状态

systemctl status mysql.service
# 或者
sudo service mysql status

正常显示:

● mysql.service - MySQL Community Server
   Loaded: loaded (/lib/systemd/system/mysql.service; enabled; vendor preset: enabled)
   Active: active (running) since Mon 2021-07-05 03:31:45 UTC; 2min 37s ago
 Main PID: 47667 (mysqld)
    Tasks: 28 (limit: 4629)
   CGroup: /system.slice/mysql.service
           └─47667 /usr/sbin/mysqld --daemonize --pid-file=/run/mysqld/mysqld.pid
Jul 05 03:31:44 begin_server systemd[1]: Starting MySQL Community Server...
Jul 05 03:31:45 begin_server systemd[1]: Started MySQL Community Server.

修改mysql配置

sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf

注释掉bind_address = 127.0.0.1。

ubuntu18.04中Mysql5.7数据库安装及远程登录

 

登录mysql

得用sudo, 输入你刚才设定的密码。

sudo mysql -r root -p

进入后创建数据库并添加用户及极限,study@"%"表示用户名为study, 且可以从任何地方访问,123是密码。

##1 创建数据库beginner
create database beginner;
##2 创建用户study(密码123) 并赋予其beginner数据库的所有权限
GRANT ALL PRIVILEGES ON beginner.* TO study@"%"IDENTIFIED BY "123";
##3 刷新权限
flush privileges;

通过navicat远程连接数据库

端口默认就是3306, IP地址是我内部局域网的虚拟机192.168.1.8。

ubuntu18.04中Mysql5.7数据库安装及远程登录

 

连接信息:

ubuntu18.04中Mysql5.7数据库安装及远程登录

 

通过SQLYog远程登录

ubuntu18.04中Mysql5.7数据库安装及远程登录

 



Tags:Mysql5.7   点击:()  评论:()
声明:本站部分内容及图片来自互联网,转载是出于传递更多信息之目的,内容观点仅代表作者本人,如有任何标注错误或版权侵犯请与我们联系(Email:2595517585@qq.com),我们将及时更正、删除,谢谢。
▌相关推荐
搭建的环境1主1从:Mysql_1作为主服务器ip:192.168.254.129,Mysql_2作为从服务器ip:192.168.254.130首先准备好2台安装好Mysql5.7的服务器,安装过程可以查看这个链接:https://www.d...【详细内容】
2021-09-06  Tags: Mysql5.7  点击:(49)  评论:(0)  加入收藏
安装mysqlsudo apt-get updatesudo apt-get install mysql-server输出:Reading package lists... DoneBuilding dependency treeReading state information... DoneThe follo...【详细内容】
2021-07-05  Tags: Mysql5.7  点击:(88)  评论:(0)  加入收藏
前置工作-更换yum源1)打开 mirrors.aliyun.com,选择centos的系统,点击帮助2)执行命令:yum install wget -y3)改变某些文件的名称mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.r...【详细内容】
2021-04-20  Tags: Mysql5.7  点击:(134)  评论:(0)  加入收藏
CentOS7下yum方式安装MySQL5.7数据库之前有介绍CentOS6下安装MySQL5.7.25二进制版本,不过有时为了方便,采用yum方式快速搭建MySQL数据库,下面简单介绍具体步骤1、配置mysql的yu...【详细内容】
2021-03-11  Tags: Mysql5.7  点击:(187)  评论:(0)  加入收藏
啰嗦的话,不多说,我们直接开始部署,我相信有点linux基础的人都能看得懂。Mysql5.7.22主从部署,既然是主从那肯定是需要至少2台服务器了,2台的安装都是一样的,请看下面!1、 创建mysq...【详细内容】
2021-01-11  Tags: Mysql5.7  点击:(127)  评论:(0)  加入收藏
对于多台服务器安装mysql数据库,采用手工安装,是非常繁琐的,如果采取脚本批量安装,就非常的方便了,具体操作方法如下:创建目录mkdir -p /appsmkdir -p /data 上传安装包 上传执行...【详细内容】
2021-01-08  Tags: Mysql5.7  点击:(189)  评论:(0)  加入收藏
前言在操作系统为centos的生产环境服务器需要进行等保2.0评测,使用绿盟科技的扫描软件扫描后检测出一大批漏洞,因此需要进行漏洞修复虽然报告中有一大堆的漏洞,但是细分下来分...【详细内容】
2020-09-25  Tags: Mysql5.7  点击:(265)  评论:(0)  加入收藏
系统:Redhat Linux 7.7MySQL版本:5.71. MySQL下载o 登录网站:https://dev.mysql.com/downloads/mysql/o 选择合适版本与系统 Select version:5.7.31 Select operating system:Red...【详细内容】
2020-09-18  Tags: Mysql5.7  点击:(97)  评论:(0)  加入收藏
​本文参考华为鲲鹏社区相关文档完成https://www.huaweicloud.com/kunpeng/系统为aarch64位的CentOS AltArch系统 1、准备如下cmake gcc相关源码包cmakehttps://cmake.org/...【详细内容】
2020-07-19  Tags: Mysql5.7  点击:(140)  评论:(0)  加入收藏
无聊想给博客搞一个自动发布文章功能,自动发布方式有很多种,一般采用计划任务的比较多,一次看到mysql的事件调度,于是想就在mysql数据库中进行定时任务自动修改要发布的文章就可...【详细内容】
2020-06-05  Tags: Mysql5.7  点击:(55)  评论:(0)  加入收藏
▌简易百科推荐
作者:雷文霆 爱可生华东交付服务部 DBA 成员,主要负责Mysql故障处理及相关技术支持。爱好看书,电影。座右铭,每一个不曾起舞的日子,都是对生命的辜负。 本文来源:原创投稿 *爱可生...【详细内容】
2021-12-24  爱可生    Tags:MySQL   点击:(6)  评论:(0)  加入收藏
生成间隙(gap)锁、临键(next-key)锁的前提条件 是在 RR 隔离级别下。有关Mysql记录锁、间隙(gap)锁、临键锁(next-key)锁的一些理论知识之前有写过,详细内容可以看这篇文章...【详细内容】
2021-12-14  python数据分析    Tags:MySQL记录锁   点击:(17)  评论:(0)  加入收藏
binlog 基本认识 MySQL的二进制日志可以说是MySQL最重要的日志了,它记录了所有的DDL和DML(除了数据查询语句)语句,以事件形式记录,还包含语句所执行的消耗的时间,MySQL的二...【详细内容】
2021-12-14  linux上的码农    Tags:mysql   点击:(13)  评论:(0)  加入收藏
为查询优化你的查询 大多数的MySQL服务器都开启了查询缓存。这是提高性最有效的方法之一,而且这是被MySQL的数据库引擎处理的。当有很多相同的查询被执行了多次的时候,这些查...【详细内容】
2021-12-09  元宇宙iwemeta    Tags:mysql   点击:(15)  评论:(0)  加入收藏
测试的目的和原因,公司有很多程序员,每个程序员对数据库和表结构都有自己的理解。而且每个程序员的理解往往是以效率考虑。既然都是为了效率考虑,那么我就来测试一下究竟哪种使...【详细内容】
2021-12-08  吴彬的分享    Tags:Mysql数据库   点击:(14)  评论:(0)  加入收藏
当你们考虑项目并发的时候,我在部署环境,当你们在纠结使用ArrayList还是LinkedArrayList的时候,我还是在部署环境。所以啊,技术不止境,我在部环境。今天这篇文章缕一下在同一台服...【详细内容】
2021-12-08  秃头码哥    Tags:MySQL数据库   点击:(16)  评论:(0)  加入收藏
对于数据分析来说,MySQL使用最多的是查询,比如对数据进行排序、分组、去重、汇总及字符串匹配等,如果查询的数据涉及多个表,还需要要对表进行连接,本文就来说说MySQL中常用的查询...【详细内容】
2021-12-06  笨鸟学数据分析    Tags:MySQL   点击:(19)  评论:(0)  加入收藏
在学习SQL语句之前,首先需要区分几个概念,我们常说的数据库是指数据库软件,例如MySQL、Oracle、SQL Server等,而本文提到的数据库是指数据库软件中的一个个用于存储数据的容器。...【详细内容】
2021-11-24  笨鸟学数据分析    Tags:SQL语句   点击:(23)  评论:(0)  加入收藏
概述以前参加过一个库存系统,由于其业务复杂性,搞了很多个应用来支撑。这样的话一份库存数据就有可能同时有多个应用来修改库存数据。比如说,有定时任务域xx.cron,和SystemA域...【详细内容】
2021-11-05  Java云海    Tags:分布式锁   点击:(31)  评论:(0)  加入收藏
MySQL的进阶查询 一、 按关键字排序 使用ORDERBY语句来实现排序排序可针对一个或多个字段ASC:升序,默认排序方式 【升序是从小到大】DESC:降序 【降序是从大到小】ORDER BY的...【详细内容】
2021-11-05  Java热点    Tags:SQL语句   点击:(27)  评论:(0)  加入收藏
最新更新
栏目热门
栏目头条