美文网首页
ab 简单测试并发

ab 简单测试并发

作者: 明明就_c565 | 来源:发表于2021-11-03 15:19 被阅读0次

    安装

    yum -y install httpd-tools

    调整系统配置

    vim /etc/security/limits.conf => 设置进程并发文件数(永久生效)

    # 用户 软硬限制 限制类型 值

    root soft nofile 65535

    root hard nofile 65535

    *  soft nofile 65535

    *  hard nofile 65535 

    # * 表示所有用户。

    # soft 软限制,当用户使用超出设定值系统会发出告警。

    # hard 硬限制,绝对限制,用户使用绝对不能超出设置的值。

    # nofile 限制类型,进程可同时打开的并发文件描述符数量。

    测试

    ab -n 200 -c 200 -s 10 -p login.json -e sa.csv https://172.118.59.80/api/user/terminalLogin

    参考:

    https://www.cnblogs.com/network-ren/p/12376933.html

    相关文章

      网友评论

          本文标题:ab 简单测试并发

          本文链接:https://www.haomeiwen.com/subject/dpqczltx.html