0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

rmコマンドが理解できてなかった

Posted at

#はじめに
現在プログラミング学習を始めて3ヶ月目の初学者です。
学んだことをqiitaに投稿という形でアウトプットするため、また備忘録として記事を作成しました。

##Nginxの設定ファイルを編集

sudo vi /etc/nginx/conf.d/アプリケーション名.conf

nginxのconfファイルを設定しファイルの構文チェックをするため

sudo nginx -t

を実行、すると下記のエラーが出た

nginx: [emerg] duplicate upstream "puma" in /etc/nginx/conf.d/アプリケーション名.conf:1
nginx: configuration file /etc/nginx/nginx.conf test failed

ファイルが重複している、と出ているので

sudo rm vi /etc/nginx/conf.d/アプリケーション名.conf:1

で削除してみるがNo such file or directory
viはpathに関係ないコマンドで、:1がNginxの設定ファイルの1行目を指しているだけでpathに必要ないと分かったので、削除してもう一度実行したら上手く行きました。

##最後に
qiitaへの投稿に慣れていないので、分かりづらい上に情報が少ないですが、これから欠かさず投稿していこうと思います。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?