Quantcast
Channel: Oliver C. Grant
Viewing all articles
Browse latest Browse all 25

Dev env series of issues

$
0
0

Issue 1:

webdev@o-gw-grpc-delegator:/programs/gems/gmml$ git push
The authenticity of host ‘github.com (140.82.121.3)’ can’t be established.
ECDSA key fingerprint is SHA256:p2QAMXNIC1TJYWeIOttrVc98/R1BUFWu3/LiyKgUfQM.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added ‘github.com,140.82.121.3’ (ECDSA) to the list of known hosts.
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
webdev@o-gw-grpc-delegator:/programs/gems/gmml$

Solution 1:

alias cpgrpcssh='docker cp ~/.ssh $(docker ps -a --format "{{.ID}}\t{{.Image}}" | grep grpc-delegator | cut -f 1):/home/webdev/'

You must copy your keys into the grpc delegator. This helped: https://docs.github.com/en/authentication/troubleshooting-ssh/error-permission-denied-publickey

Issue 2:

Gems tests failing due to permissions issue on some of the folders. Docker is creating them as root:
webdev@o-gw-grpc-delegator:/$ ls -larth /website/userdata/mmservice

total 12K 
drwxr-xr-x 2 root root 4.0K Feb 28 07:46 md 
drwxr-xr-x 3 root root 4.0K Feb 28 07:46 . 
drwxrwxr-x 6 webdev webster 4.0K Jun 28 12:38 ..

Solution 2:

Sudo chown on your machine to be owned by you. New builds of the dev env will have this problem. Grayson is working on fixing it.

Issue 3:

Next, we need to get some environment information to share with the developer, so they can access the website. Getting environment information for Proxy Docker Service. template parsing error: template: :1:3: executing “” at <index .NetworkSettings.Networks “o-gw-proxy-net” (index “IPAddress”)>: error calling index: index of nil pointer You can access the GlycamWeb Website at IP Address: template parsing error: template: :1:3: executing “” at <index .NetworkSettings.Networks “o-gw-proxy-net” (index “IPAddress”)>: error calling index: index of nil pointer

Solution 3:

Just stop start.
bash Stop-All-DevEnv.bash
bash Start-All-DevEnv.bash -j 10 -s git; say “Finished”

Issue 4:
GMML tests inside the container cause the computer to freeze. I just rebooted the machine and it’s fine now. Ugh.


Viewing all articles
Browse latest Browse all 25

Trending Articles