We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
λ php dep deploy -vvv
[localhost] > git rev-parse --abbrev-ref HEAD [localhost] < master ✈︎ Deploying master on my.projecthome.com • done on [my.projecthome.com] ➤ Executing task deploy:prepare [my.projecthome.com] > echo $0 [my.projecthome.com] < ssh multiplexing initialization [my.projecthome.com] < mux_client_request_session: read from master failed: Connection reset by peer [my.projecthome.com] < ControlSocket /c/Users/gprin/.ssh/[email protected] already exists, disabling multiplexing [my.projecthome.com] < bash [my.projecthome.com] > if [ ! -d /var/www/html/projecthome ]; then mkdir -p /var/www/html/projecthome; fi [my.projecthome.com] < mux_client_request_session: read from master failed: Connection reset by peer [my.projecthome.com] < ControlSocket /c/Users/gprin/.ssh/[email protected] already exists, disabling multiplexing [my.projecthome.com] > if [ ! -L /var/www/html/projecthome/current ] && [ -d /var/www/html/projecthome/current ]; then echo 'true'; fi [my.projecthome.com] < mux_client_request_session: read from master failed: Connection reset by peer [my.projecthome.com] < ControlSocket /c/Users/gprin/.ssh/[email protected] already exists, disabling multiplexing [my.projecthome.com] > cd /var/www/html/projecthome && if [ ! -d .dep ]; then mkdir .dep; fi [my.projecthome.com] < mux_client_request_session: read from master failed: Connection reset by peer [my.projecthome.com] < ControlSocket /c/Users/gprin/.ssh/[email protected] already exists, disabling multiplexing [my.projecthome.com] > cd /var/www/html/projecthome && if [ ! -d releases ]; then mkdir releases; fi [my.projecthome.com] < mux_client_request_session: read from master failed: Connection reset by peer
I've tried disabling multiplexing and this happens:
λ php dep deploy -o ssh_multiplexing=false -vvv
[localhost] > git rev-parse --abbrev-ref HEAD [localhost] < master ✈︎ Deploying master on my.projecthome.com • done on [my.projecthome.com] ➤ Executing task deploy:prepare [my.projecthome.com] > echo $0 [my.projecthome.com] < bash [my.projecthome.com] > if [ ! -d /var/www/html/projecthome ]; then mkdir -p /var/www/html/projecthome; fi [my.projecthome.com] > if [ ! -L /var/www/html/projecthome/current ] && [ -d /var/www/html/projecthome/current ]; then echo 'true'; fi [my.projecthome.com] > cd /var/www/html/projecthome && if [ ! -d .dep ]; then mkdir .dep; fi [my.projecthome.com] > cd /var/www/html/projecthome && if [ ! -d releases ]; then mkdir releases; fi [my.projecthome.com] > cd /var/www/html/projecthome && if [ ! -d shared ]; then mkdir shared; fi [my.projecthome.com] < ssh: connect to host my.projecthome.com port 22: Connection timed out ➤ Executing task deploy:failed • done on [my.projecthome.com] ✔ Ok [1ms] ➤ Executing task deploy:unlock [my.projecthome.com] > rm -f /var/www/html/projecthome/.dep/deploy.lock [my.projecthome.com] < ssh: connect to host my.projecthome.com port 22: Connection timed out
I've already removed the OpenSSH client from Win10 as it wasn't able to connect to the machine somehow. Any hint? Love the project btw.
The text was updated successfully, but these errors were encountered:
I have this problem as well. Deployer would get into ssh, create a couple folders on the server, then ssh would timeout while running.
I gave up trying to figure this out using the various windows bash options. I tried many different configurations and bash options.
To do this on windows 10, I just installed WSL (Windows subsystem for linux).... Here is a video on installing php on it (its just like ubuntu): https://www.jeffgeerling.com/blog/2018/installing-php-7-and-composer-on-windows-10-using-ubuntu-wsl (Here is microsofts docs: https://docs.microsoft.com/en-us/windows/wsl/install-win10). You have access to the C: drive via /mnt/c/ in WSL and run deployer just fine.
I pretty much just use WSL bash for deployer... Using gitbash for everything else because git in WSL is sloooow (microsoft/WSL#873)
Sorry, something went wrong.
Closing this issue as inactive. If you still have this problem, please open a new issue.
No branches or pull requests
[localhost] > git rev-parse --abbrev-ref HEAD
[localhost] < master
✈︎ Deploying master on my.projecthome.com
• done on [my.projecthome.com]
➤ Executing task deploy:prepare
[my.projecthome.com] > echo $0
[my.projecthome.com] < ssh multiplexing initialization
[my.projecthome.com] < mux_client_request_session: read from master failed: Connection reset by peer
[my.projecthome.com] < ControlSocket
/c/Users/gprin/.ssh/[email protected] already exists, disabling multiplexing
[my.projecthome.com] < bash
[my.projecthome.com] > if [ ! -d /var/www/html/projecthome ]; then mkdir -p /var/www/html/projecthome; fi
[my.projecthome.com] < mux_client_request_session: read from master failed: Connection reset by peer
[my.projecthome.com] < ControlSocket /c/Users/gprin/.ssh/[email protected] already exists, disabling multiplexing
[my.projecthome.com] > if [ ! -L /var/www/html/projecthome/current ] && [ -d /var/www/html/projecthome/current ]; then echo 'true'; fi
[my.projecthome.com] < mux_client_request_session: read from master failed: Connection reset by peer
[my.projecthome.com] < ControlSocket /c/Users/gprin/.ssh/[email protected] already exists, disabling multiplexing
[my.projecthome.com] > cd /var/www/html/projecthome && if [ ! -d .dep ]; then mkdir .dep; fi
[my.projecthome.com] < mux_client_request_session: read from master failed: Connection reset by peer
[my.projecthome.com] < ControlSocket /c/Users/gprin/.ssh/[email protected] already exists, disabling multiplexing
[my.projecthome.com] > cd /var/www/html/projecthome && if [ ! -d releases ]; then mkdir releases; fi
[my.projecthome.com] < mux_client_request_session: read from master failed: Connection reset by peer
I've tried disabling multiplexing and this happens:
[localhost] > git rev-parse --abbrev-ref HEAD
[localhost] < master
✈︎ Deploying master on my.projecthome.com
• done on [my.projecthome.com]
➤ Executing task deploy:prepare
[my.projecthome.com] > echo $0
[my.projecthome.com] < bash
[my.projecthome.com] > if [ ! -d /var/www/html/projecthome ]; then mkdir -p /var/www/html/projecthome; fi
[my.projecthome.com] > if [ ! -L /var/www/html/projecthome/current ] && [ -d /var/www/html/projecthome/current ]; then echo 'true'; fi
[my.projecthome.com] > cd /var/www/html/projecthome && if [ ! -d .dep ]; then mkdir .dep; fi
[my.projecthome.com] > cd /var/www/html/projecthome && if [ ! -d releases ]; then mkdir releases; fi
[my.projecthome.com] > cd /var/www/html/projecthome && if [ ! -d shared ]; then mkdir shared; fi
[my.projecthome.com] < ssh: connect to host my.projecthome.com port 22: Connection timed out
➤ Executing task deploy:failed
• done on [my.projecthome.com]
✔ Ok [1ms]
➤ Executing task deploy:unlock
[my.projecthome.com] > rm -f /var/www/html/projecthome/.dep/deploy.lock
[my.projecthome.com] < ssh: connect to host my.projecthome.com port 22: Connection timed out
I've already removed the OpenSSH client from Win10 as it wasn't able to connect to the machine somehow. Any hint? Love the project btw.
The text was updated successfully, but these errors were encountered: