Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.58 KB | None | 0 0
  1. Job for postfix.service failed. See 'systemctl status postfix.service' and 'journalctl -xn' for details.
  2.  
  3. postfix.service - Postfix Mail Transport Agent
  4. Loaded: loaded (/usr/lib/systemd/system/postfix.service; enabled)
  5. Active: failed (Result: timeout) since Wed 2015-11-18 16:58:32 ICT; 6min ago
  6. Process: 40961 ExecStart=/usr/sbin/postfix start (code=killed, signal=TERM)
  7. Process: 40957 ExecStartPre=/usr/libexec/postfix/chroot-update (code=exited, status=0/SUCCESS)
  8. Process: 40953 ExecStartPre=/usr/libexec/postfix/aliasesdb (code=exited, status=0/SUCCESS)
  9.  
  10. Nov 18 16:58:32 cpanel.redsand.vn systemd[1]: postfix.service operation timed out. Terminating.
  11. Nov 18 16:58:32 cpanel.redsand.vn systemd[1]: Failed to start Postfix Mail Transport Agent.
  12. Nov 18 16:58:32 cpanel.redsand.vn systemd[1]: Unit postfix.service entered failed state.
  13.  
  14. alias_database = hash:/etc/aliases
  15. alias_maps = hash:/etc/aliases
  16. broken_sasl_auth_clients = yes
  17. command_directory = /usr/sbin
  18. config_directory = /etc/postfix
  19. daemon_directory = /usr/libexec/postfix
  20. data_directory = /var/lib/postfix
  21. debug_peer_level = 2
  22. debugger_command = PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin xxgdb $daemon_directory/$process_name $process_id & sleep 5
  23. delay_warning_time = 4
  24. disable_vrfy_command = yes
  25. dovecot_destination_recipient_limit = 1
  26. html_directory = no
  27. inet_interfaces = all
  28. mail_owner = postfix
  29. mailq_path = /usr/bin/mailq.postfix
  30. manpage_directory = /usr/share/man
  31. message_size_limit = 20480000
  32. mydestination = localhost.$mydomain, localhost, $mydomain
  33. mydomain = cpanel.redsand.vn
  34. myhostname = cpanel.redsand.vn
  35. mynetworks = 127.0.0.1, 113.160.170.38
  36. newaliases_path = /usr/bin/newaliases.postfix
  37. queue_directory = /var/spool/postfix
  38. readme_directory = /usr/share/doc/postfix-2.2.2/README_FILES
  39. recipient_delimiter = +
  40. relay_domains = proxy:mysql:/etc/sentora/configs/postfix/mysql-relay_domains_maps.cf
  41. sample_directory = /usr/share/doc/postfix-2.2.2/samples
  42. sendmail_path = /usr/sbin/sendmail.postfix
  43. setgid_group = postdrop
  44. smtp_use_tls = no
  45. smtpd_banner = $myhostname ESMTP
  46. smtpd_client_restrictions =
  47. smtpd_data_restrictions = reject_unauth_pipelining
  48. smtpd_helo_required = yes
  49. smtpd_helo_restrictions =
  50. smtpd_recipient_restrictions = permit_sasl_authenticated, permit_mynetworks, reject_unauth_destination, reject_non_fqdn_sender, reject_non_fqdn_recipient, reject_unknown_recipient_domain
  51. smtpd_sasl_auth_enable = yes
  52. smtpd_sasl_local_domain = $myhostname
  53. smtpd_sasl_path = private/auth
  54. smtpd_sasl_security_options = noanonymous
  55. smtpd_sasl_type = dovecot
  56. smtpd_sender_restrictions =
  57. smtpd_use_tls = no
  58. soft_bounce = yes
  59. unknown_local_recipient_reject_code = 550
  60. virtual_alias_maps = proxy:mysql:/etc/sentora/configs/postfix/mysql-virtual_alias_maps.cf, regexp:/etc/sentora/configs/postfix/virtual_regexp
  61. virtual_gid_maps = static:12
  62. virtual_mailbox_base = /var/sentora/vmail
  63. virtual_mailbox_domains = proxy:mysql:/etc/sentora/configs/postfix/mysql-virtual_domains_maps.cf
  64. virtual_mailbox_maps = proxy:mysql:/etc/sentora/configs/postfix/mysql-virtual_mailbox_maps.cf
  65. virtual_minimum_uid = 991
  66. virtual_transport = dovecot
  67. virtual_uid_maps = static:991
  68.  
  69. $ sudo rm -v /var/lib/postfix/master.lock
  70. $ sudo systemctl start postfix
  71.  
  72. $ ps faxu | grep -i [p]ostfix
  73. root 12854 0.0 0.2 92004 2236 ? Ss 07:23 0:00 /usr/libexec/postfix/master -w
  74. postfix 12855 0.0 0.4 98320 4088 ? S 07:23 0:00 _ pickup -l -t fifo -u
  75. postfix 12856 0.0 0.4 98388 4128 ? S 07:23 0:00 _ qmgr -l -t fifo -u
  76. postfix 12872 0.0 0.4 98332 4672 ? S 07:29 0:00 _ tlsmgr -l -t unix -u
  77.  
  78. $ sudo kill -9 12854 12855 12856 12872
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement