Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

One iPhone, two developer machines

Tags:

macos

iphone

I switch between my iMac and MacBook when working on my apps. I've always used my iMac to test the apps on the actual device, but I would like to be able to do this from both computers. I cannot seem to use the profile on my MacBook as it does not have the correct Certificate Signing Request in the KeyChain. Is there a way to copy these between machines and KeyChains?

like image 769
willcodejavaforfood Avatar asked Jun 11 '26 02:06

willcodejavaforfood


1 Answers

To export the certificate, see here.

In short, enter this into the terminal:

sudo /Applications/Utilities/Keychain\ Access.app/Contents/MacOS/Keychain\ Access

This will require your password. Once the Keychain opens, you'll be able to export the certificate along with the private key.

like image 54
Adam Robinson Avatar answered Jun 13 '26 15:06

Adam Robinson