エラー

【エラー】COPY failed: file not found in build context or excluded by .dockerignore: stat file_name: file does not exist を解決

現象 以下のような記述のDockerfileを用意しアプリケーションをコンテナ化しgcloud run deployでCloud Run上にデプロイしたところ、特定のファイル(今回はinit.incファイル)がアップされていないことに気が付きました。 FROM php:7.0-apache # Configure PHP…

"Communications link failure"でアプリ起動できない問題

SpringBootで作ったアプリを起動すると、以下のエラーが起こり起動に失敗する現象に遭遇しました。 Caused by: com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure この現象の原因と解決策についてメモします。 環境 言語:…

dbに接続できない - could not connect to server

Dockerを使ってRails6の環境を作り、docker-compose upで起動すると、以下のようなエラーが表示されました。 PG::ConnectionBad: could not connect to server: No such file or directoryIs the server running locally and acceptingconnections on Unix d…

Rails - productionモードでAction Textがロードされない

タイトル通りの問題が起きて調べたのでメモします。 Action Textを導入したrailsアプリをproductionモードで実行したところ、Action Textを用いて実装した箇所がブラウザにロードされない事象が起きました。 解決策 以下のように、config/initializers/asset…

Rails - param is missing or the value is empty: エラー

param is missing or the value is empty: 以下のようなviewとコントローラ(Strong Parameters)を書いていたところ、POST時にparam is missing or the value is empty: article というエラーが発生しました。コードの趣旨としては、articleモデルの属性であ…

SSH - user@xx.xxx.xxx.xxx: Permission denied (publickey,gssapi-keyex,gssapi-with-mic).

↓のようなエラーでsshができずかなり苦しんだ。 $ ssh host_name user@xx.xxx.xxx.xxx: Permission denied (publickey,gssapi-keyex,gssapi-with-mic). 今回の原因は、そもそもsshキーのユーザが間違っていた、というもの。 上記エラーで考えられる理由は複…

Metasploit - モジュールを実行するとwarning: URI.unescape is obsolete

「ハッキング・ラボのつくりかた」という書籍を読み進めているのですが、第4章の権限昇格のところで以下のような大量のwarningに遭遇しました。 msf5 exploit(windows/local/bypassuac_fodhelper) > exploit [] Started HTTPS reverse handler on https://1…

Mac - .bash_profileの設定が再起動後無効になる

はじめに MacでツールをインストールしてPATHを通した後、Macを再起動するとPATHを通したはずのコマンドが使えなくなってました。その解決法メモ。 $ zsh: command not found: node 結論 早速結論ですが、指定しているログインシェルの設定ファイルに設定を…

Gradle - Cause: zip END header not found

IntelliJでJavaプロジェクトを開いてビルドしたところ、↓のエラーが発生してビルドできませんでした。 $ ./gradlew clean build Could not unzip /Users/{user_name}/.gradle/wrapper/dists/gradle-5.2.1-all/bviwmvmbexq6idcscbicws5me/gradle-5.2.1-all.zi…

【 Flutter 】エラー: The number of method references in a .dex file cannot exceed 64K.

Flutterでぶちあったメモです。今回は、apkファイルビルド時に The number of method references in a .dex file cannot exceed 64K とか言われてビルド失敗しました。 現象 FAILURE: Build failed with an exception. * What went wrong: The number of met…

【Flutter】 エラー: シンボルを見つけられません import androidx.annotation.NonNull;

はじめに Flutterアプリ開発でぶち当たったエラーの解決法をメモ。 現象 apkファイルをビルド時、↓のようなエラーが発生。 $ flutter build apk /flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.11.1+6/android/src/main/java/io/flutter/plug…

Eclipse: problems encountered during text search

はじめに eclipseでテキストサーチをしようとしたところ、次のようなエラーが出て失敗したので、その対処法と原因をメモします。 対処法 プロジェクトをリフレッシュしたら直りました。手順は以下の通り。 テキストサーチしたいプロジェクト上で右クリックRe…