BASIS小问题汇总1
- try to start SAP system but failed
2019-04-04
Symptom:
when i tried to start SAP system,
using the command:
sapcontrol -nr 60 -function InstanceStart PRDERPAS01 60
and I get the below failed information:
FAIL: NIECONN_REFUSED (Connecion refused), NiRawConnect failed in plugin_fopen()
Reason:
The issue you had was related to sapstartsrv, which was not running.
use following command to check sapstartsrv
ps -ef | grep sapstartsrv
Resolution:
Once it was started:
/usr/sap//<instance_nr>/exe/sapstartsrv pf=/usr/sap//SYS/profile/<instance_nr> -D -u
/usr/sap/S4P/D61/exe/sapstartsrv pf=/usr/sap/S4P/SYS/profile/S4P_D61_PRDERPAP01 -D -u s4padm
You were able to use sapcontrol to start instance, and also monitor it with GetProcessList command.
SAP Startup Troubleshooting Guide for Netweaver Application Server: https://wiki.scn.sap.com/wiki/x/8IGuG
KBA 2652459 - [Best Practice] How to troubleshoot sapcontrol/sapstartsrv common issues - Guided Answers
- Diagnostics-relevance not set in solution manager
2019-04-12
Component: Agent Framework (SV-SMG-DIA-SRV-AGT)
Stop it and run the following command to connect it to SolMan?
smdsetup managingconf hostname:"sapms://<solman.full.qual.host.name>" port:"<81xx>"
http://<solman_host>:<java_http_port>/smd/AgentAdmin
http://<solman_host>:<java_http_port>/smd/AgentAdmin
no fqdn is set for your solman?
wiki page explaining how to synchronize hana DB to Solman
https://wiki.scn.sap.com/wiki/x/cJvnH
This one is about managed system configuration for HANA MDC
https://wiki.scn.sap.com/wiki/x/15rnH
register database HANA into diagnostics agent
Component: Landscape Management Database (LMDB) (SV-SMG-LDB)
Solution Summary:
To register the HANA completely into the SLD, it's needed to run the following steps.- RZ70 of the ABAP system.
- HDBLCM tool.
3 after getting the complete HANA data in SLD, please wait for 10mins until background job SAP_LMDB_LDB* syncs the change to LMDB. Or you can run the job immediately. - refresh the solman_setup page to get the update system info for managed system configuration.
"destination SDCC_OSS not exist".
Component: SAP HANA Database (HAN-DB)
bug
5 service WEbgui does not exist"
The issue can be resolved by apply the following SAP note , please close this incident at you convenient time.
2721354 - Activity "Activate Services" in Managed Systems Configuration
BASIS小问题汇总1的更多相关文章
- Ubuntu小点汇总,更新中...
转自:http://blog.csdn.net/zxz_tsgx/article/details/39713627 昨天重装了Ubuntu14.04 64位版,又被一些基础操作/设置给搞怕了,以前安装 ...
- 腾讯优测干货精选| 安卓开发新技能Get -常用必备小工具汇总
文/腾讯公司 陈江峰 优测小优有话说: 移动研发及测试干货哪里找?腾讯优测-优社区你值得拥有~ 开发同学们都知道,安卓开发路上会碰到很多艰难险阻,一不小心就被KO.这时候,没有新技能傍身怎么行?今天我 ...
- Java---设计模式app小软件汇总应用
写了一个app小软件,重点不在于软件,软件bug挺多,也没去修改. 这个小软件只是为了更好的说明和了解设计模块而做的. Java 程序设计–包结构 Java程序设计的系统体系结构很大一部分都体现在包结 ...
- JavaScript性能优化小窍门汇总(含实例)
在众多语言中,JavaScript已经占有重要的一席之地,利用JavaScript我们可以做很多事情 , 应用广泛.在web应用项目中,需要大量JavaScript的代码,将来也会越来越多.但是由于J ...
- sql小计汇总 rollup用法实例分析
这里介绍sql server2005里面的一个使用实例: ),city ),score int) GO 1. 只有一个汇总 select province as 省,sum(score) as 分数 ...
- 年度巨献-WPF项目开发过程中WPF小知识点汇总(原创+摘抄)
WPF中Style的使用 Styel在英文中解释为”样式“,在Web开发中,css为层叠样式表,自从.net3.0推出WPF以来,WPF也有样式一说,通过设置样式,使其WPF控件外观更加美化同时减少了 ...
- Windows Server 2008 小操作汇总
用惯了Windows2003,去配置2008的时候还真有点摸不着头脑.干脆把有用到的都列在这里,方便后续查找. 一.安装IIS.Telnet 点击:开始 -> 管理工具 -> 服 ...
- JDK小Bug汇总
Java官方的Logger.getGlobal().info无效 无效代码 Logger.getGlobal().info("start"); 解决方案(三选一): Logger. ...
- shell 小问题汇总
写脚本的时候难免会判断变量是否为空或者为定义 变量a未定义 if [ -n $a ];then echo "exists"; else echo "not exists& ...
随机推荐
- Django Timezone 处理
https://blog.csdn.net/qq_37049781/article/details/79347278 Django 中的时区在现实环境中,存在有多个时区.用户之间很有可能存在于不同的时 ...
- 【PHP】php7.2报错The each() function is deprecated. This message will be suppressed on furthe
php7.2以上 废除了 each()方法,项目中用到的地方会出现以下报错 The each() function is deprecated. This message will be suppre ...
- 数据结构与抽象 Java语言描述 第4版 pdf (内含标签)
数据结构与抽象 Java语言描述 第4版 目录 前言引言组织数据序言设计类P.1封装P.2说明方法P.2.1注释P.2.2前置条件和后置条件P.2.3断言P.3Java接口P.3.1写一个接口P.3. ...
- php程序无法记录log情况下可尝试下面方法记录log
error_reporting(E_ERROR | E_PARSE); function shutdownCallback(){ $arrError = error_get_last(); // ...
- 【Leetcode_easy】1170. Compare Strings by Frequency of the Smallest Character
problem 1170. Compare Strings by Frequency of the Smallest Character 参考 1. Leetcode_easy_1170. Compa ...
- 使用mousedown、mousemove、mouseup实现拖拽效果
如何实现一个元素的拖拽效果,使用原生的js实现,习惯了jquery的同学们,你们自己写了吗?N久使用mvvm框架,不写jquery的东西,感觉自己完全不会了. 话不多说,直接上code.本例子以简单的 ...
- 实验1 C 语言开发环境使用和数据类型、运算符、表达式
# include <stdio.h> int main() { int x; printf("x:\n"); scanf("%d",&x) ...
- Django时区导致的datetime时间比较报错
我们使用python 的datetime模块比较Django数据库Datetime字段的时候,可能会出现报错: TypeError: can't compare offset-naive and of ...
- docker 安装 tomcat8
docker hub 查找 tomcat meiya@meiya:/etc/docker$ docker search tomcat NAME DESCRIPTION STARS OFFICIAL A ...
- PHP中NULL和‘'的区别
PHP中NULL和‘'区别 null的类型是null,""的类型是string 所以是不同东西 <pre>$a=22;unset($a);var_dump($a);&l ...