"IRC"-Set up IRC service (Ubuntu) @20210225

Problem Description

We need to use IRC's instant notification (we use the Linux version, other instant messaging software, either no Linux client, or already in use (we use Slack for office), or the configuration is cumbersome, in short, we have such a demand)

This note will record: How to build IRC service

solution

The first step, installation service

apt-get install inspircd

The second step, modify the configuration

Modify the /etc/inspircd/inspircd.conf configuration:

<bind address="<0.0.0.0>" port="<6667>" type="clients">

The following is a non-essential configuration:

<server name="irc.example.com" description="Example IRC Server" network="EXAMPLEIRC">

The third step, start the service

systemctl start inspircd.service

references

Deploying an IRC Server on Ubuntu | Sam Hewitt

Guess you like

Origin blog.csdn.net/u013670453/article/details/114071076