如果你的保证内存为256M,突发512M,请不要让你的内存超过保证内存256M,或者临界256M,有的VPS显示内存为突发内存,但哪不是让你长期占有的内存,长期使用超过保证内存会很多问题出现,如给停掉VPS,网站访问变慢,所以尽量通过优化PHP和NGINX的线程和占用时间来释放内存。
vps很多时候遇到sendmail邮件发送不了和发送慢的问题,首先你要确定你开了sendmail服务,详细不讲述,我主要讲慢,不讲开。
提示:要改php.ini里面的
1 |
<pre class="wrap:true lang:default decode:true ">sendmail_path = /usr/sbin/sendmail -t -i |
或者你可以尝试
1 |
<pre class="wrap:true lang:default decode:true ">sendmail_path = /usr/sbin/sendmail -f sale@caohuan.com -t -i |
又或者看下你的/etc/sysconfig/iptables
加个
1 |
<pre class="wrap:true lang:default decode:true ">-A INPUT -p tcp -m state --state NEW -m tcp --dport 25 -j ACCEPT |
先测试,给自己发送个文件,建立个m.php
1 2 |
<pre class="wrap:true lang:default decode:true "> < ?php $txt = "hello-cao"; $mail = "你的邮箱地址"; mail($mail, "one day i see y", $txt); echo "ok!"; ?> |
用命令:php m.php;echo
查邮箱,估计收不到,就是不行。
先改vim /etc/hosts
原文大概是这样
1 2 3 |
<pre class="wrap:true lang:default decode:true ">127.0.0.1 localhost.localdomain localhost # Auto-generated hostname. Please do not remove this comment. 192.61.19.19 caohuan |
改之后
1 2 3 |
<pre class="wrap:true lang:default decode:true ">127.0.0.1 localhost.localdomain localhost caohuan # Auto-generated hostname. Please do not remove this comment. 192.61.19.19 caohuan |
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。