warp icon indicating copy to clipboard operation
warp copied to clipboard

Certificate has expired or is not yet valid

Open buurzx opened this issue 7 years ago • 13 comments

Hi. Install warp from source code. But after command warp open.. i get connection error. Maybe i missed something?

$ warp open goofy-dev                                                                                                                                
Opened warp: goofy-dev

[Error] Connection error: x509: certificate has expired or is not yet valid

buurzx avatar Nov 01 '17 12:11 buurzx

I'm getting the same on OS X with a brew installed version as well as install via go get. Linux version installed via linuxbrew is working fine

nikvdp avatar Nov 02 '17 17:11 nikvdp

@buurzx FYI I was able to get this working temporarily by doing warp open --insecure_tls, and warp connect --insecure_tls but this is obviously not secure.

nikvdp avatar Nov 02 '17 21:11 nikvdp

@nikvdp Thanks, this works for me.

buurzx avatar Nov 03 '17 07:11 buurzx

Update cert pls 🗡

olso avatar Dec 01 '17 19:12 olso

Same cert error with a fresh install from Homebrew (warp v0.0.3) [Error] Connection error: x509: certificate has expired or is not yet valid

ycaille avatar Jan 31 '18 16:01 ycaille

Hi guys! So sorry! Should be all fixed.

@olso @ycaille @buurzx @nikvdp are you guys using warp on a day to day basis?

spolu avatar Feb 09 '18 10:02 spolu

Is there anything I can do to help / fix ?

spolu avatar Feb 09 '18 10:02 spolu

@spolu I'm getting the same error as before on a fresh install via linuxbrew.

I don't use it regularly, opening this issue was actually the first time I'd tried to use warp! Would love to start though :)

nikvdp avatar Feb 14 '18 23:02 nikvdp

Any changes? The problem with sertificate is still relevant.

mmmm1998 avatar Mar 30 '18 20:03 mmmm1998

Is there a way to automate the certificate renewal?

xer0x avatar Apr 09 '18 16:04 xer0x

It works with the --insecure_tsl flag but would be nice if it would work without as well.

krisimmig avatar Apr 26 '18 11:04 krisimmig

This is still a problem.

$ warp open
Opened warp: xxx
Restored session: Thu May 31 19:16:44 CEST 2018

[Error] Connection error: x509: certificate has expired or is not yet valid

Version

$ brew info warp
warp: stable 0.0.3 (bottled)
Secure terminal sharing with one simple command
https://github.com/spolu/warp
/usr/local/Cellar/warp/0.0.3 (6 files, 5.4MB) *
  Poured from bottle on 2018-05-31 at 19:17:07
From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/warp.rb

Overbryd avatar May 31 '18 17:05 Overbryd

The default warpd server is now down, but you can run your own with warpd (requires an installation from source with Go`:

~$ go get -u github.com/spolu/warp/daemon/cmd/warpd
~$ warpd
2019/02/19 16:13:57.220406 Started warpd: version=0.0.3
2019/02/19 16:13:57.220686 Listening: address=:4242 tls=false

and then use:

~$ go get -u github.com/spolu/warp/client/cmd/warp
~$ WARPD_NO_TLS=true WARPD_ADDRESS=127.0.0.1:4242 warp open foo

spolu avatar Feb 19 '19 15:02 spolu