当前位置: 操作系统/服务器>windows
本页文章导读:
▪Windows查看端口历程 Windows查看端口进程
netstat -nao
tasklist /fi "pid eq 2740"
......
▪ windows自动关机下令 windows自动关机命令
设定时间关机at 00:00 Shutdown -s倒计时关机Shutdown.exe -s -t 3600取消倒计时关机shutdown.exe -a无法启动服务net start ScheduleServices.mscTask Scheduler
......
▪ Windows停访问VMware中tomcat Windows下访问VMware中tomcat
很多人都是这么做,运行虚拟机,windows上进行开发。在linux上运行tomcat,并且windows中能ping通虚拟机,但就不能通过虚拟机ip访问到8080端口上的tomcat,真折腾。终于.........
[1]Windows查看端口历程
来源: 互联网 发布时间: 2014-02-18
Windows查看端口进程
netstat -nao
tasklist /fi "pid eq 2740"
[2] windows自动关机下令
来源: 互联网 发布时间: 2014-02-18
windows自动关机命令
设定时间关机
倒计时关机
取消倒计时关机
无法启动服务
设定时间关机
at 00:00 Shutdown -s
倒计时关机
Shutdown.exe -s -t 3600
取消倒计时关机
shutdown.exe -a
无法启动服务
net start Schedule
Services.msc
Task Scheduler
[3] Windows停访问VMware中tomcat
来源: 互联网 发布时间: 2014-02-18
Windows下访问VMware中tomcat
很多人都是这么做,运行虚拟机,windows上进行开发。
在linux上运行tomcat,并且windows中能ping通虚拟机,但就不能通过虚拟机ip访问到8080端口上的tomcat,真折腾。
终于后来搜索到解决方法,主要是因为linux的防火墙问题。暴力点的办法是禁用iptables,合理的是添加允许访问的规则。
禁用iptables:
chkconfig iptables off
这样很暴力,永久生效。
而当前状态生效,重启后失效的办法:
service iptables stop
而最好是修改/etc/sysconfig/iptables添加允许访问的规则。
很多人都是这么做,运行虚拟机,windows上进行开发。
在linux上运行tomcat,并且windows中能ping通虚拟机,但就不能通过虚拟机ip访问到8080端口上的tomcat,真折腾。
终于后来搜索到解决方法,主要是因为linux的防火墙问题。暴力点的办法是禁用iptables,合理的是添加允许访问的规则。
禁用iptables:
chkconfig iptables off
这样很暴力,永久生效。
而当前状态生效,重启后失效的办法:
service iptables stop
而最好是修改/etc/sysconfig/iptables添加允许访问的规则。
最新技术文章: