Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Steps to manage multiple Heroku accounts</p> <p>Install the plugin from the following URL on your machine</p> <p><a href="https://github.com/ddollar/heroku-accounts" rel="noreferrer">https://github.com/ddollar/heroku-accounts</a></p> <p>In case you run into the problem of finger print authorization issue then follow the below steps</p> <p>We had similar problem today and resolved it with the following solution</p> <ol> <li><p>First add account using following command</p> <blockquote> <p>heroku accounts:add account_name --auto</p> </blockquote> <p>This command would generate separate public key which would be associated with this account so that it does not conflicts with other accounts.</p></li> <li><p>Next step is to create the application for the account using following command</p> <blockquote> <p>heroku create app_name --account account_name</p> </blockquote></li> <li><p>Final step is to push the application in the Heroku which is the area where you will experience the fingerprint issue.</p> <p>Open the config file in your .ssh folder wherein you will find following entry for your added account.</p> <blockquote> <p>Host heroku.account_name</p> <blockquote> <p>HostName heroku.com</p> <p>IdentityFile /home/icicle/.ssh/identity.heroku.account_name</p> <p>IdentitiesOnly yes</p> </blockquote> </blockquote> <p>Remove the existing Heroku repository remote and add the new using the following command</p> <p>Removing Heroku respository</p> <blockquote> <p>git remote rm heroku</p> </blockquote> <p>Add new Heroku respository</p> <blockquote> <p>git remote add heroku git@heroku.account_name:app_name.git</p> </blockquote> <p>Here heroku.account_name is the one which is added as Host in your ssh config file.</p> <p>Now try to push your application and it works.</p></li> </ol>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload