1. ホーム
  2. Ubuntu

高性能ウェブサーバーとリバースプロキシサーバーの起動に失敗しました エラー

2022-02-22 11:25:07
クリックするとリンクが開きます

Raspbian Jessieオペレーティングシステムでnginxを動かしています。
新しいバーチャルホストを作成し、nginxサービスを再読み込みしたところです。
/etc/init.d/nginx restart

今、私は得た。
[....] Reloading nginx configuration (via systemctl): nginx.serviceJob for nginx.service failed. See 'systemctl status nginx.service' and 'journalctl - xn' for details.
 failed!

で設定ファイルに問題がないかどうかテストできることがわかりました。
nginx -t -c /etc/nginx/nginx.conf

今度はこう書いてある。
nginx: [emerg] could not build the server_names_hash, you should increase server_names_hash_bucket_size: 32
nginx: configuration file /etc/nginx/nginx.conf test failed

この設定がどのようなものかをコンフィグで確認してみましょう。
grep server_names_hash_bucket_size /etc/nginx/nginx.conf

そして、設定されていないとのことです。
        # server_names_hash_bucket_size 64;

OK......これをそのまま増やします。
sed -i "s/^. *server_names_hash_bucket_size. *;$/server_names_hash_bucket_size 64;/" /etc/nginx/nginx.conf

もう一度確認してください。
grep server_names_hash_bucket_size /etc/nginx/nginx.conf

これでいいのです。
server_names_hash_bucket_size 64;

設定ファイルをテストしてみましょう。
nginx -t -c /etc/nginx/nginx.conf

これで、次のようになります。
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

ゴット・トゥ・ゴー
/etc/init.d/nginx restart

<スパン <スパン <スパン <スパン <スパン
もっと見る nginx