I have installed DB2 successfully on my Mac based on this link and it worked fine: https://ajstorm.medium.com/installing-db2-on-your-coffee-break-5be1d811b052
Then, I was trying to install and connect to DB2 via DB2 Connect extension from VSCode. The installation did not work so I returned to Terminal to continue coding with DB2 on there, I encounter the error as in the image below (authentication problem). Maybe it's about the Docker that has the issue? Any pro could help me with this, please? Thank you.
SQL1366N A security plug-in "IBMLDAPauthclient" processing error occurred on the client. Reason code = "7".
CodePudding user response:
I just solved the thing by:
- Go to docker desktop and delete the DB2 container
- Reinstall DB2 using the instructions from: https://javamana.com/2022/03/202203170730500825.html#4、创建数据库
- Except for the final step, I just created a new database after the "CREATE DATABASE AUDIT" part and use the newly created database there.
n.b: this is just to have DB2 functioning so that I can do homework assignment. If you require to fix the issue for work, this might not be a good idea.
Thank you.