我最近买了一台MacBook并从Ubuntu迁移到macOS。当我运行sshuttle并在我的mac中开始ssh-tunneling时,会发生意外。在Ubuntu中,我的adb继续完美运行,但是在macOS中,adb停止使用错误SELECT
kd_masalah, total_bobot
FROM
(SELECT -- SubQuery
SUM(bobot) AS total_bobot, -- Gives the sum of values in bobot column relating to a particular group (grouped column)
kd_masalah
FROM
your_table_name
GROUP BY kd_masalah -- Grouping of same values in the column
)AS s having MAX(total_bobot); -- return the values having max sum in total_bobot
。
答案 0 :(得分:0)
在我的情况下,问题是由于sshuttle。 sshuttle还自动转发了localhost请求,因此与adb的连接丢失了。
我克隆了回购并回到ef83a5c
并再次构建了程序。大约两周前发现了this bug partially fixed once,现在它又在开发中。
git clone https://github.com/sshuttle/sshuttle.git
git checkout ef83a5c
sudo ./setup.py install