惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
雷峰网
雷峰网
博客园 - 叶小钗
V
V2EX
博客园 - Franky
博客园_首页
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
Blog — PlanetScale
Blog — PlanetScale
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
S
SegmentFault 最新的问题
B
Blog RSS Feed
博客园 - 【当耐特】
D
Docker
N
Netflix TechBlog - Medium

博客园 - zengxinle

家用电路常用空气开关与漏电开关 https://www.aminer.cn/ AI研究 MYSQL 的一些文件及说明 Windows下移动MariaDB数据目录 (转!) MariaDB Galera Cluster 10.1 只支持 LINUX ?! “命令行程序”的通用图形界面 (转) 上海力软--快速开发框架 康力优蓝机器人 -- 优友U05类人型机器人发布 日本超人气洛比(Robi)声控机器人 Nao 类人机器人 相关资料 Nao 类人机器人,Aldebaran Robotics公司 靠谱助手 http://www.kpzs.com/ PASCAL 的开源工具 !!! # @ --- ODATA 云驱动 --- 数据库发布 RESTFUL API NPD南京炮苑电子技术研究所----NPD治疗仪 Dropwizard - 开发Java RESTful Web服务(转) 北京同有飞骥科技股份有限公司 ---- 信息存储 沈阳市御清泉酒厂-----御清泉 鹤山市五泉酒厂 (“侨乡情”酒 ) 泥鳅、黄鳝有关技术。
MARIADB 在 OPENSUSE 的安装。
zengxinle · 2016-01-18 · via 博客园 - zengxinle

1、MARIADB  在 OPENSUSE  的安装或者升级  (参考 Setting up MariaDB Repositories )

      OPENSUSE 从 12.3 版本开始,默认带有 MARIADB,但版本较老。下列办法帮助升级MARIADB官方 的最新版本。

 参考:  https://downloads.mariadb.org/mariadb/repositories/#mirror=qiming&distro_release=opensuse13-amd64--opensuse13&distro=openSUSE&version=10.1

     To generate the entries select an item from each of the boxes below. Once an item is selected in each box, your customized repository configuration will appear below.

1. Choose a Distro

  • openSUSE
  • Arch Linux
  • Mageia
  • Fedora
  • CentOS
  • RedHat
  • Mint
  • Ubuntu
  • Debian

2. Choose a Release

  • openSUSE 13 (64-bit)

3. Choose a Version(MARIADB)

  • 10.1
  • 10.0
  • 5.5

openSUSE includes MariaDB in their repositories. To install MariaDB, simply issue the following command in a terminal:

zypper install mariadb

We also offer repositories for openSUSE. For openSUSE, copy and paste the following into a file under /etc/zypp/repos.d/ (we suggest naming the file mariadb.repo or something similar).

# MariaDB 10.1 openSUSE repository list - created 2016-01-18 04:56 UTC

# http://mariadb.org/mariadb/repositories/

[mariadb]

name = MariaDB

baseurl = http://yum.mariadb.org/10.1/opensuse13-amd64

gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB

gpgcheck=1

Once the file is in place, install MariaDB with:

zypper install MariaDB-server MariaDB-client

The first time you install you will be prompted to accept the MariaDB signing key. The id of this key is: 'CBCB082A1BB943DB'. Accept it to continue.

You will also be prompted about a conflict between openSUSE's own MariaDB 5.5 client package and the MariaDB client package. Choose the solution that does not install the mariadb-client-5.5.* package. MariaDB packages from mariadb.org are named like MariaDB-server and MariaDB-client, MariaDB packages in the openSUSE repositories are named like mariadb-server, mariadb-client.

After the installation finishes, start MariaDB with:

sudo service mysql start