1.创建用户并指定ssl连接
grant all on . to test% identified by imooc require SSL(X509); 2.查看是否使用ssl
SELECT ssl_type From mysql.user Where user"test" 3.配置用户必须使用ssl
ALTER USER test% REQUIRE SSL(X509); FLUSH PRIVILEGES; 注意ÿ…
目录 1.概述
2.Single Reactor
3.muduo库的Multiple Reactors模型如下 1.概述
维基百科对Reactor模型的解释 The reactor design pattern is an event handling pattern for handling service requests delivered concurrently to a service handler by one or more inputs.…