Blame

930790 Anonymous 2026-04-13 23:54:16 1
# Vip Docs: Deploying Pixelstreaming server
2
3
ssh into krypton at 192.168.40.60
4
5
The pixelstreaming server is a system deamon called signalling. So you can simply use systemctl to interact with it.
6
7
**Taking the server down**
8
```
9
systemctl stop signalling
10
```
11
12
**Deploying the server**
13
```
14
systemctl start signalling
15
```
16
17
**Updating the frontend**
18
19
1. CD to the frontend dir:
20
21
```
22
cd /opt/vip/pixelstreaming/PixelStreamingIsn2/WebServers/Frontend/implementations/typescript
23
```
24
25
2. Git pull if you need to.
26
27
```
28
git pull
29
```
30
31
3. Build the frontend (you must be in `/opt/vip/pixelstreaming/PixelStreamingIsn2/WebServers/Frontend/implementations/typescript`)
32
33
```
34
npm run build-all
35
```
36
37
4. Restart the deamon
38
39
```
40
systemctl stop signalling
41
```
42
```
43
systemctl start signalling
44
```