Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom installation doesn't work #973

Closed
Stanpol opened this issue May 28, 2018 · 4 comments
Closed

Custom installation doesn't work #973

Stanpol opened this issue May 28, 2018 · 4 comments

Comments

@Stanpol
Copy link

Stanpol commented May 28, 2018

OS / Environment (where do you run Algo on)

Linux scw-2c622e 4.4.0-119-generic #143-Ubuntu SMP Mon Apr 2 16:08:24 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux

Cloud Provider (where do you deploy Algo to)

Scaleway, VPS

Summary of the problem

I'm trying to install the latest algo via 7. Install to existing Ubuntu 16.04 server (Advanced). During the installation I get the following fatal error:

 __________________________________________________
< TASK [wireguard : WireGuard enabled and started] >
 --------------------------------------------------
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||

fatal: [123.456.123.456]: FAILED! => {"changed": false, "msg": "Unable to start
 service wg-quick@wg0: Job for [email protected] failed because the control
 process exited with error code. See \"systemctl status [email protected]\"
 and \"journalctl -xe\" for details.\n"}
 _________________________________________________
< RUNNING HANDLER [wireguard : restart wireguard] >
 -------------------------------------------------
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||

Steps to reproduce the behavior

  1. Select 7
  2. Enter your IP
  3. Wait

Any ideas what could have gone wrong?

@jackivanov
Copy link
Collaborator

jackivanov commented May 28, 2018

You need to provide more debug information on this, If you can't, I suggest you using a cloud installation instead of the advanced

@ealeksandrov
Copy link
Contributor

@Stanpol you can also check #972 for same error and possible solution (but on different and unsupported cloud provider).

@jackivanov
Copy link
Collaborator

This is might be a solution #974. We support Scaleway directly, try to avoid using advanced installation with them

@Stanpol
Copy link
Author

Stanpol commented May 29, 2018

@jackivanov FYI, this way of WireGuard installation resolved the problem:

---

- name: Determine the running kernel release
  command: uname -r
  register: kernel_release

- name: Add the WireGuard PPA
  apt_repository:
    repo: 'ppa:wireguard/wireguard'

- name: Install the WireGuard packages
  apt:
    name: "{{ item }}"
  with_items:
    - linux-headers-{{ kernel_release.stdout }}
    - linux-headers-generic
    - wireguard-dkms
    - wireguard-tools

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants