การติดตั้ง sendmail ของบรรทัดคำสั่ง Ubuntu 16.04 แขวนคอ


46

ฉันพยายามติดตั้ง sendmail แต่มันหยุดทำงานในขณะที่พยายามสร้างใบรับรอง SSL ฉันได้ยกเลิกกระบวนการติดตั้งและขั้นตอนการฆ่าในภายหลังซึ่งเป็นการล็อกแพ็คเกจใหม่ใด ๆ จากการติดตั้ง

แต่เมื่อใดก็ตามที่ฉันเรียกใช้apt-get install <package_name>มันกลับไปที่การติดตั้ง sendmail และพยายามติดตั้ง ssl certs

ฉันรีบูทระบบแล้ว แต่ปัญหายังคงอยู่

ฉันจะแก้ไขปัญหานี้ได้อย่างไร

ข้อมูล CLI

sudo dpkg --configure -a
Setting up sendmail-bin (8.15.2-3) ...
Updating sendmail environment ...
Reading configuration from /etc/mail/sendmail.conf.
Validating configuration.
Writing configuration to /etc/mail/sendmail.conf.
Writing /etc/cron.d/sendmail.
Disabling HOST statistics file(/var/lib/sendmail/host_status).
Reading configuration from /etc/mail/sendmail.conf.
Validating configuration.
Writing configuration to /etc/mail/sendmail.conf.
Writing /etc/cron.d/sendmail.
Could not open /etc/mail/databases(No such file or directory), creating it.
Reading configuration from /etc/mail/sendmail.conf.
Validating configuration.
Creating /etc/mail/databases...

Checking filesystem, this may take some time - it will not hang!
  ...   Done.

Checking for installed MDAs...
sasl2-bin not installed, not configuring sendmail support.

To enable sendmail SASL2 support at a later date, invoke "/usr/share/sendmail/update_auth"


Creating/Updating SSL(for TLS) information
Creating /etc/mail/tls/starttls.m4...
Creating SSL certificates for sendmail.

พบปัญหาที่คล้ายกันที่นี่แต่ไม่มีวิธีแก้ปัญหา OP เพิ่งเปลี่ยนระบบปฏิบัติการ


สวัสดีข้อมูลสนับสนุน (ฉันเพิ่งพบสิ่งนี้) สคริปต์ตัวติดตั้ง sendmail ให้ข้อโต้แย้งที่ไม่ถูกต้องกับ openssl บรรทัดนี้โดยเฉพาะกำลังรอข้อมูลจาก STDIN ซึ่งสคริปต์ไม่ได้จัดหาและไม่ได้ระบุพารามิเตอร์ -in openssl dsaparam 2048 - หมด ฉันไม่แน่ใจเกี่ยวกับวิธีแก้ปัญหา อาจส่งข้อผิดพลาดไปยังผู้ดูแลแพคเกจ sendmail?
Jotham

ฉันจะติดต่อกับผู้ดูแลได้อย่างไร ฉันต้องแก้ไขปัญหานี้อย่างน้อย ฉันติดขัดมากขึ้นแล้ว 1 วันในขณะนี้ ฉันไม่สามารถติดตั้งแพ็คเกจอื่นได้เช่นกัน
Sisir

คำตอบ:


100

ฉันเพิ่งประสบปัญหานี้เช่นกัน ดูเหมือนว่าจะวางสาย 240 ของสคริปต์/usr/share/sendmail/update_tlsนี้

เพื่อแก้ปัญหาฉันดำเนินการคำสั่งต่อไปนี้:

cd /etc/mail/tls
sudo openssl dsaparam -out sendmail-common.prm 2048
sudo chown root:smmsp sendmail-common.prm
sudo chmod 0640 sendmail-common.prm
sudo dpkg --configure -a

ตอนนี้มันควรจะติดตั้ง


16
มันใช้งานได้ดีขอบคุณ หมายเหตุด้านหนึ่ง: หาก dpkg ถูกล็อคเนื่องจากการติดตั้งแบบหยุดทำงานคุณจะต้องฆ่า pid update_sendmail ก่อน [ps -A | grep update_sendmail] ก่อนเรียกใช้ dpkg --configure -a
pragmar

8
หลังจากการฆ่า dpkg ที่ติดค้างแล้วได้รับการประมวลผลและรัน dpkg --configure -a ตอนนี้จะค้างอยู่ที่ "กำลังอัปเดต / etc / mail / aliases ... "
Alex Shchur

5
โอ้เดี๋ยวก่อนตอนนี้จริง ๆ แล้วมันดี ใช้เวลาสักครู่เพื่อทำสิ่งต่าง ๆ
Alex Shchur

4
เหมาะสำหรับ Ubuntu 14.04 ด้วย
Lavi Avigdor

4
ฉันได้รับข้อผิดพลาดนี้: Warning: 3 database(s) sources were not found, (but were created) please investigate.ฉันควรกังวลไหม
user10089632
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.