zoukankan      html  css  js  c++  java
  • SDE在64位Server2008下Post启动服务失败官方解释

    解决了一个SDE启动问题,在此记录一下

    在server 2008 64位下安装完arcgis sde之后,Post启动服务,总是失败

    查看SDE日志(etc目录下)

    DB_open_instance()::db_connect (OCI8) error: 12560 
    init_DB DB_instance_open_as_dba: -51 
    DBMS error code: 12560 
    ORA-12560: TNS:protocol adapter error 

    解释:是32-bit Oracle Client端安装情况下要更改dbinit.sde中的Oracle_SID为Local,用Post Install来启动服务PostInstall又会把dbinit.sde改回去,所以不能使用Post Install来启动服务了。

    使用 sdemon -o start -p sdepassword来启动。

    官方解释

    https://geonet.esri.com/thread/12362

    Edit your dbinit.sde file in your ArcSDEetc directory.
    Change SET ORACLE_SID=mysid to SET LOCAL=mysid
    This forces the sde service to use the local 32-bit oracle client instead of the server's 64 bit library and avoids bitness incompatibility with your 32-bit ArcSDE installation.

    这也说明了为什么网上有人用改ORACLE_SID也能成功的原因。

  • 相关阅读:
    Express 框架中 使用ejs
    Nodejs操作MongoDB数据库
    MongoDB基础操作
    node中的包、npm和模块
    background
    animation
    transition
    transform
    【SpringCloud】各种组件的更新情况
    【SpringCloud】版本选择
  • 原文地址:https://www.cnblogs.com/yansc/p/7068640.html
Copyright © 2011-2022 走看看