Fatal: the Postfix mail system is already running 解决办法_win服务器

Fatal: the Postfix mail system is already running 的解决方案

【问题情境】

当启动postfix服务时出现如下错误提示:

# service postfix start
Starting Postfix Mail Transport Agent: postfixpostfix/postfix-script:
fatal: the Postfix mail system is already running
failed!

此外,postfix的status报告postfix is not running.

# service postfix status
postfix is not running.

【问题原因】

也许是postfix上一次强行关闭时,没有删除自身的锁。启动时发现lock存在而无法运行。

【解决方案】

1.Postfix的master PID文件(即锁)还存在/var/spool/postfix/pid目录下。进入该目录删除所文件即可:

# cd /var/spool/postfix/pid
# ls
master.pid
# rm master.pid

2.删除master.pid文件后启动postfix服务。

# service postfix start
Starting Postfix Mail Transport Agent: postfix

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索mail
, system
, ...
, postfix
, The
, Fatal:
出错解决方法
postfix邮件服务器、postfix服务器、postfix webmail、postfix extmail、postfix mail命令,以便于您获取更多的相关知识。

时间: 2024-12-26 06:39:00

Fatal: the Postfix mail system is already running 解决办法_win服务器的相关文章

Windows平台的 PHP 报错 Fatal error: Class COM not found in 的解决方法_win服务器

在 Win Server 08 往上搭载的 IIS 跑 php 性能提升不少,但还是觉得不太舒服... 某日在调试一个win上的php生产环境时,一段php代码返回了错误: Fatal error: Class 'COM' not found in XXXXXXXXX 没发现 COM 类,php代码主要是调用一些系统的信息,初想应该是php没配置好,在stackoverflow找到答案,是讨论xampp的,要延伸开来,我加了几个要点: ★ php 根目录的 ext 文件夹下确保存有 php_co

Oracle 11g sys,system 密码忘记设置解决办法

原文:Oracle 11g sys,system 密码忘记设置解决办法 1.启动sqlplus 2.请输入用户名:  sqlplus/as sysdba 3.输入口令: 直接回车 4.连接到:    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production    With the Partitioning, OLAP, Data Mining and Real Application Testing option

无法读取配置节 system.serviceModel 因为它缺少节声明的解决方法_win服务器

在Windows Server2008 R2中的IIS7中部署WCF服务时报出如题错误: HTTP 错误 500.19 - Internal Server Error无法访问请求的页面,因为该页的相关配置数据无效. 详细错误信息模块 IIS Web Core 通知 未知 处理程序 尚未确定 错误代码 0x80070032 配置错误 无法读取配置节"system.serviceModel",因为它缺少节声明. 解决办法:在"服务器管理器"的"功能"

Fatal error: Out of memory (allocated 786432)提示解决办法

错误提示: Fatal error: Out of memory (allocated 786432) (tried to allocate 393216 bytes) in E:xxxxlibrariescommon.lib.php on line 3135 解决办法 一,在你程序页面加入  代码如下 复制代码 ini_set('memory_limit',"256M") 即可. 二,在php.ini中修改 打开php.ini 修改  代码如下 复制代码 memory_limit =

Could not load type System.ServiceModel.Activation.HttpModule解决办法

Could not load type 'System.ServiceModel.Activation.HttpModule' from assembly 'System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'.] 上网搜了下,问题产生的原因是在安装了IIS后又装了其他版本的framework, 导致assemble中的版本和程序使用的版本不一致了.解决办法是使用 aspne

Fatal error: Maximum execution time of 30 错误解决办法

错误提示 php 出现 Fatal error: Maximum execution time of 30 seconds exceeded in D:xxuserlogin.class.php on line 10的解决办法: 修改php.ini: max_execution_time = 300 时间,然后重起服务iis 或者在程序写 set_time_limit(时间); //0为无限制. max_execution_time = 30; Maximum execution time of

Fatal error: Cannot redeclare class 原因分析与解决办法

错误提示 Fatal error: Cannot redeclare class -. 从字面来看也很好理解,说明是重复定义了类,找了一下自己的代码,是因为存在同名的类导致的,修改了类名就好了. 原因分析 1.在同一个文件中重复声明了两次同名的类: 例如:    代码如下 复制代码 <?php   class Foo {}     // some code here     class Foo {}   ?>  在第二个 Foo 的地方就会报错. 解决:去掉第二个Foo,或者重命名. 为了防止

System.UnauthorizedAccessException:拒绝访问的处理办法._win服务器

在用Windows2003系统做ASP.NET做项目时遇到 说明: 执行当前 Web 请求期间,出现未处理的异常.请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息. 异常详细信息: System.UnauthorizedAccessException: 对路径"--"的访问被拒绝. "/"应用程序中的服务器错误. ------------------------------------------------------------------

php中mail函数发送文件失败解决办法

之前的那台服务器转移过来后,发现网站用mail()发送邮件发不了.但是发现sendmail明明已经安装. 如果没有安装sendmail可以执行  代码如下 复制代码 yum install sendmail 对了,主机名要设置一个域名格式的.例如:sangsir.com 不然重启sendmail的时候会特别久才启动起来.(否则要等很久)    代码如下 复制代码 hostname sangsir.com 接着看看sendmail是否正常运行    代码如下 复制代码 service sendma