Symptom
How to change SAPABAP1 schema password

Environment
HANA 1.x
HANA 2.x
Resolution
Shutdown the SAP Application server

Change the password for SAPABAP1 in HANA Studio

Update the hdbuserstore on SAP Application server

The hdbuserstore can be updated like e.g.
su - sidadm
hdbuserstore -u SAP set default :

In case of the error:
Error 91007: Impersonation not supported, use sudo on this platform.

please use:
hdbuserstore set default :

The SET and DELETE commands implicitly execute the CHANGEKEY command.

After updating the hdbuserstore, verify the connection from SAP AApplication server with:
R3trans -d

In case of a failed connection with no connect possible: "DBMS = HDB --- SERVER = '' PORT = ''"
plase verify the "trans.log" for further details.

In case of the following error:
4 SAP000 [dbhdbsql.cpp,00000] *** ERROR => Connect to database failed, rc=1, rcSQL=10
4 SAP000 [ dev trc,00000] SQLCODE : 10
4 SAP000 [ dev trc,00000] SQLERRTEXT : authentication failed
4 SAP000 [ dblink ,00000] LOG BY2=>sql error 10 performing CON
4 SAP000 [ dblink ,00000]
LOG BY0=>authentication failed
2ESAP169 no connect possible: "DBMS = HDB --- SERVER = '' PORT = ''"

either the user/password is not correct or the user (SAPABAP1) is locked.

Start SAP Application Server
See Also

2250144 - FAQ: SAP HANA Secure User Store

2505925 - R3trans-d - invalid username or password

2413487 - Command R3trans -d after System copy returns authentication sql error 10413487 - Command R3trans -d after System copy returns authentication sql error 10

2455684 - Update of the secure storage is locked for update by user xxx from host xxx since

2490597 - Error 91007: Impersonation not supported, use sudo on this platform when trying to create a key in hdbuserstore

SAP HANA Security Guide

How to manage password in BW on HANA?

Keywords
DB, SAPABAP1, hdbuserstore, SSFS, R3trans, password, change, rcSQL=10, trans.log,Impersonation, 91007

How to change SAPABAP1 schema password In HANA的更多相关文章

  1. EF6 Database First (DbContext) - Change Schema at runtime

    Problem:There are two SQL databases (dev and live) with on Azure which has identical table structure ...

  2. Oracle Created Database Users: Password, Usage and Files References (文档 ID 160861.1)

    This document is no longer actively maintained, for info on specific (new) users in recent product e ...

  3. SAP S/4 HANA 1709 Fully Activated Appliance

    SAP S4HANA 1709 Fully Activated Appliance:简单来说比IDES版本功能更加强大,内置三个集团,分别用于测试不同业务.内置官方的BP内容 安装需要500G SSD ...

  4. EBS Custom Password Rules

    https://blogs.oracle.com/manojmadhusoodanan/entry/custom_password_rules Custom Password Rules By Man ...

  5. Resetting a lost Admin password

    Resetting a lost Admin password 来源 https://cookbook.fortinet.com/resetting-a-lost-admin-password/ Po ...

  6. Resetting the Root Password Using rd.break for RHEL7

    Start the system and, on the GRUB 2 boot screen, press the e key for edit. Remove the rhgb and quiet ...

  7. 【AIX】3004-314 Password was recently used and is not valid for reuse

    [AIX]3004-314 Password was recently used and is not valid for reuse   一.1  BLOG文档结构图     一.2  前言部分   ...

  8. 【HANA系列】【第六篇】SAP HANA XS使用JavaScript(JS)调用存储过程(Procedures)

    公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[HANA系列][第六篇]SAP HANA XS ...

  9. 【HANA系列】SAP HANA ODBC error due to mismatch of version

    公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[HANA系列]SAP HANA ODBC er ...

随机推荐

  1. IDEA子项目的相互依赖

    A项目依赖B项目 一.B项目打包,执行install 这一步其实就是把你的项目打包到本地仓库,你可以在本地仓库看到相应的jar包 二.在A项目的pom.xml引入依赖可以了 当B项目修改后,需要重新打 ...

  2. Qt编写气体安全管理系统12-设备双击

    一.前言 在编写这个项目的过程中,有个得到客户夸赞的小功能就是,设备按钮双击,在离线的时候是双击重连设备,在线的时候是双击弹出具体详情界面,回控设备,参数设置等.在modbus设备通信过程中,设定了超 ...

  3. 搭建iscsi存储系统(一)

    (1).DAS.SAN.NAS三种存储方式 参考:https://blog.csdn.net/qq_23348071/article/details/73963407 DAS全称Direct-Atta ...

  4. /var/spool/postfix

    centos磁盘优化,发现/var/spool/postfix/maildrop下有大量文件. cron进程默认会将计划任务中所运行的脚本的警告.错误信息或者脚本输出信息发送给计划任务的所有者,而由于 ...

  5. 用VS Code写C#

    目录 前言 下载SDK 安装C#支持 快速创建C#控制台 格式化代码 launch:launch.json must be configured. change 'program' to the pa ...

  6. php 3.2 生成压缩文件,并下载

    public function zip_download() { $array = array( 'http://local.qki.com/site_upload/erweima/20190826/ ...

  7. HTML中设置在浏览器中固定位置fixed定位

    之前的博文 HTML布局排版之制作个人网站的文章列表,中链接到的文章本身,也需要返回到列表主页,可在每个文章页面加导航条,也可以只加个返回到列表主页的链接.刚开始是想在博文最下方,加个返回文章列表的链 ...

  8. WEUI switch 如何取值?

    let id = $(this).attr("id"); let name = $(this).attr("data-name"); HTML: <div ...

  9. ecshop中常用的sql语句

    1.获取单条记录 $row = $GLOBALS['db']->getRow($sql); 2.获取单一字段 $row = $GLOBALS['db']->getOne($sql); 查询 ...

  10. 【VS开发】IP地址格式转换(htonl、ntohl;inet_addr、inet_ntoa)

    1.htonl ()和ntohl( ) u_long PASCAL FAR ntohl (u_long netlong); u_short PASCAL FAR ntohs (u_short nets ...