Projekt

Allgemein

Profil

Setup cockpit » Historie » Version 1

Jeremias Keihsler, 04.02.2020 09:56

1 1 Jeremias Keihsler
h1. Install cockpit
2
h2. Requirements
3
4
To install cockpit you will need the following:
5
* a installed and supported operating system (e.g. CentOS 8.x)
6
* root-access
7
* a fast internet connection
8
9
h2. Preliminary Note
10
11
This procedure is based on a documentation supplied by https://www.linuxtechi.com/install-use-cockpit-tool-centos8-rhel8/
12
13
h2. Install 
14
15
Install @cockpit@:
16
17
<pre><code class="bash">
18
yum install cockpit
19
</code></pre>
20
21
h2. Configure Service
22
23
<pre><code class="bash">
24
systemctl start cockpit.socket
25
systemctl enable cockpit.socket
26
</code></pre>
27
28
h2. Configure Firewall
29
30
<pre><code class="bash">
31
firewall-cmd --permanent --add-service=cockpit
32
firewall-cmd --reload
33
</code></pre>
34
35
h2. Check up and running
36
37
<pre><code class="bash">
38
systemctl status cockpit.socket
39
ss -tunlp | grep cockpit
40
ps auxf|grep cockpit
41
</code></pre>
42
43
h2. Test / Access 
44
45
@https://<Your-CentOS8/RHEL8-System-IP>:9090@