- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在 Google Cloud Platform (GCP) 中,磁盘完成安装后我无法通过 SSH 连接到我的实例。
详情:
在 Windows 7 PC 上通过 google cloud sdk shell cmd windows 我在 C:\>
运行以下命令:
python "C:\Users\user's name\path\to\py\create_instance_working.py" --name inst-test2 --zone us-central1-a direct-to
pic-1234 cc-test1
它运行 create_instance_working.py
,如下所示:
import argparse
import os
import time
import googleapiclient.discovery
from six.moves import input
# [START list_instances]
def list_instances(compute, project, zone):
result = compute.instances().list(project=project, zone=zone).execute()
return result['items']
# [END list_instances]
# [START create_instance]
def create_instance(compute, project, zone, name, bucket):
image_response = compute.images().getFromFamily(
project='direct-topic-1234', family='theFam').execute()
source_disk_image = image_response['selfLink']
machine_type = "projects/direct-topic-1234/zones/us-central1-a/machineTypes/n1-standard-4"
startup_script = open(
os.path.join(
os.path.dirname(__file__), 'startup-script_working.sh'), 'r').read()
print(machine_type)
config = {
'name': name,
'machineType': machine_type,
'disks': [
{
'boot': True,
'autoDelete': True,
'initializeParams': {
'sourceImage': source_disk_image,
'diskSizeGb': '15',
}
}, {
"deviceName": "disk-2",
"index": 1,
"interface": "SCSI",
"kind": "compute#attachedDisk",
"mode": "READ_WRITE",
"source": "projects/direct-topic-1234/zones/us-central1-a/disks/disk-2",
"type": "PERSISTENT"
}
],
'networkInterfaces': [{
'network': 'global/networks/default',
'accessConfigs': [
{'type': 'ONE_TO_ONE_NAT', 'name': 'External NAT'}
]
}],
"serviceAccounts": [
{
"email": "123456789-compute@developer.gserviceaccount.com",
"scopes": [
"https://www.googleapis.com/auth/devstorage.read_only",
"https://www.googleapis.com/auth/logging.write",
"https://www.googleapis.com/auth/monitoring.write",
"https://www.googleapis.com/auth/servicecontrol",
"https://www.googleapis.com/auth/service.management.readonly",
"https://www.googleapis.com/auth/trace.append"
]
}
],
'metadata': {
'items': [{
'key': 'startup-script',
'value': startup_script
}, {
'key': 'bucket',
'value': bucket
}]
}
}
return compute.instances().insert(
project=project,
zone=zone,
body=config).execute()
# [END create_instance]
# [START delete_instance]
def delete_instance(compute, project, zone, name):
return compute.instances().delete(
project=project,
zone=zone,
instance=name).execute()
# [END delete_instance]
# [START wait_for_operation]
def wait_for_operation(compute, project, zone, operation):
print('Waiting for operation to finish...')
while True:
result = compute.zoneOperations().get(
project=project,
zone=zone,
operation=operation).execute()
if result['status'] == 'DONE':
print("done.")
if 'error' in result:
raise Exception(result['error'])
return result
time.sleep(1)
# [END wait_for_operation]
# [START run]
def main(project, bucket, zone, instance_name, wait=True):
compute = googleapiclient.discovery.build('compute', 'v1')
print('Creating instance.')
operation = create_instance(compute, project, zone, instance_name, bucket)
wait_for_operation(compute, project, zone, operation['name'])
instances = list_instances(compute, project, zone)
print('Instances in project %s and zone %s:' % (project, zone))
for instance in instances:
print(' - ' + instance['name'])
print("""
Instance created.
It will take a minute or two for the instance to complete work.
Check this URL: http://storage.googleapis.com/{}/output.png
Once the image is uploaded press enter to delete the instance.
""".format(bucket))
# if wait:
# input()
#
# print('Deleting instance.')
#
# operation = delete_instance(compute, project, zone, instance_name)
# wait_for_operation(compute, project, zone, operation['name'])
print('all done with instance.')
if __name__ == '__main__':
print('in here 3')
main('direct-topic-1234', 'cc-test1', 'us-central1-a', 'inst-test1')
print('in here 4')
# [END run]
它调用如下所示的启动脚本 (startup-script_working.sh
):
sudo mkfs.ext4 -m 0 -F -E lazy_itable_init=0,lazy_journal_init=0,discard /dev/sdb
sudo mount -o discard,defaults /dev/sdb /var
sudo chmod a+w /var
sudo cp /etc/fstab /etc/fstab.backup
echo UUID=`sudo blkid -s UUID -o value /dev/sdb` /var ext4 discard,defaults,nofail 0 2 | sudo tee -a /etc/fstab
两者均改编自:
在 GCP 控制台中,当我看到实例绿灯时,我立即单击实例 ssh
按钮并成功连接到实例。但是,如果我继续打开与实例的新 ssh 连接,它们都会工作,直到我在 /var
上的挂载完成。通过在有效的 ssh 连接(通常是第一个连接)中查找它,我看到挂载已完成,方法是:df -h
。我可以看到 /dev/sdb 197G 60M 197G 1%/var
。在 mount 没有出现的失败尝试之前。但是在它出现之后,没有任何东西会连接到它。在控制台中尝试了 >_
按钮(shell)执行 gcloud compute ssh [instance name]
。尝试使用 [用户名]@[外部 IP]
的 putty。
我试过只等待 5 分钟以通过 ssh 连接到实例(届时挂载将完成),这也不起作用。
重要提示:如果我注释掉所有启动脚本行,我可以无限期地连接,没有 SSH问题。我试过创建一个新磁盘并附加它。
看来是磁盘挂载导致了 ssh 问题。
早期的 ssh 连接继续正常运行,即使我无法创建新连接。
当 ssh 连接失败时,我会在 ssh 窗口中看到:"连接失败
与 SSH 服务器通信时发生错误。检查服务器和网络配置。”
知道是什么原因造成的吗?
实例为linux发行版SUSE 12
我的安装说明来自这里:
https://cloud.google.com/compute/docs/disks/add-persistent-disk
如果有避免这种情况的好方法(请提供),但我真的很想知道我做错了什么。
我是 GCP、云、python、ssh 和 Linux 的新手。 (这个问题的一切都是新的!)
如果我注释掉启动脚本行,按照描述运行所有内容,ssh 到保险,手动运行启动脚本命令,我没有得到任何错误,但我仍然需要测试我是否在之后创建另一个 ssh 连接。我们这样做并报告。
最佳答案
安装在 /var
上,其中包含与 ssh
相关的数据(除其他外)使得系统可以访问 /var
看到空白磁盘。数据必须保存在别处(cp -ar
),挂载到 var,然后将数据移回。
我之前的回答是错误的。
关于python - gcp : after disk is *finished* mounting I cannot ssh to my instance,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47948275/
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题? Update the question所以它是on-topic对于堆栈溢出。 10年前关闭。 Improve this qu
我错误地设置了 ssh key 的密码。 但是每次使用 key 时都要输入密码很烦人。 我想删除我的 key 的密码: $ ssh-keygen -p -f 但是,我担心 key 会被更改。 由于我
你好!我在连接到远程主机时遇到问题。我忘记了 ssh 密码,但我有 SSH key 的指纹。是否可以仅使用指纹进行连接? 最佳答案 不会。机器的指纹仅用于验证您正在连接您认为正在连接的机器。它是用于避
我有一个 Ubuntu 服务器 example.com 并且我已经通过 ssh 进入了它。但只有在我通过 ssh 进入它之后,我才意识到我打算执行 ssh -L 8000:localhost:9000
通过终端,我可以多次 SSH 连接到服务器: (客户端--->网关--->服务器1---->服务器2---) 但是现在要通过Java的JSch库来实现,怎么办呢?首先尝试了端口转发,但在终端上我没有这
在创建一个新的仓库(本地 + 远程)之后,我正在尝试推送提交。但是我遇到了 SSH key 的问题 在我的 ~/.ssh/config 中,我有一个 gitlab 条目定义为 Host MyRepoJ
我发现 ssh 和 ssh-keygen 有一种奇怪的行为:它们根本没有反应。 Cygwin 以管理员权限启动并正常运行。主机 192.168.1.1 已启动,我可以远程桌面到它: 当我尝试时: $
为什么eval语句返回 Illegal variable name $ eval "$(ssh-agent -s)" Illegal variable name. 最佳答案 请尝试$ eval "ss
我正在尝试通过以下命令从我的本地主机连接到远程主机。但是远程主机中有一个设置,我们登录后不久它会提示输入徽章 ID、密码和登录原因,因为它在 profile 中是这样编码的文件在 remote-hos
有时,我被迫在不稳定的互联网连接上使用 ssh。 ping some.doma.in PING some.doma.in (x.x.x.x): 56 data bytes Request timeou
This thread is a response to the titled question : Why ssh-agent doesn't forward my SSH certificate
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8年前关闭。 Improve this q
因此,我在10.10.10.x子网中有一堆机器,基本上所有这些机器都以相同的方式配置。我将这些与我的10.10.11.x子网中的计算机区分开,后者具有不同的用途。 我希望能够输入“ssh 10.x”以
我不想在 vagrant box 上创建新的 SSH key 对,而是想重新使用主机上的 key 对,使用 agent forwarding 。我尝试过设置 config.ssh.forward_ag
我有一台服务器,可以通过ssh通过pubkey身份验证通过ssh访问: ssh "Host" -l "my identity" 这很好。但是,我无法在一个命令中使用我的私钥进行端口重定向和标识(这是我
创建一对 key 并通过 ssh-copy-id 将公钥发送到服务器后,我仍然无法在没有密码的情况下登录 ssh -v user@host 的输出 debug1:在/home/pumba/.ssh/k
我被困在 Permission denied (publickey) hell 中,试图将公钥复制到远程服务器,以便 Jenkins 可以在构建期间同步文件。 运行: sudo ssh-copy-id
我正在尝试通过我大学的代理服务器ssh到我们实验室的服务器之一。我们的目标是使用paramiko使其自动化,但我试图首先了解终端机级别中正在发生的事情。 我试过了 ssh -o ProxyComman
我在说明问题上有问题,我想通过SSH切换到我的Cisco交换机,但是我遇到了一些麻烦 我写了两个脚本, 有了这个我没有任何问题,我可以通过运行脚本并输入用户名和密码来更改默认网关: from Exsc
每个人 我目前正在使用一个集群,并且会经常使用“ssh”连接到它。有时我需要打开多个终端。因此,每次需要连接时,我都必须输入“ssh username@cluster.com”,然后输入“密码”(我在
我是一名优秀的程序员,十分优秀!