博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【VNC】手工kill掉VNC进程的故障处理
阅读量:6608 次
发布时间:2019-06-24

本文共 1613 字,大约阅读时间需要 5 分钟。

1.模拟Kill掉已经启动的VNC服务
1)启动桌面1的服务

1
2
3
4
[root@testdb ~]
# vncserver :1
New 
'testdb:1 (root)' 
desktop is testdb:1
Starting applications specified 
in 
/root/
.vnc
/xstartup
Log 
file 
is 
/root/
.vnc
/testdb
:1.log


2)手工杀掉已经启动的VNC服务进程

1
2
3
4
[root@testdb ~]
# ps -ef | grep -i vnc | grep -v grep
root      1178     1  0 11:07 pts
/2    
00:00:00 Xvnc :1 -desktop testdb:1 (root) -httpd 
/usr/share/vnc/classes 
-auth 
/root/
.Xauthority -geometry 1024x768 -depth 16 -rfbwait 30000 -rfbauth 
/root/
.vnc
/passwd 
-rfbport 5901 -pn
root      1182     1  0 11:07 pts
/2    
00:00:00 vncconfig -iconic
[root@testdb ~]
# kill -9 1178


3)确认进程已经杀掉

1
[root@testdb ~]
# ps -ef | grep -i vnc | grep -v grep


4)再次启动桌面1的VNC服务,这里可以看到报错

1
2
3
4
[root@testdb ~]
# vncserver :1
Warning: testdb:1 is taken because of 
/tmp/
.X1-lock
Remove this 
file 
if 
there is no X server testdb:1
A VNC server is already running as :1


2.处理过程
很简单,按照错误提示的内容,需要删除/tmp/.X1-lock文件

1
[root@testdb ~]
# rm -f /tmp/.X1-lock


启动尝试,仍然报错

1
2
3
4
[root@testdb ~]
# vncserver :1
Warning: testdb:1 is taken because of 
/tmp/
.X11-unix
/X1
Remove this 
file 
if 
there is no X server testdb:1
A VNC server is already running as :1


同样,按照提示的错误,进一步删除/tmp/.X11-unix/X1文件

1
[root@testdb ~]
# rm -f /tmp/.X11-unix/X1


再次启动尝试,OK,启动成功!

1
2
3
4
[root@testdb ~]
# vncserver :1
New 
'testdb:1 (root)' 
desktop is testdb:1
Starting applications specified 
in 
/root/
.vnc
/xstartup
Log 
file 
is 
/root/
.vnc
/testdb
:1.log


3.问题处理经验总结
再一次证明,解决技术问题的关键有
1)直面问题,充满信心,喜欢解决问题,即使时间紧任务重
2)远离浮躁
3)认真分析报错信息,寻找突破点
4)last but not least 向最好的老师Google请教

-- The End --

      本文转自灬落魄灬  51CTO博客,原文链接:http://blog.51cto.com/smoke520/1925957,如需转载请自行联系原作者

你可能感兴趣的文章
Flutter第五期 - 样式、Scaffold、TabBar、底部导航
查看>>
python经典例子
查看>>
CentOS6.5环境中配置Python + Web.py + Apache部署环境
查看>>
android 二维码 扫描与生成(内置)
查看>>
centos 7用源码升级openssh后无法远程ssh连接
查看>>
centos6.2网卡绑定
查看>>
我的友情链接
查看>>
作为PHP开发者请务必了解Composer
查看>>
网易笔试题之合唱团---动态规划
查看>>
时间格式化
查看>>
PVLAN-配置案例(图)
查看>>
C++日历日程控件Xtreme Calendar
查看>>
awk数组嵌套筛选数据
查看>>
我的友情链接
查看>>
留言板模块留言审核radio无效解决办法
查看>>
C++中的异常处理
查看>>
RubyMine7注册码免费分享--支持puppet高亮语法
查看>>
你是数学天才(去广告方法)【全球独家】
查看>>
jenkins安装简要说明
查看>>
Keepalived+Nginx实现高可用和双主节点负载均衡
查看>>