blob: c9daba68ded281fdcd13531c28d197b10c8e28d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
Troubleshooting
===============
This document contains some useful debug information.
OSX
---
If you're having troubles with old versions of RiseupVPN that did not have an
uninstaller, and the new installer is not cleanly replacing the previous
install, you might need to manually clean things up. You will need root access to
stop the privileged helper.
First, see if the helper is running:
.. code::bash
pgrep bitmask-helper
To stop it:
.. code::bash
sudo launchctl unload /Library/LaunchDaemons/se.leap.bitmask-helper.plist
To start it:
.. code::bash
sudo launchctl load /Library/LaunchDaemons/se.leap.bitmask-helper.plist
sudo launchctl start /Library/LaunchDaemons/se.leap.bitmask-helper.plist
Check that it's running:
.. code::bash
pgrep bitmask-helper
Manually check that the web api is running, and that it reports a version that matches what you currently have installed:
.. code::bash
curl http://localhost:7171/version
Also, you can check that the path near the end of the file /Library/LaunchDaemons/se.leap.bitmask-helper.plist
matches the current path where you installed RiseupVPN.app.
Cleaning up
~~~~~~~~~~~
If you have things messed up and you want to completely delete the bitmask-helper:
.. code::bash
sudo launchctl unload /Library/LaunchDaemons/se.leap.bitmask-helper.plist
sudo rm -rf /Library/LaunchDaemons/se.leap.bitmask-helper.plist
Make sure that "pgrep bitmask-helper" does not return any pid.
Now you can move /Applications/RiseupVPN.app to the Trash, and launch a
recent installer to get a clean install.
|