fedora23上安装和运行MySQL server (MySQL 已经被MariaDB取代)
- [root@localhost kemin]# dnf install mysql-server
- Fedora 23 - x86_64 - Updates 1.4 MB/s | 15 MB 00:11
- Last metadata expiration check performed 0:00:04 ago on Fri Dec 25 18:36:32 2015.
- Dependencies resolved.
- ==============================================================================================================================================
- Package Arch Version Repository Size
- ==============================================================================================================================================
- Installing:
- mariadb-errmsg x86_64 1:10.0.21-1.fc23 updates 199 k
- mariadb-libs x86_64 1:10.0.21-1.fc23 updates 637 k
- mariadb-server x86_64 1:10.0.21-1.fc23 updates 18 M
- perl-DBD-MySQL x86_64 4.033-1.fc23 updates 153 k
- perl-DBI x86_64 1.633-6.fc23 fedora 727 k
- perl-Math-BigInt noarch 1.9997-350.fc23 updates 188 k
- Transaction Summary
- ==============================================================================================================================================
- Install 6 Packages
- Total download size: 20 M
- Installed size: 94 M
- Is this ok [y/N]: y
- Downloading Packages:
- (1/6): mariadb-errmsg-10.0.21-1.fc23.x86_64.rpm 134 kB/s | 199 kB 00:01
- (2/6): perl-DBD-MySQL-4.033-1.fc23.x86_64.rpm 145 kB/s | 153 kB 00:01
- (3/6): perl-DBI-1.633-6.fc23.x86_64.rpm 212 kB/s | 727 kB 00:03
- [MIRROR] perl-Math-BigInt-1.9997-350.fc23.noarch.rpm: Curl error (28): Timeout was reached for ftp://mirrors.ustc.edu.cn/fedora/linux/updates/23/x86_64/p/perl-Math-BigInt-1.9997-350.fc23.noarch.rpm []
- (4/6): mariadb-libs-10.0.21-1.fc23.x86_64.rpm 438 kB/s | 637 kB 00:01
- (5/6): perl-Math-BigInt-1.9997-350.fc23.noarch.rpm 243 kB/s | 188 kB 00:00
- (6/6): mariadb-server-10.0.21-1.fc23.x86_64.rpm 1.3 MB/s | 18 MB 00:14
- ----------------------------------------------------------------------------------------------------------------------------------------------
- Total 1.2 MB/s | 20 MB 00:17
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Installing : perl-Math-BigInt-1.9997-350.fc23.noarch 1/6
- Installing : perl-DBI-1.633-6.fc23.x86_64 2/6
- Installing : mariadb-libs-1:10.0.21-1.fc23.x86_64 3/6
- Installing : perl-DBD-MySQL-4.033-1.fc23.x86_64 4/6
- Installing : mariadb-errmsg-1:10.0.21-1.fc23.x86_64 5/6
- Installing : mariadb-server-1:10.0.21-1.fc23.x86_64 6/6
- Verifying : mariadb-server-1:10.0.21-1.fc23.x86_64 1/6
- Verifying : perl-DBI-1.633-6.fc23.x86_64 2/6
- Verifying : mariadb-errmsg-1:10.0.21-1.fc23.x86_64 3/6
- Verifying : perl-DBD-MySQL-4.033-1.fc23.x86_64 4/6
- Verifying : mariadb-libs-1:10.0.21-1.fc23.x86_64 5/6
- Verifying : perl-Math-BigInt-1.9997-350.fc23.noarch 6/6
- Installed:
- mariadb-errmsg.x86_64 1:10.0.21-1.fc23 mariadb-libs.x86_64 1:10.0.21-1.fc23 mariadb-server.x86_64 1:10.0.21-1.fc23
- perl-DBD-MySQL.x86_64 4.033-1.fc23 perl-DBI.x86_64 1.633-6.fc23 perl-Math-BigInt.noarch 1.9997-350.fc23
- Complete!
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- [root@localhost kemin]# systemctl start mariadb.service
- [root@localhost kemin]# systemctl enable mariadb.service
- Created symlink from /etc/systemd/system/multi-user.target.wants/mariadb.service to /usr/lib/systemd/system/mariadb.service.
- [root@localhost kemin]# mysql_secure_installation
- NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
- SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
- In order to log into MariaDB to secure it, we'll need the current
- password for the root user. If you've just installed MariaDB, and
- you haven't set the root password yet, the password will be blank,
- so you should just press enter here.
- Enter current password for root (enter for none):
- ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
- Setting the root password ensures that nobody can log into the MariaDB
- root user without the proper authorisation.
- Set root password? [Y/n] Y
- New password:
- Re-enter new password:
- Password updated successfully!
- Reloading privilege tables..
- ... Success!
- By default, a MariaDB installation has an anonymous user, allowing anyone
- to log into MariaDB 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? [Y/n] y
- ... Success!
- Normally, root should only be allowed to connect from 'localhost'. This
- ensures that someone cannot guess at the root password from the network.
- Disallow root login remotely? [Y/n] y
- ... Success!
- By default, MariaDB 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.
- Remove test database and access to it? [Y/n] y
- - Dropping test database...
- ... Success!
- - Removing privileges on test database...
- ... Success!
- Reloading the privilege tables will ensure that all changes made so far
- will take effect immediately.
- Reload privilege tables now? [Y/n] y
- ... Success!
- Cleaning up...
- All done! If you've completed all of the above steps, your MariaDB
- installation should now be secure.
- Thanks for using MariaDB!
- [root@localhost kemin]#
fedora23上安装和运行MySQL server (MySQL 已经被MariaDB取代)的更多相关文章
- 在 Linux 实例上自动安装并运行 VNC Server
原文网址:https://help.aliyun.com/knowledge_detail/41181.html?spm=5176.8208715.110.11.4c184ae8mlC7Yy 您可以使 ...
- centos6.5上安装5.7版本的mysql
centos6.5上安装5.7版本的mysql https://www.cnblogs.com/lzj0218/p/5724446.html 设置root可以在本机以外的机器访问 mysql -uro ...
- (转载)WindowsXP上安装和运行神器SqlMap的步骤
在Windows XP上安装和运行SqlMap的步骤…… 1.首先下载SqlMap 点击下载. https://codeload.github.com/sqlmapproject/sqlmap/leg ...
- DB 查询分析器 6.03 在Windows 8 上安装与运行演示
DB 查询分析器 6.03 在Windows 8 上安装与运行演示 马根峰 ( 广东联合电子服务股份有限公司, 广州 510300) 摘要 ...
- Mac上安装PHP、Apache、MySQL
Mac自带php5.6版本,要升级到php7.3 步骤如下 1,brew 安装php ,如果没有安装,访问https://brew.sh/index_zh-cn安装在终端输入以下内容,不用指定安装ph ...
- 解决Navicat 出错:1130-host . is not allowed to connect to this MySql server,MySQL
1. 改表法. 可能是你的帐号不允许从远程登陆,只能在localhost.这个时候只要在localhost的那台电脑,登入MySQL后,更改 "mysql" 数据库里的 " ...
- HOSt ip is not allowed to connect to this MySql server, MYSQL添加远程用户或允许远程访问三种方法
HOSt ip is not allowed to connect to this MySql server 报错:1130-host ... is not allowed to connect to ...
- 解决Navicat 报错:1130-host ... is not allowed to connect to this MySql server,MySQL不允许从远程访问的方法
1. 改表法. 可能是你的帐号不允许从远程登陆,只能在localhost.这个时候只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库里的 " ...
- Android 手机上安装并运行 Ubuntu 12.04
ubuntu.sh脚本的原地址变动了,导致下载不了,现在更新了网盘地址.小技巧:遇到一些下载失效的时候可以试一试p2p下载工具(如 easyMule.迅雷等)试一试,说不定有人分享过~* —————— ...
随机推荐
- thinkphp rpc
RPC(Remote Procedure Call Protocol)——远程过程调用协议,它是一种通过网络从远程计算机程序上请求服务,而不需要了解底层网络技术的协议.RPC协议假定某些传输协议的存在 ...
- PHP ftp_nlist() 函数
「大理石平台维修」大理石平台维修完后需要怎么处理? 定义和用法 ftp_nlist() 函数返回 FTP 服务器上指定目录的文件列表. 如果成功,则返回指定目录下的文件名组成的数组.如果失败,则返回 ...
- AcWing 156. 矩阵 (哈希二维转一维查询)打卡
给定一个M行N列的01矩阵(只包含数字0或1的矩阵),再执行Q次询问,每次询问给出一个A行B列的01矩阵,求该矩阵是否在原矩阵中出现过. 输入格式 第一行四个整数M,N,A,B. 接下来一个M行N列的 ...
- jmeter基本问题
jmetet加压的时候不用图像界面(GUI),直接在命令行加压(命令行生成一个report-命令行参数),不做断言,不加监听器--不然会很卡: 进入就meter命令行: 后置处理器可以从HTML页面拿 ...
- 51nod-1515 明辨是非——并查集
给n组操作,每组操作形式为x y p. 当p为1时,如果第x变量和第y个变量可以相等,则输出YES,并限制他们相等:否则输出NO,并忽略此次操作. 当p为0时,如果第x变量和第y个变量可以不相等,则输 ...
- Linux之mysql-redis-python使用
1. rpm包使用 1. 光盘挂载 mount /dev/cdrom /mnt cd /mnt ls 2. 安装rpm包 rpm -ivh vsftpd-3.0.2-22.el7.x86_64.rpm ...
- Dubbo入门到精通学习笔记(一):Dubbo对传统工程进行改造、注册中心安装(Zookeeper-3.4.6)、工程结构优化
文章目录 改造思路 样例工程:传统的单工程项目(edu-demo) 模型结构 思路 改成dubbo调用方式后的工程结构 部署环境规划 改造 愚公移山 迁移包 迁移页面: 迁移配置相关 新项目的主要作用 ...
- CSP2019总结
CSP2019总结 前言 赛前停课集训了两个星期,自认为已经准备充分了,结果... 不知道有没有写挂分,即使一分没挂,满打满算也只有400出头,还是太菜了. Day0 晚上复习了一会,打了会游戏就睡了 ...
- cesium相关学习网址
cesium相关学习网址: cesium资料大全网址:https://www.cnblogs.com/cesium1/p/10062942.html http://192.168.101. ...
- DQL 数据查询语言 IS (information_schema)
3.information_schema 统计信息库 1.介绍: 视图 1.安全: 只允许查询,不知道操作的对象是谁. 2.方便: 只需要简单的select语句即可使用. 2.作用: 1.方便我们做数 ...