zoukankan      html  css  js  c++  java
  • 处理Linux下Oracle Tomcat 8080端口辩说1

       前导发轫:网海拾贝




    在启动tomcat的功夫提示8080端口被占用,厥后颠末查找发明如下结论:

    将oracle与tomcat、jboss等别的占用8080端口的管事器拆卸在一台机械上,会出现8080端口被占用的错误。

    一、首先检查8080端口的运用形状

    [root@olivenan root]# lsof -i :8080 -n

    COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME

    tnslsnr 1031 oracle 12u IPv4 2013 TCP *:webcache (LISTEN)

    [root@olivenan root]# lsof -i tcp:8080 -n

    COMMAND PID USER FD TYPE DEVICE SIZE NODE NAME

    tnslsnr 1031 oracle 12u IPv4 2013 TCP *:webcache (LISTEN)

    发明8080端口被oracle运用,详尽lsof下令参数的运用。

    [root@olivenan root]# lsof -i udp:8080 -n

    [root@olivenan root]# lsof -i|grep 8080

    [root@olivenan root]# netstat -tln|grep 8080

    tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN

    [root@olivenan root]#

    二、处理体式款式一

    查找处理体式款式

    将*.dispatchers='(PROTOCOL=TCP) (SERVICE=orclXDB)'

    改削为#*.dispatchers='(PROTOCOL=TCP) (SERVICE=orclXDB)'

    [oracle@olivenan dbs] $ sqlplus "/as sysdba"

    SQL*Plus: Release 9.2.0.4.0 - Production on Fri Jul 6 10:37:32 2007

    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.

    Connected to:

    Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production

    With the Partitioning, OLAP and Oracle Data Mining options

    JServer Release 9.2.0.4.0 - Production

    SQL> shutdown immediate

    Database closed.

    Database dismounted.

    ORACLE instance shut down.

    SQL> create spfile from pfile;

    File created.

    SQL> startup

    ORACLE instance started.

    Total System Global Area 236000356 bytes

    Fixed Size 451684 bytes

    Variable Size 201326592 bytes

    Database Buffers 33554432 bytes

    Redo Buffers 667648 bytes

    Database mounted.

    Database opened.

    SQL> exit

    [root@olivenan root]# lsof -i :8080 -n

    [root@olivenan root]

    成效端口8080休止被占用





    版权声明: 原创作品,许可转载,转载时请务必以超链接体式款式标明文章 原始情由 、作者信息和本声明。不然将追查司法责任。

  • 相关阅读:
    SOUI更新到2.0
    第三十一篇:SOUI布局之相对于特定兄弟窗口
    SOUI与WTL
    在SOUI中非半透明窗口如何实现圆角窗口?
    拥抱ARM妹纸第二季 之 第一次 点亮太阳
    拥抱ARM妹子第二季 之 序:我和春天有个约会
    解决自定义控件窗体缩放时闪烁
    The 50 Most Essential Pieces of Classical Music
    嵌入式开发目录
    C中浮点数转字符串
  • 原文地址:https://www.cnblogs.com/zgqjymx/p/1976166.html
Copyright © 2011-2022 走看看