运行docker mysql
docker run --name mysql -e MYSQL_ROOT_PASSWORD=root -d mysql:5.7
mysql docker运行容器
Go代码:
package main
import (
"database/sql"
_ "github.com/go-sql-driver/mysql"
)
func main() {
db, err := sql.Open("mysql", "root:root@tcp(172.17.0.2:3306)/test-db")
if
我在GCP上的一个实例和AWS上的一个实例之间建立了一个静态VPN连接。我可以从GCP的机器(10.132.0.2)切换到AWS机器(10.16.191.45),反之亦然。
现在我需要从Google函数连接到AWS机器。
我尝试过制作一个VPC连接器,在云函数中的出口连接设置中添加它,并将IP范围从连接器(10.130.0.0/28)添加到VPN静态路由,但是当我试图从云函数在AWS中ping实例时,总是得到
line 45, in connect self._s.connect((host, int(port))) ConnectionRefusedError: [Errno 111] Co
我试图用安装pip,但是我得到了:
Downloading/unpacking python-ping
Could not find a version that satisfies the requirement python-ping (from versions: 2011.10.12.11fc9f7, 2011.10.12.1d8e600, 2011.10.13.12050a5, 2011.10.17.376a019)
Cleaning up...
No distributions matching the version for python-ping
Storing debug
在C#控制台中,应用程序需要执行telnet实用程序,并知道所需端口是否打开
var ping = new Ping();
var rply = ping.Send("192.168.1.117");
if (rply.Status == IPStatus.Success)
{
Console.WriteLine("up");
Console.WriteLine("Press any key to continue");