Postman launches with a blank screen
Asked Answered
P

10

34

This is now the third or fourth time that this has happened in the last couple of weeks: When I launch Postman all I get is a blank screen:

Postman blank screen

The only way to get around this that I have found is to reboot my workstation, which is of course a PITA.

I am using Ubuntu 18.04.4 LTS, 7.20.0.

Any fixes, workarounds etc are welcomed.

Protozoology answered 11/3, 2020 at 11:20 Comment(0)
I
58

I had same problem on my linux machine. Simply run the following on your terminal until they both tell you no more process to kill.

killall Postman
killall _Postman
Improbable answered 11/6, 2020 at 20:46 Comment(2)
I imagine you meant killall for the first call?Paschall
Somehow.. had to run above commands 2 times, then postman got running !Stretchy
H
7

I started facing this issue on updating to version - v8.2.3,

Try below approach, which worked for me..

Step 1: Add windows environment variable: POSTMAN_DISABLE_GPU, with the value: true

Step 2: From the same blank screen open a New Postman Window (File -> New Postman Window)

Hug answered 24/4, 2021 at 18:58 Comment(0)
E
5

None of these worked for me, I had to go to "System Monitor" and kill a load of processes with names like "postman --no-sandbox", "postman --type=zygote".

Eccrinology answered 23/9, 2021 at 16:14 Comment(1)
This worked for me. Just run ps eux | grep postman and you see all those processes and you can kill them.Isagogics
B
2

Expanding on the previous answer, I put a script together that performs the loop as many times as needed to get Postman working again:

#!/bin/bash

OUTPUT=$(killall Postman 2>&1)

while [ "$OUTPUT" != "Postman: no process found" ]; do
    OUTPUT=$(killall Postman 2>&1)
done

OUTPUT=$(killall _Postman 2>&1)

while [ "$OUTPUT" != "_Postman: no process found" ]; do
    OUTPUT=$(killall _Postman 2>&1)
done

Make sure you set the permission for the file correctly so you can execute it:

chmod 700 kill_all_postman_procs.sh

To run it:

./kill_all_postman_procs.sh or may you need to do sudo ./kill_all_postman_procs.sh

Boutin answered 3/12, 2020 at 9:0 Comment(0)
O
2

It's all about GPU driver and setting, it may happen when you don't force disable that setting and running on dual monitor.

On windows 10, to disable it you can disable it from gpu control panel, POSTMAN_DISABLE_GPU, or try to run postman before plugging the 2nd monitor

Observance answered 26/11, 2021 at 9:44 Comment(0)
V
1

FOr all options listed above failed to work. My os is Ubuntu 18. The only solution was to install a version that worked. Before you install this version uninstall the currently installed afterwards install this snap version

snap install --channel=v7/stable postman

If you have this specific version installed. run the following

snap refresh --channel=v7/stable postman
Vivie answered 17/3, 2022 at 21:9 Comment(0)
H
1

For me non of the solutions worked, reinstalling did't work either, I just signed out and re-signed in, and it worked.

Hyrcania answered 5/4 at 11:31 Comment(0)
C
0

This issue came up overnight for me. I resolved this issue by just reinstalling Postman. It kept all my settings and collections. You might like this quick way instead of fiddling with settings.

Constellation answered 28/3, 2022 at 7:59 Comment(0)
S
0

According to this - https://github.com/postmanlabs/postman-app-support/issues/9193 and figuring out that issue is not fixed for 2 years, I recommend switching to another tool, like advanced rest client from google.

Studdard answered 5/10, 2022 at 17:15 Comment(0)
B
0

For me (after updating from v10.11 to 10.12) i was able to resolve the "blank tabs" issue by clearing the cache and reloading. This can be done via the help menu as follows -

enter image description here

This behaviour also occurred on a Windows 10 install and not Linux.

Barfield answered 4/4, 2023 at 9:53 Comment(1)
I signed out and back in, which I believe clears the cache (so basically what you done), and it seemed to fix the issue for me on Linux.Catholicize

© 2022 - 2024 — McMap. All rights reserved.