Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 C API 调用连接到远程 MySQL 服务器(在默认端口 3306 上)mysql_real_connect()。
mysql_real_connect()
如何发现客户端主机上使用了哪个 TCP 端口?
是否可以指定我希望使用的端口?
您可以使用lsof. 在您的外壳中键入以下内容:
lsof
$ lsof | grep TCP
然后查找您的 mysql 服务器正在侦听的端口。
您也可以使用netstat. 详情可通过man netstat.
netstat
man netstat
据我所知,你不能。