将Openshift在线应用程序从一个帐户迁移到另一个帐户

时间:2015-10-20 03:30:40

标签: openshift

有什么方法可以将部署在一个Openshift Online帐户中的应用程序迁移到另一个帐户?

1 个答案:

答案 0 :(得分:3)

您可以保存和恢复OpenShift Online设备的快照。这是在这里逐步描述的: Migrating an Application to Another Gear

但是,由于您将从一个帐户保存快照并恢复到另一个帐户,因此请确保在执行此操作时指定您的登录信息。假设您已完成两个帐户的设置,并创建了一个新的' newApp'在新帐户上,它将如下所示:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
     STPopupController *popupController = [[STPopupController alloc] initWithRootViewController:[[UIStoryboard storyboardWithName:@"Main" bundle:nil] instantiateViewControllerWithIdentifier:@"SecondViewController"]];

    popupController.cornerRadius = 4;
 popupController.marray1=[NSMutableArray arrayWithObject:[self.first objectAtIndex:indexPath.row]];
    popupController.marray2=[NSMutableArray arrayWithObject:[self.second objectAtIndex:indexPath.row]];
    popupController.marray3=[NSMutableArray arrayWithObject:[self.third objectAtIndex:indexPath.row]];

    [popupController presentInViewController:self];


    [self.navigationController pushViewController:popupController animated:YES];



    NSLog(@"%@",[NSMutableArray arrayWithObject:[self.first objectAtIndex:indexPath.row]]);

}

我建议您查看developers.openshift.com有关如何使用OpenShift的类似管理指南。上面链接的文章很容易找到。