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
  1. 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

  1. 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.

    1. RZ70 of the ABAP system.
    2. 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.
    3. refresh the solman_setup page to get the update system info for managed system configuration.
  2. "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的更多相关文章

  1. Ubuntu小点汇总,更新中...

    转自:http://blog.csdn.net/zxz_tsgx/article/details/39713627 昨天重装了Ubuntu14.04 64位版,又被一些基础操作/设置给搞怕了,以前安装 ...

  2. 腾讯优测干货精选| 安卓开发新技能Get -常用必备小工具汇总

    文/腾讯公司 陈江峰 优测小优有话说: 移动研发及测试干货哪里找?腾讯优测-优社区你值得拥有~ 开发同学们都知道,安卓开发路上会碰到很多艰难险阻,一不小心就被KO.这时候,没有新技能傍身怎么行?今天我 ...

  3. Java---设计模式app小软件汇总应用

    写了一个app小软件,重点不在于软件,软件bug挺多,也没去修改. 这个小软件只是为了更好的说明和了解设计模块而做的. Java 程序设计–包结构 Java程序设计的系统体系结构很大一部分都体现在包结 ...

  4. JavaScript性能优化小窍门汇总(含实例)

    在众多语言中,JavaScript已经占有重要的一席之地,利用JavaScript我们可以做很多事情 , 应用广泛.在web应用项目中,需要大量JavaScript的代码,将来也会越来越多.但是由于J ...

  5. sql小计汇总 rollup用法实例分析

    这里介绍sql server2005里面的一个使用实例: ),city ),score int) GO 1. 只有一个汇总 select province as 省,sum(score) as 分数 ...

  6. 年度巨献-WPF项目开发过程中WPF小知识点汇总(原创+摘抄)

    WPF中Style的使用 Styel在英文中解释为”样式“,在Web开发中,css为层叠样式表,自从.net3.0推出WPF以来,WPF也有样式一说,通过设置样式,使其WPF控件外观更加美化同时减少了 ...

  7. Windows Server 2008 小操作汇总

    用惯了Windows2003,去配置2008的时候还真有点摸不着头脑.干脆把有用到的都列在这里,方便后续查找. 一.安装IIS.Telnet      点击:开始 -> 管理工具 -> 服 ...

  8. JDK小Bug汇总

    Java官方的Logger.getGlobal().info无效 无效代码 Logger.getGlobal().info("start"); 解决方案(三选一): Logger. ...

  9. shell 小问题汇总

    写脚本的时候难免会判断变量是否为空或者为定义 变量a未定义 if [ -n $a ];then echo "exists"; else echo "not exists& ...

随机推荐

  1. 为什么static成员必须在类外初始化,而不能在类的头文件中初始化

    为什么static成员必须在类外初始化 为什么静态成员不能在类内初始化 在C++中,类的静态成员(static member)必须在类内声明,在类外初始化,像下面这样.   class A { pri ...

  2. 【swoole】PHP+Swoole+Linux实现进程监控

    脚本代码 class Server { const PORT = 8888; public function port() { //netstat -anp 2>/dev/null| grep ...

  3. k8s记录-ca证书制作(二)

    1)下载cfssl #!/bin/bash wget https://pkg.cfssl.org/R1.2/cfssl_linux-amd64 wget https://pkg.cfssl.org/R ...

  4. C#操作Access时Parameters集合的使用方法(转)

    按照C#操作Sql Server数据库的方式是不一样的,使用时发现占位符数据会混乱. 查阅相关资料及测试后,总结出这样一套使用方法. 方法: public bool TsqlExecute(strin ...

  5. Web书写Test Case时需要考虑的检查点

    通常书写Test Case时需要考虑的检查点: 一. 对于屏幕显示来说包括:1.检查显示的布局:2.检查域和按钮的顺序:3.检查域的尺寸:4.检查字体的大小和风格:5.检查文本的含义:6.检查拼写错误 ...

  6. 【ARM-Linux开发】ctrl-xxx的对应的signal含义

    ctrl-c 发送 SIGINT 信号给前台进程组中的所有进程.常用于终止正在运行的程序.ctrl-z 发送 SIGTSTP 信号给前台进程组中的所有进程,常用于挂起一个进程.ctrl-d 不是发送信 ...

  7. STM32 MDK摘记

    题记:这人是越懒越懒,记性也也来越差,前段时间改了个链接文件,今天想用,竟然忘了咋写....还是勤记记吧... 随时更新,笔记帖. 不喜勿喷! 1,关于MDK链接文件宏的定义 #! armcc -E ...

  8. matlab中执行mex文件时提示GLIBCXX not found

    解决方案参考: http://stackoverflow.com/questions/8421708/glibcxx-not-found-when-compiling-vtk-example-unde ...

  9. MySQL基础操作(二)

    MySQL基础操作 一.视图 视图是一个虚拟表(非真实存在),其本质是[根据SQL语句获取动态的数据集,并为其命名],用户使用时只需使用[名称]即可获取结果集,并可以将其当作表来使用.注意:使用视图时 ...

  10. luoguP1823 [COI2007] Patrik 音乐会的等待

    题目描述 N个人正在排队进入一个音乐会.人们等得很无聊,于是他们开始转来转去,想在队伍里寻找自己的熟人.队列中任意两个人A和B,如果他们是相邻或他们之间没有人比A或B高,那么他们是可以互相看得见的. ...