Github 403 ошибка push failed

I was able to clone a copy of this repo over HTTPS authenticated. I’ve made some commits and want to push back out to the GitHub server. Using Cygwin on Windows 7 x64.

C:cygwinhomeXPheriorCodelunch_call>git push
Password:
error: The requested URL returned error: 403 while accessing https://MichaelDrog
alis@github.com/derekerdmann/lunch_call.git/info/refs

fatal: HTTP request failed

Also set it up with verbose mode. I’m still pretty baffled.

C:cygwinhomeXPheriorCodelunch_call>set GIT_CURL_VERBOSE=1

C:cygwinhomeXPheriorCodelunch_call>git push
Password:
* Couldn't find host github.com in the _netrc file; using defaults
* About to connect() to github.com port 443 (#0)
*   Trying 207.97.227.239... * 0x23cb740 is at send pipe head!
* Connected to github.com (207.97.227.239) port 443 (#0)
* successfully set certificate verify locations:
*   CAfile: C:Program Files (x86)Git/bin/curl-ca-bundle.crt
  CApath: none
* SSL connection using AES256-SHA
* Server certificate:
*        subject: 2.5.4.15=Private Organization; 1.3.6.1.4.1.311.60.2.1.3=US; 1.
3.6.1.4.1.311.60.2.1.2=California; serialNumber=C3268102; C=US; ST=California; L
=San Francisco; O=GitHub, Inc.; CN=github.com
*        start date: 2011-05-27 00:00:00 GMT
*        expire date: 2013-07-29 12:00:00 GMT
*        subjectAltName: github.com matched
*        issuer: C=US; O=DigiCert Inc; OU=www.digicert.com; CN=DigiCert High Ass
urance EV CA-1
*        SSL certificate verify ok.
> GET /derekerdmann/lunch_call.git/info/refs?service=git-receive-pack HTTP/1.1
User-Agent: git/1.7.4.3282.g844cb
Host: github.com
Accept: */*
Pragma: no-cache

< HTTP/1.1 401 Authorization Required
< Server: nginx/1.0.4
< Date: Thu, 15 Sep 2011 22:44:41 GMT
< Content-Type: text/plain
< Connection: keep-alive
< Content-Length: 55
< WWW-Authenticate: Basic realm="GitHub"
<
* Ignoring the response-body
* Expire cleared
* Connection #0 to host github.com left intact
* Issue another request to this URL: 'https://MichaelDrogalis@github.com/dereker
dmann/lunch_call.git/info/refs?service=git-receive-pack'
* Couldn't find host github.com in the _netrc file; using defaults
* Re-using existing connection! (#0) with host github.com
* Connected to github.com (207.97.227.239) port 443 (#0)
* 0x23cb740 is at send pipe head!
* Server auth using Basic with user 'MichaelDrogalis'
> GET /derekerdmann/lunch_call.git/info/refs?service=git-receive-pack HTTP/1.1
Authorization: Basic XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
User-Agent: git/1.7.4.3282.g844cb
Host: github.com
Accept: */*
Pragma: no-cache

< HTTP/1.1 401 Authorization Required
< Server: nginx/1.0.4
< Date: Thu, 15 Sep 2011 22:44:41 GMT
< Content-Type: text/plain
< Connection: keep-alive
< Content-Length: 55
* Authentication problem. Ignoring this.
< WWW-Authenticate: Basic realm="GitHub"
* The requested URL returned error: 401
* Closing connection #0
* Couldn't find host github.com in the _netrc file; using defaults
* About to connect() to github.com port 443 (#0)
*   Trying 207.97.227.239... * 0x23cb740 is at send pipe head!
* Connected to github.com (207.97.227.239) port 443 (#0)
* successfully set certificate verify locations:
*   CAfile: C:Program Files (x86)Git/bin/curl-ca-bundle.crt
  CApath: none
* SSL re-using session ID
* SSL connection using AES256-SHA
* old SSL session ID is stale, removing
* Server certificate:
*        subject: 2.5.4.15=Private Organization; 1.3.6.1.4.1.311.60.2.1.3=US; 1.
3.6.1.4.1.311.60.2.1.2=California; serialNumber=C3268102; C=US; ST=California; L
=San Francisco; O=GitHub, Inc.; CN=github.com
*        start date: 2011-05-27 00:00:00 GMT
*        expire date: 2013-07-29 12:00:00 GMT
*        subjectAltName: github.com matched
*        issuer: C=US; O=DigiCert Inc; OU=www.digicert.com; CN=DigiCert High Ass
urance EV CA-1
*        SSL certificate verify ok.
* Server auth using Basic with user 'MichaelDrogalis'
> GET /derekerdmann/lunch_call.git/info/refs HTTP/1.1
Authorization: Basic xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
User-Agent: git/1.7.4.3282.g844cb
Host: github.com
Accept: */*
Pragma: no-cache

* The requested URL returned error: 403
* Expire cleared
* Closing connection #0
error: The requested URL returned error: 403 while accessing https://MichaelDrog
alis@github.com/derekerdmann/lunch_call.git/info/refs

fatal: HTTP request failed

These are the versions of git and curl that I have:

C:UsersXPherior>git --version
git version 1.7.4.msysgit.0

C:UsersXPherior>curl --version
curl 7.21.7 (amd64-pc-win32) libcurl/7.21.7 OpenSSL/0.9.8r zlib/1.2.5
Protocols: dict file ftp ftps gopher http https imap imaps ldap pop3 pop3s rtsp
smtp smtps telnet tftp
Features: AsynchDNS GSS-Negotiate Largefile NTLM SSL SSPI libz

asked Sep 15, 2011 at 22:45

Mike's user avatar

12

I just got the same problem and just figured out what’s cause.

Github seems only supports ssh way to read&write the repo, although https way also displayed ‘Read&Write’.

So you need to change your repo config on your PC to ssh way:

  1. Edit .git/config file under your repo directory.
  2. Find url=entry under section [remote "origin"].
  3. Change it from:
    url=https://MichaelDrogalis@github.com/derekerdmann/lunch_call.git
    to:
    url=ssh://git@github.com/derekerdmann/lunch_call.git
    That is, change all the texts before @ symbol to ssh://git
  4. Save config file and quit. now you could use git push origin master to sync your repo on GitHub.

zeFree's user avatar

zeFree

2,1302 gold badges31 silver badges38 bronze badges

answered Oct 14, 2011 at 18:26

Xiao's user avatar

XiaoXiao

12.1k2 gold badges29 silver badges36 bronze badges

18

To definitely be able to login using https protocol, you should first set your authentication credential to the git Remote URI:

git remote set-url origin https://yourusername@github.com/user/repo.git

Then you’ll be asked for a password when trying to git push.

In fact, this is on the http authentication format. You could set a password too:

https://youruser:password@github.com/user/repo.git

You should be aware that if you do this, your github password will be stored in plaintext in your .git directory, which is obviously undesirable.

answered Jul 6, 2012 at 19:41

Thiago Macedo's user avatar

Thiago MacedoThiago Macedo

6,1511 gold badge21 silver badges22 bronze badges

20

One small addition to Sean’s answer.

Instead of editing .git/config file manually, you can use git remote set-url command.

In your case it should be:

git remote set-url origin ssh://git@github.com/derekerdmann/lunch_call.git

I find it easier and cleaner, than messing around with dot-files.

  • help.github.com: Changing a remote’s URL

Community's user avatar

answered Jun 4, 2012 at 22:29

fetsh's user avatar

fetshfetsh

1,9091 gold badge16 silver badges17 bronze badges

1

Edit .git/config file under your repo directory

Find url= entry under section [remote "origin"]

Change it from url=https://github.com/rootux/my-repo.git to
https://USERNAME@github.com/rootux/my-repo.git

where USERNAME is your github user name

answered Nov 7, 2012 at 9:39

Gal Bracha's user avatar

Gal BrachaGal Bracha

18.7k11 gold badges71 silver badges86 bronze badges

3

The other answers that suggest switching to SSH sort of miss the point. HTTPS is supported, but you must log in with you GITHUB password, not your SSH passphrase (which was what was giving me the same exact error).

I was having the same problem, but making sure to use my actual GitHub password at the terminal password prompt fixed the solution with no alteration to the config, or resorting to SSH.

The reason it is important to note this, is many public institutions (such as my school) will block SSH, but allow HTTPS (which is the only reason I started cloning over HTTPS in the first place).

Hope that helps anyone else having the same issue…

answered Jan 17, 2012 at 17:27

BMB's user avatar

BMBBMB

1,59813 silver badges10 bronze badges

4

If you are using windows, sometimes this may happen because Windows stores credentials for outer repo (in our case github) in its own storage. And credentials that saved there can be different from those you need right now.

enter image description here

So to avoid this problem, just find github in this storage and delete saved credentials. After this, while pushing git will request your credentials and will allow you to push.

answered Apr 18, 2018 at 7:34

Andrew Gans's user avatar

Andrew GansAndrew Gans

6906 silver badges9 bronze badges

2

Same error and resolution on Mac OS X.

Everything was working fine till I created a new account on GitHub and tried to push

$ git push -u origin master

And got the error:

remote: Permission to NEWUSER/NEWREPO.git denied to OLDUSER. fatal: unable to access ‘https://github.com/NEWUSER/NEWREPO.git/’: The requested URL returned error: 403

It should have fixed by setting the user.name either for global or current repo

$ git config –-global user.name NEWUSER
$ git config user.name NEWUSER

But it didn’t.

I got it fixed by deleting the OLDUSER associated with GitHub from Keychain Access app under Passwords section. Then the push command went successful.

$ git push -u origin master

reference

Laurel's user avatar

Laurel

5,94414 gold badges30 silver badges57 bronze badges

answered Nov 10, 2014 at 11:36

zeeawan's user avatar

zeeawanzeeawan

6,6372 gold badges50 silver badges54 bronze badges

2

This works for me -:

git remote set-url origin https://username@github.com/user/repo.git

Hope it helps

Jeff Hammond's user avatar

Jeff Hammond

5,3143 gold badges28 silver badges45 bronze badges

answered Sep 27, 2015 at 21:41

stevensagaar's user avatar

2

I think @deepwaters got the answer correct for older versions. The HTTPS URL needs to have the username. I had git 1.7.0.4 and git push origin master wouldn’t even ask for a password till I added it.

answered Jun 27, 2012 at 14:44

nisah's user avatar

nisahnisah

2,4683 gold badges22 silver badges20 bronze badges

0

answered Jun 20, 2012 at 19:03

gsf's user avatar

gsfgsf

1,76816 silver badges11 bronze badges

1

A 403 code is «Forbidden». The server saw your request and refused it. Do you have permission to push to that repository?

answered Sep 16, 2011 at 0:32

Nick Veys's user avatar

Nick VeysNick Veys

23.3k4 gold badges45 silver badges64 bronze badges

3

A lot of answers here, but this is what solved my problem.

Since July 2020 you must use Token authentication to access GitHub if you are using HTTPS.

So you must generate an access token in your profile settings page and use it as your password. Check the boxes necessary to write to the repository.

Now add your username to the repo with this command:

git remote set-url origin https://yourusername@github.com/user/repo.git

When you try to push, it will ask for your password. Enter your newly generated token.

If you are still having trouble pushing, use the web interface to fork it as a personal repo to isolate any permission problem. You’ll be able to focus to solve the auth problem.

answered Jul 29, 2021 at 23:58

neves's user avatar

nevesneves

32k25 gold badges153 silver badges188 bronze badges

Figured it out. I cloned over HTTPS. Setting up my public SSH keys, cloning over SSH, and pushing over SSH fixed it.

answered Sep 16, 2011 at 3:29

Mike's user avatar

MikeMike

19.1k11 gold badges55 silver badges72 bronze badges

3

I faced the same error and the cause was stupid — I did not have privileges to commit to selected repository. I did not know that I have to

  1. fork selected project first
  2. clone repository locally
  3. commit my changes locally
  4. push changes to my github clone
  5. request pull request to upstream

as described in https://help.github.com/categories/63/articles

answered Mar 2, 2014 at 14:54

Leos Literak's user avatar

Leos LiterakLeos Literak

8,73319 gold badges80 silver badges153 bronze badges

2

I actually had a very simple fix to this. All i did was edit the git config file differently after cloning the repository. The remote origin url is what you need to edit in your default config file. It should look like seen below

[core]
    repositoryformatversion = 0
    filemode = true
    bare = false
    logallrefupdates = true
[remote "origin"]
    fetch = +refs/heads/*:refs/remotes/origin/*
    url = https://*username*@github.com/*username*/*repository*.git
[branch "master"]
    remote = origin
    merge = refs/heads/master

answered Oct 13, 2015 at 23:00

Akah's user avatar

AkahAkah

1,38914 silver badges19 bronze badges

3

Do this for a temporary fix

git push -u https://username:password@github.com/username/repo_name.git master

answered Sep 19, 2018 at 15:41

prashantitis's user avatar

prashantitisprashantitis

1,7872 gold badges23 silver badges50 bronze badges

0

  1. Click on your repository
  2. On the right hand side, click on «Settings»
  3. On the left hand side option panel, click on «Collaborators»
  4. Add the person name you know in GitHub
  5. Click «Add Collaborators»

After this our «Push to Git» worked fine.

Teepeemm's user avatar

Teepeemm

4,3015 gold badges35 silver badges57 bronze badges

answered Mar 13, 2015 at 13:38

Krishna's user avatar

KrishnaKrishna

911 silver badge1 bronze badge

0

change it from

url=https://MichaelDrogalis@github.com/derekerdmann/lunch_call.git 

to

url=ssh://git@github.com/derekerdmann/lunch_call.git

It works!

Do not forget the «git» before the «@».

Juan Sosa's user avatar

Juan Sosa

5,2521 gold badge35 silver badges41 bronze badges

answered Oct 18, 2012 at 1:07

JimmyDong's user avatar

JimmyDongJimmyDong

1531 silver badge7 bronze badges

1

answered Dec 6, 2012 at 18:37

SMSM's user avatar

SMSMSMSM

1,4793 gold badges19 silver badges34 bronze badges

0

For those having permission denied 403 error while using ssh(according to Xiao) or http urls
try these commands

>git config --global --unset-all credential.helper

>git config --unset-all credential.helper

with administrator rights

>git config --system --unset-all credential.helper

Community's user avatar

answered Jan 12, 2017 at 18:17

Moosa Baloch's user avatar

Moosa BalochMoosa Baloch

1,1751 gold badge13 silver badges25 bronze badges

1

None of the above answers worked for my enterprise GitHub account. Follow these steps for pushing via ssh key generation way.

Create a repo by visiting your git account.

Generate ssh key:

ssh-keygen -t rsa -C "your_email@example.com"

Copy the contents of the file ~/.ssh/id_rsa.pub to your SSH keys in your GitHub account settings.
Test SSH key:

ssh -T git@github.com
clone the repo:
git clone git://github.com/username/your-repository

Now cd to your git clone folder and do:

git remote set-url origin git@github.com:username/your-repository.git

Now try editing a file (try the README) and then do:

git add -A
git commit -am "my update msg"
git push -u origin master

Update: new git version seems to recommend not to have any file while new repo is created. Hence make aa blank repo.

answered Feb 13, 2018 at 7:02

CKM's user avatar

CKMCKM

1,9112 gold badges23 silver badges30 bronze badges

1

Below is the solution

For Windows you can find the keys here:

control panel > user accounts > credential manager > Windows credentials > Generic credentials

Next, remove the Github keys.

In mac

1-In Finder, search for the Keychain Access app.

2In Keychain Access, search for github.com.

3-Find the «internet password» entry for github.com.

4-Edit or delete the entry accordingly.

answered Apr 13, 2020 at 9:27

Kapil Soni's user avatar

Kapil SoniKapil Soni

1,0032 gold badges14 silver badges36 bronze badges

0

What worked for me:

My repo was a fork and still linked to the the parents repo.

git remote -v

Will tell you if it is your repo or not.

git remote set-url origin https://github.com/USERNAME/OTHERREPOSITORY.git

Allows you to reconfigure it to your repo and then allow you to push.

Andrew Lygin's user avatar

Andrew Lygin

6,0471 gold badge32 silver badges37 bronze badges

answered Aug 26, 2016 at 17:13

Tim Siwula's user avatar

Tim SiwulaTim Siwula

95611 silver badges15 bronze badges

0

if you get 403 error with github,

sure to check all checkboxs when create token:

https://github.com/settings/tokens

i think github token generate page has design flaw.

answered Mar 1, 2022 at 3:18

sailfish009's user avatar

sailfish009sailfish009

2,5011 gold badge24 silver badges31 bronze badges

For anyone curious, my mac machine vs lucid vm ran git 1.7.6 vs 1.7.0.4, and the exact same repo was pushable from my mac (newer git) but not the VM

Same curl version. Perhaps some older git versions don’t support https pushes?

answered Mar 5, 2012 at 23:49

patcon's user avatar

patconpatcon

1,6771 gold badge12 silver badges9 bronze badges

2

Add the user name as part of the URL and This error happens because the git command is hitting http instead of https. So set the url

git remote set-url origin https://<username>@github.com/Path_to_repo.git

After which you will be prompted for password:

Tunaki's user avatar

Tunaki

132k46 gold badges331 silver badges418 bronze badges

answered Mar 5, 2016 at 15:01

venkat sam's user avatar

venkat samvenkat sam

1581 silver badge12 bronze badges

Try below command using administrator permission. This command solved my issue. Hope it will resolve your problem.

git config --system --unset-all credential.helper

answered Apr 25, 2020 at 18:03

Faisal's user avatar

FaisalFaisal

4,5613 gold badges40 silver badges49 bronze badges

1

I faced similar issue and most of the answer did not work in my case, i was getting permission denied 403 forbidden error. Following steps helped me to resolve the issue:

Install git CLI by below command if you have brew installed:

brew install gh

Reference to install git CLI https://github.com/cli/cli#installation

then run

gh auth login  

it will ask you following questions, answer like this,

What account do you want to log into? GitHub.com
? What is your preferred protocol for Git operations? HTTPS
? Authenticate Git with your GitHub credentials? Yes
? How would you like to authenticate GitHub CLI? Login with a web browser

It will generate code for you, enter generated to code your browser for authentication.

! First copy your one-time code: 14*B-E2*7

Press Enter to open github.com in your browser... 
✓ Authentication complete.

By following above steps you will be able to push code to your repository.

answered Feb 6 at 17:42

Nico's user avatar

NicoNico

1,7882 gold badges23 silver badges41 bronze badges

I figured out my own variation of this problem.

The issue was not changing the protocol from https to ssl, but instead,
setting the Github global username and email! (I was trying to push to a
private repository.

git config --global user.email "your_github_email_@email.com"

git config --global user.name "Your full name"

answered Feb 17, 2014 at 21:08

Lucas Ou-Yang's user avatar

Lucas Ou-YangLucas Ou-Yang

5,47513 gold badges42 silver badges61 bronze badges

1

Github has page dedicated to troubleshooting this error:

https://help.github.com/articles/https-cloning-errors

In my case it turned out that using a new version of git (1.8.5.2) solved this problem.

answered Sep 27, 2014 at 13:23

AndyL's user avatar

AndyLAndyL

14.2k14 gold badges43 silver badges70 bronze badges

Была такая же проблема в винде — сменил аккаунт на гитхабе, но при пуше гит упорно пытался законнектиться по старому логину. Вылечил вот так:

  • git config —global credential.github.com.interactive always
  • теперь пушим и вводим новые логин/пароль
  • git config —global credential.github.com.interactive auto — возвращаем значение по умолчанию

Подробнее настройки credential manager-а смотрим тут.

403 — это ошибка доступа. Проверьте, под каким юзернеймом и почтой вы пытаетесь запушить, и есть ли на гитхабе у этого пользователя разрешение

  • git remote rm origin
  • git remote add origin git@github.com:user/repo.git (на самом деле, смотри ссылку из следующего пункта)
  • для каждого экаунта свой ключ ssh (https://gist.github.com/jexchan/2351996)
  • ПРОФИТ!!1

This article discusses a problem that may occur when you try to push to a remote GitHub repository using HTTPS from an A2 Hosting server.

Table of Contents

  • Problem
  • Cause
  • Resolution
    • Method #1: Use SSH
    • Method #2: Modify the HTTPS URL

Problem

When you try to push changes to a GitHub repository from an A2 Hosting server using an HTTPS URL, you receive the following error message:

error: The requested URL returned error: 403 Forbidden while accessing https://github.com/github-username/github-repository-name.git/info/refs

Cause

There are a few possible causes for this problem:

  • You typed an incorrect password. Make sure you are using the correct GitHub password for the account.
  • The Git client on the A2 Hosting server requires a modified HTTPS URL to work correctly. If this is the cause, the password prompt does not even appear when you try to do a push operation.

Resolution

If you are sure you are using the correct GitHub password, there are two ways to resolve the “403 Forbidden” problem:

Method #1: Use SSH

Instead of using HTTPS URLs to push changes to GitHub, you can use SSH instead. For information about how to do this, please visit https://help.github.com/articles/changing-a-remote-s-url.

Method #2: Modify the HTTPS URL

Some A2 Hosting managed servers have an old version of the Git client installed. To push changes to GitHub using this older client version, you must include your GitHub username in the HTTPS URL.

To do this, follow these steps:

  1. Log in to your A2 Hosting account using SSH.
  2. At the command prompt, change to the directory where the Git repository is located.
  3. Type the following command:
    git config -l | grep url

    You should see output that resembles the following:

    remote.origin.url=https://github.com/github-username/github-repository-name.git
  4. You need to add your GitHub username to the github.com portion of the URL. To do this, type the following command, replacing the values in red with your own account information:

    git remote set-url origin "https://github-username@github.com/github-username/github-repository-name.git"
    
  5. To verify the new remote URL setting, type the following command:

    git config -l | grep url
    

    Now when you try to push changes to the GitHub repository, you are prompted for a password, and the push operation should succeed.

While working with Github you may face that, Git is saying 403 when trying to perform the git push origin master command. This fatal error occurs because password authentication for accessing Github’s private repository has been disabled. The error looks like,

fatal: unable to access 'https://github.com/username/location.git/': The requested URL returned error: 403

If you are struggling with the error here is a quick solution for you.

Step 1: Create Personal Access Token on Github

  • Log in to your GitHub account
  • Click on the Profile logo on the top right corner
  • Click on Settings
  • Then, Click on Developer settings for the left sidebar
  • Next, Click on Personal access tokens for the left sidebar
  • After that, Click on Generate new token
  • Give your token a descriptive name on the Note field
  • Select Expiration time and preferred scopes
  • Click on Generate token
  • Finally, you can copy that token and use it to authenticate. You can use the token instead of a password for Git over HTTPS or can use it to authenticate to the API over Basic Authentication.

Step 2: Use Personal Access Token for Authentication

Using HTTPS URL

Personal access tokens can only be used for HTTPS Git operations. Once you have a token, you can enter it instead of your password when performing Git operations over HTTPS. For the existing remote repository, you need to update the remote URL by using,

$ git remote set-url origin https://[githubtoken]@github.com/[username]/[repositoryname].git
$ git push origin master

Or, while cloning any repository,

$ git clone https://github.com/username/repo.git
Username: Enter your username
Password: Enter your access token
Using SSH

For performing Git operation you just need to change the URL. First, make sure your SSH keys are correctly set up. Then, To update the URL you have to run

$ git remote set-url origin git@github.com:[username]/[repositoryname].git
$ git push origin master

Thank you for reading the article. Hope following the steps properly will solve your problem.

But if still, you are facing a problem to generate or use your Personal Access Token and perform Git Operations you can read this article with details step by step process.

Background

If you have created a new repo in github and follow the initial instructions (as below) that github recommends, sometimes you might get the below error on the last command (git push)

fatal: unable to access ‘https://github.com/machzqcq/service_virtualization.git/’: The requested URL returned error: 403

echo "# service_virtualization" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/machzqcq/service_virtualization.git
git push -u origin master

Solution

git remote remove origin
git remote add origin https://machzqcq@github.com/machzqcq/service_virtualization.git
git push origin master
Password for 'https://machzqcq@github.com':
Counting objects: 14, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (13/13), done.
Writing objects: 100% (14/14), 3.63 KiB | 0 bytes/s, done.
Total 14 (delta 0), reused 0 (delta 0)
To https://machzqcq@github.com/machzqcq/service_virtualization.git
 * [new branch] master -> master

Automate,automate and automate

Понравилась статья? Поделить с друзьями:
  • Git ошибка error failed to push some refs to
  • Git ошибка could not read from remote repository
  • Git status завершено с ошибкой 128
  • Git push u origin main ошибка
  • Git did not exit cleanly exit code 128 ошибка