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.
如何计算正在运行的mysql进程数和mysql连接数?这两个数字之间有什么关系?
运行一台服务器时,“进程”或线程之间没有区别。由于主机操作系统“看到” MySQL 启动的线程的方式,会出现多个进程。
如果您确定只启动了一个服务器,您可以通过运行以下命令检查实际进程数:ps auxww|grep mysql
您还可以通过在 MySQL 配置中设置:max_user_connections 来限制连接数。
如果您有多个 MySQL 实例正在运行,您可以通过运行以下命令来检查您的线程:show full processlist