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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
IT之家
IT之家
H
Help Net Security
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The GitHub Blog
The GitHub Blog
V
V2EX
M
MIT News - Artificial intelligence
Vercel News
Vercel News
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
B
Blog RSS Feed
D
Docker
V
Visual Studio Blog
博客园 - 叶小钗
美团技术团队
S
SegmentFault 最新的问题
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

博客园 - 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