takac.dev
Columns
Privacy Pollicy
  • Docker: How to solve the trouble of SSH tunnel connection?

    Dec 16, 2021 · 3 min read · Docker ssh docker-compose  ·
    Share on:

    I wanted to connect to some external site via my server in AWS because the site has IP address filters as security. However my apartment doesn't have a static IP address so I came up with an idea connecting to the site via SSH tunnel and if it runs as a container in docker-compose, it’s very easy to execute by the …

    Read More
  • Docker: How to install packages to busybox image?

    Aug 7, 2021 · 2 min read · Docker busybox  ·
    Share on:

    Busybox image is very useful to execute a simple binary on Docker because the image size is quite small. However there's no commands like apt-get or yum to install additional packages. So, if it's necessary to do that, using Alpine Linux image is the best choice instead of Busybox image . Let me share why is it and …

    Read More
  • Prometheus: How to solve blackbox exporter icmp (ping) failure

    Jul 28, 2021 · 3 min read · prometheus blackbox-exporter  ·
    Share on:

    I set up my blackbox exporter to monitor some network appliances via ICMP but its RTT was always zero. I'll share how to investigate this problem and solve it. First I added the following module setting to blackbox.yml because I've never used ICMP monitoring before. 1modules:2icmp:3prober:icmp4timeout:5sThen, I added …

    Read More
  • Fluentd: Warning on parser filter: nested repeat operator '+' and '*' was replaced with '*' in regular expression

    May 19, 2021 · 2 min read · coredns fluentd kubernetes  ·
    Share on:

    I needed to add parser settings for CoreDNS working on my Kubernetes cluster for troubleshooting but I got an error "nested repeat operator '+' and '' was replaced with '' in regular expression." I had no idea why it happened because the additional regular expression was valid. The cause of the error was my …

    Read More
  • PHP: Fatal error when build docker image with composer

    May 7, 2021 · 1 min read · docker dockerfile php  ·
    Share on:

    I saw this news about the serious vulnerability in composer which is PHP package management software. https://www.bankinfosecurity.com/php-composer-flaw-that-could-affect-millions-sites-patched-a-16523 So, I wanted to update composer in my Dockerfile but I realized that I already specified the version as follows. 1curl …

    Read More
  • Python: Got AttributeError when accessing App Store Connect API using appstoreconnect library

    May 6, 2021 · 2 min read · AppStoreConnect docker dockerfile python  ·
    Share on:

    I created a small Python program to get data via the App Store Connect API for report automation with the appstoreconnect library. After update recently, I got the following error. 1Traceback (most recent call last): 2 File "/app/./main.py", line 88, in <module> 3 APP_STORECONNECT_API.execute() 4 File …

    Read More
  • Example of Selenium with Python on Docker with latest FireFox

    Apr 28, 2021 · 3 min read · debian docker dockerfile firefox python selenium  ·
    Share on:

    This is an example of how to run the Selenium with Python on Docker with the latest FireFox and its geckodriver. The official Python docker image is based on Debian 10 (Buster) 1$ docker run -i --rm python:3.9 cat /etc/os-release | grep VERSION= 2VERSION="10 (buster)" In this image, the installable FireFox …

    Read More
  • Ruby: AWS SAM build error with mongoid package

    Feb 5, 2021 · 2 min read · aws ruby sam  ·
    Share on:

    Same as my last post , I’m not a Ruby developer but I had an opportunity to help move some Ruby applications from EC2 to Lambda on AWS. At the time, I had a problem when I built a Ruby application with AWS SAM framework. Let me share why it happened and how I fixed it. I executed the build command "sam build‘ for …

    Read More
  • Ruby: bundle install hangs indefinitely with high CPU usage

    Jan 31, 2021 · 2 min read · aws bundle lambda ruby  ·
    Share on:

    Actually, I’m not a Ruby developer but I had an opportunity to help move some Ruby applications from EC2 to Lambda on AWS. At that time, I had an issue when I execute "bundle install" inside the container to build with the SAM framework. The problem was the command didn’t finish indefinitely. I searched about …

    Read More
  • Docker: What should I do when getting "503 service unavailable" error after executing docker pull command?

    Dec 26, 2020 · 1 min read · docker  ·
    Share on:

    Getting "503 service unavailable" error after executing "docker pull" command is a very rare situation but there was in the past. So, it’s worth knowing for using docker. Most of the time, this is Docker Hub’ server side problem not client one. Once the error happens, we should visit their web site …

    Read More
    • ««
    • «
    • 1
    • 2
    • 3
    • 4
    • »
    • »»

Takashi Fukuda

Infrastructure Engineer, Cloud Systems Administrator, Site Reliability Engineer
Read More

Recent Posts

  • Docker: How to solve the trouble of SSH tunnel connection?
  • Docker: How to install packages to busybox image?
  • Prometheus: How to solve blackbox exporter icmp (ping) failure
  • Fluentd: Warning on parser filter: nested repeat operator '+' and '*' was replaced with '*' in regular expression
  • PHP: Fatal error when build docker image with composer

Categories

TECH-TIPS 28 TROUBLE-SHOOTING 12 CERTIFICATION 2 COLUMN 1

Tags

DOCKER 14 KUBERNETES 12 AWS 7 DOCKERFILE 6 DOCKER-COMPOSE 4 FLUENTD 3 HAPROXY 3 APACHE 2 BLACK-FRIDAY-SALE 2 EC2 2 EKS 2 EXAM 2 LINUX-FOUNDATION 2 NGINX 2
All Tags
ALPINE1 APACHE2 APPSTORECONNECT1 AURORA1 AUTOSCALING1 AWS7 BADREQ1 BLACK-FRIDAY-SALE2 BLACKBOX-EXPORTER1 BUNDLE1 BUSYBOX1 CERTIFIED-KUBERNETES-ADMINISTRATOR1 CERTIFIED-KUBERNETES-APPLICATION-DEVELOPER1 CKA1 CKAD1 CLOUDFORMATION1 COREDNS1 CRONJOBS1 DEBIAN1 DOCKER14 DOCKER-COMPOSE4 DOCKERFILE6 DOCKERHUB1 DYNAMODB1 EC22 EKS2 ELASTICSEARCH1 ENI1 EXAM2 FIREFOX1 FLUENTD3 GOLANG1 HAPROXY3 HTTPS1 IAM1 KIBANA1 KUBECTL1 KUBERNETES12 LAMBDA1 LATEST1 LINUX-FOUNDATION2 MEMCACHED1 MYSQL1 NGINX2 PHP1 PROMETHEUS2 PYTHON2 RDS1 RUBY2 SAM1 SECURITY1 SELENIUM1 SERVICE-DISCOVERY1 SSH1 SSL1 TAG1
[A~Z][0~9]

takac.dev

Copyright 2020-  TAKAC.DEV. All Rights Reserved