<?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; phpmyadmin</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/phpmyadmin/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>Nginx设置alias别名目录访问phpmyadmin</title>
		<link>https://www.osyunwei.com/archives/3818.html</link>
		<comments>https://www.osyunwei.com/archives/3818.html#comments</comments>
		<pubDate>Sat, 12 May 2012 05:13:23 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[LNMP]]></category>
		<category><![CDATA[Alias]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[别名目录]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=3818</guid>
		<description><![CDATA[引言：Nginx服务器通过设置alias别名可以使特定的目录（phpmyadmin目录）不出现在网站根目录下面， 即使网站根目录被攻破，也不会影响到phpmyadmin目录里面的文件。 说明： 站点：http://192.168.21.160/，如下图 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 站点根目录：/usr/local/nginx/html/ Nginx运行账户：www Nginx运行账户组：www phpmyadmin目录：/home/phpmyadmin MySQL用户名：root 密码：123456 实现目的：通过http://192.168.21.160/phpmyadmin访问这个地址，实现对MySQL数据库的管理 操作步骤 1、下载phpmyadmin  cd /home  wget http://ncu.dl.sourceforge.net/project/phpmyadmin/phpMyAdmin/3.5.1/phpMyAdmin-3.5.1-all-languages.tar.gz    #下载 tar xvfz  phpMyAdmin-3.5.1-all-languages.tar.gz       #解压 mv   phpMyAdmin-3.5.1-all-languages  phpmyadmin       #更改文件夹名字为phpmyadmin 未修改nginx配置文件之前，访问http://192.168.21.160/phpmyadmin如下图，提示404错误，找不到文件 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 2、修改nginx配置文件 cp /usr/local/nginx/conf/nginx.conf /usr/local/nginx/conf/nginx.confbak  #备份配置文件 vi /usr/local/nginx/conf/nginx.conf  #修改配置文件，在 server {         listen       80;         server_name  localhost;         #charset koi8-r;         #access_log  logs/host.access.log  main; [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/3818.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/3818.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>phpMyAdmin“缺少 mcrypt 扩展。请检查 PHP 配置。”解决办法</title>
		<link>https://www.osyunwei.com/archives/2053.html</link>
		<comments>https://www.osyunwei.com/archives/2053.html#comments</comments>
		<pubDate>Fri, 03 Feb 2012 03:11:28 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP 配置]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[缺少 mcrypt 扩展]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=2053</guid>
		<description><![CDATA[出现问题：在安装配置phpMyAdmin管理mysql数据库的时候，打开phpMyAdmin登录页面，出现下面的错误提示：                 缺少 mcrypt 扩展。请检查 PHP 配置        解决办法：安装php-mcrypt libmcrypt libmcrypt-devel这三个库文件        系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接       下面以CentOS 6.0系统为例来为说明：（备注：以下操作均在终端命令行下进行）       1、安装第三方yum源（默认yum源里面没有这几个库文件，不能使用yum安装）           wget http://www.atomicorp.com/installers/atomic    #下载           sh ./atomic   #安装       2、使用yum命令安装           yum  install  php-mcrypt  libmcrypt  libmcrypt-devel       3、重启系统           shutdown -r now       现在打开phpMyAdmin登录页面，没有了错误提示，问题解决。（如下如所示） &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/2053.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » phpMyAdmin“缺少 mcrypt 扩展。请检查 PHP 配置。”解决办法<p><a rel="bookmark" href="https://www.osyunwei.com/archives/2053.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/2053.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>配置phpmyadmin连接远程 MySQL数据库</title>
		<link>https://www.osyunwei.com/archives/869.html</link>
		<comments>https://www.osyunwei.com/archives/869.html#comments</comments>
		<pubDate>Sat, 05 Nov 2011 04:17:40 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[phpmyadmin连接远程 MySQL]]></category>
		<category><![CDATA[配置phpmyadmin]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=869</guid>
		<description><![CDATA[引言： 1、phpmyadmin程序所在服务器：192.168.1.1，访问地址为：http://192.168.1.1/phpmyadmin 2、MySQL数据库所在服务器：192.168.1.2，已经允许数据库外链，MySQL数据库用户名：admin  密码：123456 3、现在要通过http://192.168.1.1/phpmyadmin来管理服务器192.168.1.2上面的MySQL数据库 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 操作如下： 一、下载phpmyadmin到http://192.168.1.1/phpmyadmin目录       下载地址：http://www.phpmyadmin.net/home_page/downloads.php，找到你需要的版本 例如： http://ncu.dl.sourceforge.net/project/phpmyadmin/phpMyAdmin/3.4.4/phpMyAdmin-3.4.4-all-languages.tar.gz 二、修改phpmyadmin目录中libraries文件夹下的config.default.php文件       1、查找$cfg['PmaAbsoluteUri'] ，将其值设置为http://192.168.1.1/phpmyadmin       2、查找$cfg['Servers'][$i]['host'] ， 将其值设置为192.168.1.2       3、查找$cfg['Servers'][$i]['user'] ， 将其值设置为admin       4、查找$cfg['Servers'][$i]['password'] ， 将其值设置为123456 三、配置完成，现在通过http://192.168.1.1/phpmyadmin 输入数据库用户名：admin 密码：123456 即可访问服务器192.168.1.2上面的MySQL数据库。 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 注意：MySQL数据库不能使用root账户，需要预先新建一个账户，并设置该账户可以远程连接数据库 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/869.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » 配置phpmyadmin连接远程 MySQL数据库<p><a rel="bookmark" href="https://www.osyunwei.com/archives/869.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/869.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CentOS Linux系统下Apache设置Alias别名访问</title>
		<link>https://www.osyunwei.com/archives/767.html</link>
		<comments>https://www.osyunwei.com/archives/767.html#comments</comments>
		<pubDate>Thu, 03 Nov 2011 13:28:54 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Alias]]></category>
		<category><![CDATA[apache别名设置]]></category>
		<category><![CDATA[phpmyadmin]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=767</guid>
		<description><![CDATA[引言：     Apache服务器通过设置alias别名可以使特定的目录（phpmyadmin目录）不出现在网站根目录下面，即使网站根目录被攻破，也不会影响到phpmyadmin目录里面的文件。 下面以安装phpmyadmin为例设置别名访问： 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 1、下载phpmyadmin    cd /home    wget http://ncu.dl.sourceforge.net/project/phpmyadmin/phpMyAdmin/3.4.4/phpMyAdmin-3.4.4-all-languages.tar.gz    tar xvfz  phpMyAdmin-3.4.4-all-languages.tar.gz       #解压    mv   phpMyAdmin-3.4.4-all-languages  phpmyadmin       #更改文件夹名字为phpmyadmin 2、编辑Apache服务器配置    vi /etc/httpd/conf/httpd.conf    #编辑文件     Alias /phpmyadmin "/home/phpmyadmin"   &#60;Directory "/home/phpmyadmin"&#62;     Options  MultiViews FollowSymLinks     AllowOverride None     Order allow,deny     Allow from all   &#60;/Directory&#62; 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/767.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/767.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
