<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>系统运维 &#187; MariaDB</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/mariadb/feed" rel="self" type="application/rss+xml" />
	<link>https://www.osyunwei.com</link>
	<description>国产化OS/AnolisOS/openEuler/RHEL/CentOS/Rocky Linux/Debian/Ubuntu Linux FreeBSD 服务器教程 &#124; Windows Server 2003/2008/2012/2016/2019/2022/2025服务器教程</description>
	<lastBuildDate>Tue, 14 Apr 2026 10:59:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>RHEL 7.0安装配置LAMP服务器(Apache+PHP+MariaDB)</title>
		<link>https://www.osyunwei.com/archives/7782.html</link>
		<comments>https://www.osyunwei.com/archives/7782.html#comments</comments>
		<pubDate>Thu, 03 Jul 2014 01:42:12 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[RHEL]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[MariaDB]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=7782</guid>
		<description><![CDATA[准备篇： RHEL 7.0系统安装配置图解教程：http://www.osyunwei.com/archives/7702.html 一、使用系统镜像文件配置本地yum源 1、使用WinSCP.exe等工具上传系统镜像文件rhel-server-7.0-x86_64-dvd.iso到/usr/local/src目录 2、使用Putty.exe工具远程连接到RHEL服务器 3、挂载系统镜像文件 mkdir /media/cdrom #新建镜像文件挂载目录 cd /usr/local/src #进入系统镜像文件存放目录 ls #列出目录文件，可以看到刚刚上传的系统镜像文件 mount -t iso9660 -o loop /usr/local/src/rhel-server-7.0-x86_64-dvd.iso /media/cdrom #挂载系统镜像 cd /media/cdrom #进入挂载目录，使用ls命令可以看到已经有文件存在了 备注：umount /media/cdrom #卸载系统镜像 4、设置开机自动挂载系统镜像文件 vi /etc/fstab #添加以下代码。实现开机自动挂载 /usr/local/src/rhel-server-7.0-x86_64-dvd.iso /media/cdrom iso9660 defaults,ro,loop 0 0 :wq! #保存退出 备注：iso9660使用df -T 查看 5、配置本地yum源 cd /etc/yum.repos.d/ #进入yum配置目录 touch rhel-media.repo #建立yum配置文件 vi rhel-media.repo #编辑配置文件，添加以下内容 [rhel-media] [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/7782.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/7782.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下编译安装配置MariaDB数据库</title>
		<link>https://www.osyunwei.com/archives/7055.html</link>
		<comments>https://www.osyunwei.com/archives/7055.html#comments</comments>
		<pubDate>Sun, 17 Nov 2013 15:16:56 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[Linux安装MariaDB]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=7055</guid>
		<description><![CDATA[说明： 操作系统：CentOS 5.10 32位 MariaDB版本：mariadb-5.5.33a MariaDB数据库存放目录：/data/mysql 准备篇： 一、配置好IP、DNS 、网关，确保使用远程连接工具能够连接服务器，服务器yum命令可以正常使用 二、配置防火墙，开启3306端口 vi /etc/sysconfig/iptables  #编辑 -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT  #允许3306端口通过防火墙 特别提示：很多网友把这两条规则添加到防火墙配置的最后一行，导致防火墙启动失败，正确的应该是添加到默认的22端口这条规则的下面 添加好之后防火墙规则如下所示： ********************************************************************************** # Firewall configuration written by system-config-securitylevel # Manual customization of this file is not recommended. *filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/7055.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/7055.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows下MariaDB数据库安装图解教程</title>
		<link>https://www.osyunwei.com/archives/6988.html</link>
		<comments>https://www.osyunwei.com/archives/6988.html#comments</comments>
		<pubDate>Fri, 08 Nov 2013 04:48:58 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[MariaDB]]></category>
		<category><![CDATA[MariaDB数据库]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=6988</guid>
		<description><![CDATA[说明： MariaDB是基于MySQL的开源数据库，兼容MySQL，现有的MySQL数据库可以迁移到MariaDB中使用 MariaDB下载： 32位：http://mirrors.hustunique.com/mariadb/mariadb-5.5.33a/win32-packages/mariadb-5.5.33a-win32.msi 64位：http://mirrors.scie.in/mariadb/mariadb-5.5.33a/winx64-packages/mariadb-5.5.33a-winx64.msi 操作系统：Windows Server 2003 32位 MariaDB版本：mariadb-5.5.33a（目前最新稳定版） 安装MariaDB 打开mariadb-5.5.33a-win32.msi安装文件，如下图所示 Next 勾选I accept the terms in the License Agreement 接受许可协议中的条款 Next 选择安装全部组件 点Browse...浏览，修改MariaDB安装目录 这里修改为：C:\MariaDB 5.5 Next 勾选Modify password for database user "root" 设置MariaDB数据库账号root的密码 默认不勾选 Enable access from remote machines for 禁止远程访问MariaDB数据库，只能从本地连接MariaDB 默认不勾选 Create An Anonymous Account 禁止新建匿名用户访问MariaDB 勾选 Use UTF8 as default server's [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/6988.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/6988.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
