snap 은 설치가 쉽고 안전하며 플랫폼 간 종속성이 없는 데스크톱, 클라우드 및 IoT용 앱 패키지입니다. Snap은 수백만 명의 사용자를 보유한 Linux용 앱 스토어인 Snap Store에서 검색하고 설치할 수 있습니다.
먼저, snap 을 설치합니다.
yum install snapd
systemctl enable --now snapd.socket
ln -s /var/lib/snapd/snap /snap
설치가 끝난 후, 로그아웃 또는 시스템 재부팅을 하여야합니다. 이제 snap 을 이용하여 node-red 를 설치합니다.
snap install node-red
방화벽 설정 파일(/usr/lib/firewalld/services/node-red.xml)을 생성합니다.
<?xml version="1.0" encoding="utf-8"?>
<service>
<short>node-red</short>
<description>Node-RED is a programming tool for wiring together hardware devices, APIs and online services in new and interesting ways.</description>
<port port="1880" protocol="tcp"/>
</service>
방화벽에 적용합니다.
firewall-cmd --permanent --add-service=node-red
firewall-cmd --reload
firewall-cmd --list-all
1880 포트로 접속합니다.
반응형
'서버 > 리눅스' 카테고리의 다른 글
RockLinux 8 에서 nvidia 드라이버 설치하기 (0) | 2023.06.22 |
---|---|
CentOS 7.x snap 으로 mosquitto 설치하기 (0) | 2022.08.23 |
CentOS 7 특정 횟수 이상 TCP 접속 차단하기 (0) | 2020.10.04 |
zsh 사용하기 (0) | 2020.03.10 |
CentOS 7 SELinux 사용 (0) | 2020.03.04 |
댓글