search
HomeDatabaseMysql Tutorial服务器优化Sysctl、Apache、MySQL_MySQL
服务器优化Sysctl、Apache、MySQL_MySQLJun 01, 2016 pm 02:11 PM
apachefortheoptimizationserverConfiguration

ApacheMySQL优化


  服务器的负载能力,很大程度上取决于系统管理员的配置和优化能力。相同的硬件、不同的软件配置,会造成截然不同的效果。下面我将给大家介绍一下如何优化 sysctrl, Apache 以及 MySQL 。请注意,所有配置均为取决于个人,请根据自己的实际情况做调整。
  
  配置Sysctl
  
  编辑此文件:
  
  nano -w /etc/sysctl.conf
  
  如果该文件为空,则输入以下内容,否则请根据情况自己做调整:
  
  # Controls source route verification
  # Default should work for all interfaces
  net.ipv4.conf.default.rp_filter = 1
  # net.ipv4.conf.all.rp_filter = 1
  # net.ipv4.conf.lo.rp_filter = 1
  # net.ipv4.conf.eth0.rp_filter = 1
  
  # Disables IP source routing
  # Default should work for all interfaces
  net.ipv4.conf.default.accept_source_route = 0
  # net.ipv4.conf.all.accept_source_route = 0
  # net.ipv4.conf.lo.accept_source_route = 0
  # net.ipv4.conf.eth0.accept_source_route = 0
  
  # Controls the System Request debugging functionality of the kernel
  kernel.sysrq = 0
  
  # Controls whether core dumps will append the PID to the core filename.
  # Useful for debugging multi-threaded applications.
  kernel.core_uses_pid = 1
  
  # Increase maximum amount of memory allocated to shm
  # Only uncomment if needed!
  # kernel.shmmax = 67108864
  
  # Disable ICMP Redirect Acceptance
  # Default should work for all interfaces
  net.ipv4.conf.default.accept_redirects = 0
  # net.ipv4.conf.all.accept_redirects = 0
  # net.ipv4.conf.lo.accept_redirects = 0
  # net.ipv4.conf.eth0.accept_redirects = 0
  
  # Enable Log Spoofed Packets, Source Routed Packets, Redirect Packets
  # Default should work for all interfaces
  net.ipv4.conf.default.log_martians = 1
  # net.ipv4.conf.all.log_martians = 1
  # net.ipv4.conf.lo.log_martians = 1
  # net.ipv4.conf.eth0.log_martians = 1
  
  # Decrease the time default value for tcp_fin_timeout connection
  net.ipv4.tcp_fin_timeout = 25
  
  # Decrease the time default value for tcp_keepalive_time connection
  net.ipv4.tcp_keepalive_time = 1200
  
  # Turn on the tcp_window_scaling
  net.ipv4.tcp_window_scaling = 1
  
  # Turn on the tcp_sack
  net.ipv4.tcp_sack = 1
  
  # tcp_fack should be on because of sack
  net.ipv4.tcp_fack = 1
  
  # Turn on the tcp_timestamps
  net.ipv4.tcp_timestamps = 1
  
  # Enable TCP SYN Cookie Protection
  net.ipv4.tcp_syncookies = 1
  
  # Enable ignoring broadcasts request
  net.ipv4.icmp_echo_ignore_broadcasts = 1
  
  # Enable bad error message Protection
  net.ipv4.icmp_ignore_bogus_error_responses = 1
  
  # Make more local ports available
  # net.ipv4.ip_local_port_range = 1024 65000
  
  # Set TCP Re-Ordering value in kernel to ‘5′
  net.ipv4.tcp_reordering = 5
  
  # Lower syn retry rates
  net.ipv4.tcp_synack_retries = 2
  net.ipv4.tcp_syn_retries = 3
  
  # Set Max SYN Backlog to ‘2048′
  net.ipv4.tcp_max_syn_backlog = 2048
  
  # Various Settings
  net.core.netdev_max_backlog = 1024
  
  # Increase the maximum number of skb-heads to be cached
  net.core.hot_list_length = 256
  
  # Increase the tcp-time-wait buckets pool size
  net.ipv4.tcp_max_tw_buckets = 360000
  
  # This will increase the amount of memory available for socket input/output queues
  net.core.rmem_default = 65535
  net.core.rmem_max = 8388608
  net.ipv4.tcp_rmem = 4096 87380 8388608
  net.core.wmem_default = 65535
  net.core.wmem_max = 8388608
  net.ipv4.tcp_wmem = 4096 65535 8388608
  net.ipv4.tcp_mem = 8388608 8388608 8388608
  net.core.optmem_max = 40960
  
  如果希望屏蔽别人 ping 你的主机,则加入以下代码:
  
  # Disable ping requests
  net.ipv4.icmp_echo_ignore_all = 1
  
  编辑完成后,请执行以下命令使变动立即生效:
  
  /sbin/sysctl -p
  /sbin/sysctl -w net.ipv4.route.flush=1
  
  MySQL优化
  
  编辑MySQL的配置文件:
  
  nano /etc/my.cnf
  
  输入以下内容:
  
  [mysqld]
  connect_timeout=15
  interactive_timeout=100
  join_buffer_size=1M
  key_buffer=128M
  max_allowed_packet=16M
  max_connections=500
  max_connect_errors=10
  myisam_sort_buffer_size=64M
  read_buffer_size=1M
  read_rnd_buffer_size=768K
  sort_buffer_size=1M
  table_cache=1024
  thread_cache_size=100
  thread_concurrency=4
  wait_timeout=300
  query_cache_size=32M
  query_cache_limit=1M
  query_cache_type=1
  skip-innodb
  
  请注意,以上配置适用于512M~1024M内存,如内存更大的话请自行做调整。给项目增加内存会加快速度,但是使用过多的内存而导致启用swap的话,会极大的导致系统效率下降。其中 thread_concurrency 这项配置,单CPU的话请设置为2,双CPU的话请设置为4。
  
  Apache优化
  
  以下优化适用于 Apache 1.3 系列,如果你用的是 2.0 系列的话,请自行做调整和判断。
  
  确认 Apache 的配置文件位置并开始编辑:
  
  locate httpd.conf
  nano -w /path/to/httpd.conf
  
  httpd.conf的文件有许多内容,笔者就拿出需要做优化的:
  
  KeepAlive On
  MaxKeepAliveRequests 1000
  KeepAliveTimeout 3
  
  MinSpareServers 8
  MaxSpareServers 13
  
  MaxRequestsPerChild 50
  
  将 KeepAliveTimeout 设定到较小的数字将有助于减少服务器上的无用等待链接,一定程度上能增加服务器负载。
  
  另外,下面这条不算优化,但是是Apache安全相关:
  
  ServerSignature Off
  ServerTokens ProductOnly
  
  将 ServerSignature 关闭,并增加 ServerTokens ProductOnly 可以使常人无法检测到Apache的实际版本号,有助于Apache的安全。
  
  以上所做的这些优化在某种程度上会增强服务器的负载性能。但请注意,最佳的配置是实践出来的。
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
修复:Windows 11 无法优化游戏的问题修复:Windows 11 无法优化游戏的问题Apr 30, 2023 pm 01:28 PM

