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

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

1.模拟Kill掉已经启动的VNC服务1)启动桌面1的服务[root@testdb ~]# vncserver :1New 'testdb:1 (root)' desktop is testdb:1Starting applications specified in /root/.vnc/xstartupLog file is /root/.vnc/testdb:1.log2)手工杀掉已经启动的VNC服务进程[root@testdb ~]# ps -ef | grep -i vnc | grep -v greproot      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 -pnroot      1182     1  0 11:07 pts/2    00:00:00 vncconfig -iconic[root@testdb ~]# kill -9 11783)确认进程已经杀掉[root@testdb ~]# ps -ef | grep -i vnc | grep -v grep4)再次启动桌面1的VNC服务,这里可以看到报错[root@testdb ~]# vncserver :1Warning: testdb:1 is taken because of /tmp/.X1-lockRemove this file if there is no X server testdb:1A VNC server is already running as :12.处理过程很简单,按照错误提示的内容,需要删除/tmp/.X1-lock文件[root@testdb ~]# rm -f /tmp/.X1-lock启动尝试,仍然报错[root@testdb ~]# vncserver :1Warning: testdb:1 is taken because of /tmp/.X11-unix/X1Remove this file if there is no X server testdb:1A VNC server is already running as :1同样,按照提示的错误,进一步删除/tmp/.X11-unix/X1文件[root@testdb ~]# rm -f /tmp/.X11-unix/X1再次启动尝试,OK,启动成功![root@testdb ~]# vncserver :1New 'testdb:1 (root)' desktop is testdb:1Starting applications specified in /root/.vnc/xstartupLog file is /root/.vnc/testdb:1.log3.问题处理经验总结再一次证明,解决技术问题的关键有1)直面问题,充满信心,喜欢解决问题,即使时间紧任务重2)远离浮躁3)认真分析报错信息,寻找突破点4)last but not least 向最好的老师Google请教-- The End --

  

转载于:https://www.cnblogs.com/heidsoft/p/4279987.html

你可能感兴趣的文章
Zookeeper的RPC框架
查看>>
开发PL/SQL子程序——过程
查看>>
管理表空间和数据文件——建立表空间——建立本地管理表空间
查看>>
使用Spring Cloud Feign
查看>>
Ambari Agent 架构
查看>>
NumPy基础知识:数组和矢量计算
查看>>
NOJ-1162-简单编码
查看>>
jsp页面执行原理及获取上下文根方式
查看>>
牛客小白月赛6 E 对弈 思维
查看>>
linux RAC 安装失败完全卸载
查看>>
自己封装了一个EF的上下文类.,分享一下,顺便求大神指点
查看>>
Http的Get和Post--扫盲篇
查看>>
xdebug 配置
查看>>
Linux(Ubuntu)之设定开机自启动
查看>>
http状态码的分类
查看>>
react native redux saga增加日志功能
查看>>
hibernate缓存机制(二级缓存)
查看>>
iOS 小方法
查看>>
php 快速fork出指定个子进程
查看>>
1、算法简介
查看>>