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. Access 字段拼接(UPDATE 数据追加)

    今天遇到一个需求,在Access数据库中,有个net_id 字段,它的值是由 “jjgrape” 这个字符串和 id 字段组成的,也就是说,要把 ‘jjgrape’ 和 id 字段拼接起来: 那怎么拼 ...

  2. 泡泡一分钟:LandmarkBoost: Efficient Visual Context Classifiers for Robust Localization

    Marcin Dymczyk, Igor Gilitschenski, Juan Nieto, Simon Lynen, Bernhard Zeis, and Roland Siegwart Land ...

  3. ES6深入浅出-8 新版的类(下集)-3.书籍推荐

  4. Linux配置Docker镜像加速器

    Docker默认镜像为官方镜像,可以配置成国内加速器提高速度 登录阿里云控制台,搜索容器镜像服务获取到镜像加速服务地址 新建配置文件 /etc/docker/daemon.json 输入以下内容 { ...

  5. django2.x报错No module named 'django.core.urlresolvers'

    解决方法如下 from django.urls import reverse 最近从django1.9迁移到django2.0中出现一个意外的报错: No module named 'django.c ...

  6. svn查看登录过的账号密码

    直接下载:http://www.leapbeyond.com/ric/TSvnPD/

  7. LeetCode 278. 第一个错误的版本(First Bad Version)

    278. 第一个错误的版本 LeetCode278. First Bad Version 题目描述 你是产品经理,目前正在带领一个团队开发新的产品.不幸的是,你的产品的最新版本没有通过质量检测.由于每 ...

  8. 定时任务-SQL Server代理 作业

    创建一个sqlserver作业 sqlserver的作业的功能更加偏向于数据库,处理数据,迁移等.当然也可以调用接口(存储过程调用接口  https://www.cnblogs.com/cynchan ...

  9. mysql查看索引的大小

    1 ,show table status from your_database_name  这个不准: 2,这个比较详细 select database_name, table_name, index ...

  10. python基础学习(八)

    17.嵌套循环 # 嵌套循环 nested loop # 在一个循环中使用另外一个循环 num_list1 = [1, 2, 3, 4] num_list2 = [6, 7, 8, 9] # 组合li ...