<?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; 远程桌面</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/%E8%BF%9C%E7%A8%8B%E6%A1%8C%E9%9D%A2/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>CentOS 6.0 VNC远程桌面配置</title>
		<link>https://www.osyunwei.com/archives/663.html</link>
		<comments>https://www.osyunwei.com/archives/663.html#comments</comments>
		<pubDate>Wed, 02 Nov 2011 13:28:55 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[CentOS远程桌面]]></category>
		<category><![CDATA[VNC]]></category>
		<category><![CDATA[vncserver]]></category>
		<category><![CDATA[VNC远程桌面]]></category>
		<category><![CDATA[远程桌面]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=663</guid>
		<description><![CDATA[引言：       必须明白：       vncserver在调用的时候，会根据你的配置来启用server端的监听端口，       端口默认是从5900开始，再加上你的桌面号。       比如你的桌面号为1，则vnc的连接端口号为5900+1=5901       比如你的桌面号为10000，则vnc的连接端口号为5900+10000=15900 ====================================================================== 下面配置VNC服务器，使用户（root）能够通过vnc客户端远程连接到linux系统的图形界面(前提是你的服务器要安装桌面) 1、检查linux系统是否安装VNC    系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接    在终端窗口输入命令：rpm -q vnc-server    返回信息如下    package vnc-server is not installed    说明vnc服务器没有安装 2、运行以下命令进行安装：    yum install vnc-server 3、启动VNC服务    vncserver    You will require a password to access your desktops.    Password:    Verify:    [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/663.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/663.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Server 2003服务器远程桌面登录出现“终端服务器超出了最大允许连接数”解决方法</title>
		<link>https://www.osyunwei.com/archives/544.html</link>
		<comments>https://www.osyunwei.com/archives/544.html#comments</comments>
		<pubDate>Mon, 31 Oct 2011 09:24:59 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[安全优化]]></category>
		<category><![CDATA[3389]]></category>
		<category><![CDATA[终端服务器超出了最大允许连接数]]></category>
		<category><![CDATA[远程桌面]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=544</guid>
		<description><![CDATA[引言：大家在管理Windows Server 2003 服务器的时候，进行远程桌面连接，当输入完账号密码，点确定之后弹出一个提示框“终端服务器超出了最大允许连接数”，如下图所示： 原因：服务器默认情况下，最多只能登录2个链接会话，而且登录远程桌面之后如果没有采用注销的方式退出而是直接关闭远程桌面窗口，实际上远程会话没有释放，继续占用总连接数，当链接数超过最大允许值时就会出现上面提示。 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 解决方法： 1、如果是用Windows Xp、Windows Xp SP1、Windows Xp SP2、Windows Server 2003系统进行远程桌面连接，请看下面操作： 开始-运行，然后输入 mstsc /console /v:192.168.1.1:3389 2、如果是用Windows Xp SP3（SP3也是在开始-运行）、Windows Vista、Windows 7、Windows Server 2008系统进行远程桌面连接，请看下面操作： 开始-程序-附件-运行，然后输入 mstsc /admin /v:192.168.1.1:3389 远程连接登录之后，打开任务管理器，切换到用户选项，把之前断开的用户会话全部注销掉，下次记得维护好之后用注销的方式退出，切忌不要直接关闭远程桌面窗口。 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 备注：其中192.168.1.1:3389代表远程服务器的IP和端口，改为你自己的即可。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/544.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » Windows Server 2003服务器远程桌面登录出现“终端服务器超出了最大允许连接数”解决方法<p><a rel="bookmark" href="https://www.osyunwei.com/archives/544.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/544.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>解决Windows Server 2008 R2 远程桌面每个用户只能进行一个会话</title>
		<link>https://www.osyunwei.com/archives/454.html</link>
		<comments>https://www.osyunwei.com/archives/454.html#comments</comments>
		<pubDate>Wed, 26 Oct 2011 02:07:35 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[安全优化]]></category>
		<category><![CDATA[Windows Server 2008 R2]]></category>
		<category><![CDATA[Windwos Server 2008]]></category>
		<category><![CDATA[远程桌面]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=454</guid>
		<description><![CDATA[引言：        默认状态下，Windows Server 2008 R2 远程桌面中，一个用户只能进行一个会话，也就是说已经有一个用户账号登录到远程桌面了，如果其他人再用这个用户账号登录的话，会把之前登录的用户账号自动注销掉。        如果服务器只有一个管理员账号，又想让两个管理员同时远程登录服务器进行维护，有没有办法呢？请看下面操作： 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接        开始-管理工具-远程桌面服务-远程桌面会话主机配置 双击编辑设置下面的“限制每个用户只能进行一个会话”，打开之后切换到常规选项，把“限制每个用户只能进行一个会话”前面的勾取消掉 最后，应用，确定。 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 提示注册表已经更改，但不会更改RDP-tcp连接上的当前活动的用户会话，点确定 注销当前用户，之后就可以一个账号，2个管理员同时登录远程桌面了。 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/454.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » 解决Windows Server 2008 R2 远程桌面每个用户只能进行一个会话<p><a rel="bookmark" href="https://www.osyunwei.com/archives/454.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/454.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>清除Windows远程桌面连接记录</title>
		<link>https://www.osyunwei.com/archives/129.html</link>
		<comments>https://www.osyunwei.com/archives/129.html#comments</comments>
		<pubDate>Fri, 21 Oct 2011 13:50:32 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[安全优化]]></category>
		<category><![CDATA[清除远程桌面连接记录]]></category>
		<category><![CDATA[远程桌面]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=129</guid>
		<description><![CDATA[引言：Windows服务器通过远程桌面维护完成之后，需要将连接记录清除，否则，服务器端口信息可能外泄，造成安装隐患 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 把以下代码保存为clear.bat文件，双击运行即可清除远程桌面连接记录 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/129.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » 清除Windows远程桌面连接记录<p><a rel="bookmark" href="https://www.osyunwei.com/archives/129.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/129.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Windows Server 2003远程桌面3389端口修改</title>
		<link>https://www.osyunwei.com/archives/110.html</link>
		<comments>https://www.osyunwei.com/archives/110.html#comments</comments>
		<pubDate>Fri, 21 Oct 2011 12:53:53 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[安全优化]]></category>
		<category><![CDATA[3389]]></category>
		<category><![CDATA[3389端口修改]]></category>
		<category><![CDATA[远程桌面]]></category>

		<guid isPermaLink="false">http://w66416.s75.chinaccnet.cn/?p=110</guid>
		<description><![CDATA[引言： Windows Server 2003 默认远程桌面端口为：3389，为了安全，我们需要把这个端口改掉，以防止恶意扫描， 把以下代码保存为批处理（如：3389.bat），在服务器上双击运行，然后重启即可生效。 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 系统运维  www.osyunwei.com  温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/110.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » Windows Server 2003远程桌面3389端口修改<p><a rel="bookmark" href="https://www.osyunwei.com/archives/110.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/110.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
