Конвертировать файл.p12 в.pem с помощью приложения терминала в Mac Ошибка "Нет такого файла или каталога"?

Я экспортировал сертификат "Apple Development IOS Push Service" из Keychain Access и сохранил "apns-dev-cert.p12" на своем рабочем столе. Я хочу включить Apple Push Notification Я следовал за этими блогами, чтобы преобразовать apns-dev-cert.p12 to apns-dev-cert.pem из терминала приложение,

http://bhaveshkumbhani.blogspot.in/2011/12/convert-p12-to-pem-for-apns.html
http://www.raywenderlich.com/3443/apple-push-notification-services-tutorial-part-12
Apple Document RemoteNotificationPG.pdf

Я использовал эти команды в терминале,

    1.V******-Ms-iMac-2:~ c*****$ openssl pkcs12 -in apns-dev-cert.p12 -out apns-dev-cert.pem -nodes -clcerts
        Response : Error opening input file apns-dev-cert.p12
        Certificates.p12: No such file or directory
    2.V******-Ms-iMac-2:~ c*****$ openssl pkcs12 -clcerts -nokeys -out apns-dev-cert.pem -in apns-dev-cert.p12
        Response : Error opening input file apns-dev-cert.p12
        Certificates.p12: No such file or directory
    3.V******-Ms-iMac-2:~ c*****$ ls
            All_iOS_Applications_Document.doc   Pictures
            AppStoreSubmissionSteps.doc     Public
            Desktop                 Sites
            Documents               Softwares
            Downloads               Untitled.txt
            Dropbox                 pic
            Library                 pic.zip
            Movies                  pricelist.txt
            Music                   sms.txt
            Nana_User_Case_Documents.odt
   4. V******-Ms-iMac-2:~ c*****$ cd
   5.V******-Ms-iMac-2:~ c*****$ cd/Users/c*****/Desktop/A
-bash: cd/Users/c*****/Desktop/A: No such file or directory

Я не могу понять, почему терминал всегда говорит "Нет такого файла или каталога"? Где мне нужно сохранить файл.p12 на моем Mac?

Использую Terminal app Version 2.1.2 (273.1). Mac OS X version 10.6.8,

Не могли бы вы, пожалуйста, что мне нужно сделать? Мне нужно включить APNS с помощью файла.pem. Пожалуйста, помогите мне. Заранее спасибо.

РЕДАКТИРОВАТЬ:

Я добавил опробованный код терминалов Raywenderlich.com в мое приложение Mac Terminal

1. V******-Ms-iMac-2:~ c*****$ pwd
/Users/creagx
2. V******-Ms-iMac-2:~ c*****$ cd/ Users/creagx/Desktop/A
-bash: cd/: No such file or directory

1 ответ

Решение

Введите:

cd /Users/creagx/Desktop/A (Space between cd and Slash: cd[SPACE]/Users/creagx/Desktop/A

если на рабочем столе есть папка с именем "A", в которой находятся файлы p12.

Затем продолжите с другими командами

openssl pkcs12 -in apns-dev-cert.p12 -out apns-dev-cert.pem -nodes -clcerts

openssl pkcs12 -clcerts -nokeys -out apns-dev-cert.pem -in apns-dev-cert.p12

Другие вопросы по тегам