GeforceExperience不仅为您下载最新版本的游戏驱动程序,它还提供更多!最酷的事情之一是它可以根据您的系统规格优化您安装的所有游戏,为您提供最佳的游戏体验。但是一些游戏玩家报告了一个问题,即GeForceExperience没有优化他们系统上的游戏。只需执行这些简单的步骤即可在您的系统上解决此问题。修复1–为所有游戏使用最佳设置您可以设置为所有游戏使用最佳设置。1.在您的系统上打开GeForceExperience应用程序。2.GeForceExperience面

Nginx性能优化与安全设置Nginx性能优化与安全设置Jun 10, 2023 am 09:18 AM

Nginx是一种常用的Web服务器,代理服务器和负载均衡器,性能优越,安全可靠,可以用于高负载的Web应用程序。在本文中,我们将探讨Nginx的性能优化和安全设置。一、性能优化调整worker_processes参数worker_processes是Nginx的一个重要参数。它指定了可以使用的worker进程数。这个值需要根据服务器硬件、网络带宽、负载类型等

Windows 11 Insiders 现在对在窗口模式下运行的传统游戏进行了优化Windows 11 Insiders 现在对在窗口模式下运行的传统游戏进行了优化Apr 25, 2023 pm 04:28 PM

如果您在Windows机器上玩旧版游戏,您会很高兴知道Microsoft为它们计划了某些优化,特别是如果您在窗口模式下运行它们。该公司宣布,最近开发频道版本的内部人员现在可以利用这些功能。本质上,许多旧游戏使用“legacy-blt”演示模型在您的显示器上渲染帧。尽管DirectX12(DX12)已经利用了一种称为“翻转模型”的新演示模式,但Microsoft现在也正在向DX10和DX11游戏推出这一增强功能。迁移将改善延迟,还将为自动HDR和可变刷新率(VRR)等进一步增强打

