📔
My IT Blog
  • 我的技术博客
  • Windows 10
    • Windows 10 的官网下载和安装
  • Java
    • 我的Java编程作品
  • Debian
    • Debian 10.1 启用root帐户登录ssh
    • Debian 10.1 配置固定ip和DNS
    • Debian 10.1 提示没找到sudo命令
    • Debian 10.1 设置帐户具有sudo权限
    • Debian 10.1 没有ssh功能
    • Debian 10.1 下vi的操作方法
    • Debian 10.1 安装jdk8
    • Debian 10.1 安装MySQL 8
    • mysql-connector-java-[版本号].jar下载和放置教程
  • CentOS
    • CentOS 8 配置固定ip和DNS
    • CentOS 8 开启防火墙端口
    • CentOS 8 安装jdk8
    • CentOS 8 安装Tomcat 9
    • CentOS 8 安装MySQL 8
  • Linux
    • Linux版 Tomcat 9 启动时提示The APR was not found
    • Tomcat启动时提示【At least one JAR was scanned for TLDs yet contained no TLDs】
    • Linux常用命令
    • SQL常用语法命令
    • caddy启动时提示:File descriptor limit 1024 is too low for production servers
    • Caddy的下载、安装、配置、启动
    • 谷歌云创建实例后启用root密码登录的方法
    • SVN服务器端和客户端的安装、配置和使用
    • vsftpd的安装、配置和使用
Powered by GitBook
On this page

Was this helpful?

  1. Linux

caddy启动时提示:File descriptor limit 1024 is too low for production servers

提示:caddy: WARNING: File descriptor limit 1024 is too low for production servers. At least 8192 is recommended. Fix with "ulimit -n 8192". 解决方法:vi /etc/security/limits.conf 加入: * soft nofile 65535 * hard nofile 65535 * soft nproc 65535 * hard nproc 65535 root soft nofile 65535 root hard nofile 65535 root soft nproc 65535 root hard nproc 65535 然后按Esc键,输入:wq保存退出,输入命令exit注销当前帐户再登录进即生效。

PreviousSQL常用语法命令NextCaddy的下载、安装、配置、启动

Last updated 5 years ago

Was this helpful?