PAW - GIT Repository Connection issue
-
- Community Contributor
- Posts: 161
- Joined: Tue Apr 02, 2013 1:41 pm
- OLAP Product: tm1, cognos bi
- Version: from TM1 9.4 to PA 2.0.9.6
- Excel Version: 2010
- Location: Toronto, ON
PAW - GIT Repository Connection issue
Hello,
We are trying to use the new PAW feature to add TM1 objects to GIT Repository, and for some reason, we cannot make it work.
We have generated the SSH Public Key / Private Key, and also saved the SSH Key to GitHub, but when we enter the Repo URL / SSH Keys in PAW, we receive an error:
TM1 Git failed to connect to remote. Reason: Failed to authenticate SSH session: Callback returned error.
Not sure if anyone else has experienced this error
Thank you
We are trying to use the new PAW feature to add TM1 objects to GIT Repository, and for some reason, we cannot make it work.
We have generated the SSH Public Key / Private Key, and also saved the SSH Key to GitHub, but when we enter the Repo URL / SSH Keys in PAW, we receive an error:
TM1 Git failed to connect to remote. Reason: Failed to authenticate SSH session: Callback returned error.
Not sure if anyone else has experienced this error
Thank you
Ardian Alikaj
-
- Community Contributor
- Posts: 298
- Joined: Fri Feb 15, 2013 5:49 pm
- OLAP Product: TM1
- Version: PA 2.0.9.1
- Excel Version: 365
- Location: Minneapolis, USA
Re: PAW - GIT Repository Connection issue
Public or enterprise Github? I ran into similar errors trying to connect on-prem PAW to an enterprise Github repo and so far haven't got it working. I suspected that the connection was being blocked/rejected by enterprise github admins but haven't confirmed that. You are using the SSH url and not the http url?
-
- Community Contributor
- Posts: 161
- Joined: Tue Apr 02, 2013 1:41 pm
- OLAP Product: tm1, cognos bi
- Version: from TM1 9.4 to PA 2.0.9.6
- Excel Version: 2010
- Location: Toronto, ON
Re: PAW - GIT Repository Connection issue
I am connecting to a Private Enterprise GitHub also, and my PAW is on-prem (2.0.86), so I think I am on the same situation. I am also using the SSH URL ( git@....)ascheevel wrote: ↑Tue Dec 12, 2023 4:32 pm Public or enterprise Github? I ran into similar errors trying to connect on-prem PAW to an enterprise Github repo and so far haven't got it working. I suspected that the connection was being blocked/rejected by enterprise github admins but haven't confirmed that. You are using the SSH url and not the http url?
Thank you for sharing
Ardian Alikaj
- WilliamSmith
- Posts: 44
- Joined: Tue Dec 13, 2022 8:54 pm
- OLAP Product: TM1 / PA / PAx / PAW
- Version: TM1 11
- Excel Version: 365
Re: PAW - GIT Repository Connection issue
+1 tried to get this working today, but no avail, will keep plugging away at it and report back any success
-
- Posts: 4
- Joined: Sun Jan 07, 2024 4:44 pm
- OLAP Product: TM1
- Version: 2.0.9.18
- Excel Version: Microsoft 365
Re: PAW - GIT Repository Connection issue
What SSH algorithm did you use to generate SSH key? If it was Ed25519, you may want to try RSA (ssh-keygen -t rsa -b 4096 -C "your_email@example.com"). Older TM1 does not support Ed25519 to authenticate to git repository.
-
- Community Contributor
- Posts: 298
- Joined: Fri Feb 15, 2013 5:49 pm
- OLAP Product: TM1
- Version: PA 2.0.9.1
- Excel Version: 365
- Location: Minneapolis, USA
Re: PAW - GIT Repository Connection issue
Tried both, I get the RSA with SHA-1 no longer supported by github error.
-
- Posts: 4
- Joined: Sun Jan 07, 2024 4:44 pm
- OLAP Product: TM1
- Version: 2.0.9.18
- Excel Version: Microsoft 365
Re: PAW - GIT Repository Connection issue
Can you try "ssh-keygen -t rsa -b 4096 -C "your_email@example.com'" to generate the RSA 4096? It is supported by GitHub https://docs.github.com/en/authenticati ... -ssh-agent.
-
- Community Contributor
- Posts: 298
- Joined: Fri Feb 15, 2013 5:49 pm
- OLAP Product: TM1
- Version: PA 2.0.9.1
- Excel Version: 365
- Location: Minneapolis, USA
Re: PAW - GIT Repository Connection issue
Yep, that's what I tried using the same github documentation you linked. I can see when I add the key in Github that's it's labeled as a SHA256 key, but same error when trying to connect from TM1.
Thanks for suggestion, hopefully it works for anyone else stumbling onto this. For me, I've all but given up on IBM's flavor of GIT integration for TM1 and am designing my own github based source control and deployment pipeline.
Thanks for suggestion, hopefully it works for anyone else stumbling onto this. For me, I've all but given up on IBM's flavor of GIT integration for TM1 and am designing my own github based source control and deployment pipeline.
-
- Posts: 5
- Joined: Thu Aug 16, 2012 2:46 pm
- OLAP Product: PA/TM1
- Version: 2.0.9.17
- Excel Version: 365
Re: PAW - GIT Repository Connection issue
Try $ ssh-keygen -t ecdsa -C "youremail@address"
I had an issue with a different algorithm for PA Cloud and IBM suggested "ecdsa" and it worked.
I had an issue with a different algorithm for PA Cloud and IBM suggested "ecdsa" and it worked.
-
- Community Contributor
- Posts: 298
- Joined: Fri Feb 15, 2013 5:49 pm
- OLAP Product: TM1
- Version: PA 2.0.9.1
- Excel Version: 365
- Location: Minneapolis, USA
Re: PAW - GIT Repository Connection issue
Well....that worked. Thanks @wcoffen!