annotate Sphinx/source/faq/redhat.rst @ 681:9c23356b9464
typo: replaced "CheckRevision" by "CheckRevisions"
author |
Sebastien Jodogne <s.jodogne@gmail.com> |
date |
Mon, 10 May 2021 12:30:57 +0200 |
parents |
901e8961f46e |
children |
|
rev |
line source |
0
|
1 .. highlight:: bash
|
|
2 .. _redhat:
|
|
3
|
|
4 Accessing an Orthanc instance running inside Fedora/RHEL/CentOS
|
|
5 ===============================================================
|
|
6
|
|
7 For remote access to Orthanc, you will have to open the 4242 and the
|
|
8 8042 ports on iptables, that are closed by default::
|
|
9
|
|
10 $ sudo iptables -I INPUT -p tcp --dport 8042 -j ACCEPT
|
|
11 $ sudo iptables -I INPUT -p tcp --dport 4242 -j ACCEPT
|
|
12 $ sudo iptables-save
|