如何使用缓存优化PHP和MySQL如何使用缓存优化PHP和MySQLMay 11, 2023 am 08:52 AM

随着互联网的不断发展和应用的扩展,越来越多的网站和应用需要处理海量的数据和实现高流量的访问。在这种背景下,对于PHP和MySQL这样的常用技术,缓存优化成为了非常必要的优化手段。本文将在介绍缓存的概念及作用的基础上,从两个方面的PHP和MySQL进行缓存优化的实现,希望能够为广大开发者提供一些帮助。一、缓存的概念及作用缓存是指将计算结果或读取数据的结果缓存到

一篇学会本地知识库对LLM的性能优化一篇学会本地知识库对LLM的性能优化Jun 12, 2023 am 09:23 AM

昨天一个跑了220个小时的微调训练完成了,主要任务是想在CHATGLM-6B上微调出一个能够较为精确的诊断数据库错误信息的对话模型来。不过这个等了将近十天的训练最后的结果令人失望,比起我之前做的一个样本覆盖更小的训练来,差的还是挺大的。这样的结果还是有点令人失望的,这个模型基本上是没有实用价值的。看样子需要重新调整参数与训练集,再做一次训练。大语言模型的训练是一场军备竞赛,没有好的装备是玩不起来的。看样子我们也必须要升级一下实验室的装备了,否则没有几个十天可以浪费。从最近的几次失败的微调训练来看

如何通过优化查询中的LIKE操作来提高MySQL性能如何通过优化查询中的LIKE操作来提高MySQL性能May 11, 2023 am 08:11 AM

MySQL是目前最流行的关系型数据库之一,但是在处理大量数据时,MySQL的性能可能会受到影响。其中,一种常见的性能瓶颈是查询中的LIKE操作。在MySQL中,LIKE操作是用来模糊匹配字符串的,它可以在查询数据表时用来查找包含指定字符或者模式的数据记录。但是,在大型数据表中,如果使用LIKE操作,它会对数据库的性能造成影响。为了解决这个问题,我们可

Snapchat优化指甲追踪效果,与OPI合推AR指甲油滤镜Snapchat优化指甲追踪效果,与OPI合推AR指甲油滤镜May 30, 2023 am 09:19 AM

5月26日消息,SnapchatAR试穿滤镜技术升级,并与OPI品牌合作,推出指甲油AR试用滤镜。据悉,为了优化AR滤镜对手指甲的追踪定位,Snap在LensStudio中推出手部和指甲分割功能,允许开发者将AR图像叠加在指甲这种细节部分。据青亭网了解,指甲分割功能在识别到人手后,会给手部和指甲分别设置掩膜,用于渲染2D纹理。此外,还会识别用户个人指甲的底色,来模拟指甲油真实上手的效果。从演示效果来看,新的AR指甲油滤镜可以很好的模拟浅蓝磨砂质地。实际上,此前Snapchat曾推出AR指甲油试用

Go语言中的优化和重构的方法Go语言中的优化和重构的方法Jun 02, 2023 am 10:40 AM

Go语言是一门相对年轻的编程语言,虽然从语言本身的设计来看,其已经考虑到了很多优化点,使得其具备高效的性能和良好的可维护性,但是这并不代表着我们在开发Go应用时不需要优化和重构,特别是在长期的代码积累过程中,原来的代码架构可能已经开始失去优势,需要通过优化和重构来提高系统的性能和可维护性。本文将分享一些在Go语言中优化和重构的方法,希望能够对Go开发者有所帮

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.