Lenix

Sendmail report: “unqualified hostname unknown; sleeping for retry unqualified hostname solution

If you have configured Sendmail on your Linux system and are still unable to send emails because of a unqualified hostname error, we have a few suggestions that you can use to try and remedy the issue. In this tutorial … The post Sendmail: “unqualified hostname unknown; sleeping for retry unqualified hostname workaround first appeared […]

Sendmail report: “unqualified hostname unknown; sleeping for retry unqualified hostname solution Read More »

How to install and configure sendmail in ubuntu to send emails (you can also send them in php, you can also send anonymous emails)

How to install and configure sendmail in ubuntu to send emails (you can also send them in php, you can also send anonymous emails) 1. Install sendmail sudo apt install sendmail 2. Modify the /etc/hosts file and add the localhost.localdomain item (fully qualified domain name) sudo vim /etc/hosts Modified as follows: 127.0.0.1 localhost.localdomain localhost lenix-Swift-SF314-512

How to install and configure sendmail in ubuntu to send emails (you can also send them in php, you can also send anonymous emails) Read More »

WebRTC series video stream

Author: Tao Jinliang, senior client development engineer of NetEase Yunxin In recent years, the field of real-time audio and video has become more and more popular, and many audio and video engines in the industry are implemented based on WebRTC . This article mainly introduces the background and related technology implementation of WebRTC in video

WebRTC series video stream Read More »

CSS3 uses animation to implement a class volume jumping loading icon

<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <title></title> <style> * { margin: 0; padding: 0; } div { display: inline-block; height: 30px; line-height: 40px; text-align: center; position: relative; vertical-align: bottom; } span { display: inline-block; width: 3px; margin-bottom: 0; background-color: … The post CSS3 using animation to implement a volume-like jumping loading icon first appeared

CSS3 uses animation to implement a class volume jumping loading icon Read More »

Four image qualities of H.264 (BP, EP, MP, HP) and Profile, Level, Encoder

Introduction ~~~~~~~        First of all, it is necessary to clarify that the so-called AVC is actually the H.264 standard, which was developed by the Joint Video Team (JVT) composed of ITU-T and ISO/IEC. ITU-T named this standard H.264 ( Formerly called H.26L), while ISO/IEC calls it MPEG-4 Advanced Video Coding (AVC) It is positioned to

Four image qualities of H.264 (BP, EP, MP, HP) and Profile, Level, Encoder Read More »

The process of npm install and npm run

what is npm npm ( node ​​pakage manage) is a third-party package manager and is the default package management tool for the Node.js platform. what npm does Through npm, you can install, share, distribute code, and manage project dependencies. example: When configuring webpack, many third-party modules (modules occupy a pit) need to be installed through

The process of npm install and npm run Read More »

supervisor error: ERROR (spawn error)

1. Problem description When using supervisorctl to start the website, it prompts an error: ERROR (spawn error), as shown in the following figure: 2. Problem Analysis 1. View the supervisor configuration file For example: /etc/supervisor/conf.d/supervisor-mysite.conf [program:mysite] command =/usr/local/bin/gunicorn — bind unix:/tmp/www.sweeneys.cn.socket mysite.wsgi:application directory=/home/Sweeneys/www/mysite user=Sweeneys autostart= true autorestart= true stopasgroup= true killasgroup= true redirect_stderr= true stdout_logfile_maxbytes=200MB

supervisor error: ERROR (spawn error) Read More »