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 1 year has passed since last update.

Growiにlocalhost以外からアクセスできるようにする方法

Posted at

はじめに

https://qiita.com/yuu__dee/items/324051d4814433dc8d76
この記事ではCentOSにGrowiのv5.xを構築する手順を紹介しましたがこのままではローカルホストからしかアクセスできないでのローカルホスト以外からでもアクセスできるようにしたいと思います。

ポートの開放

Growiでは3000番ポートでつながるようになっているので3000番ポートを開ける必要があります。
やり方は簡単でfirewallの設定から3000番ポートを開けるだけです.

firewall-cmd --zone=public --add-port=3000/tcp --permanent

これで永続的にtcp/3000ポートが解放される状態になります。

最後にfirewallの変更後の状態を確認

firewall-cmd --list-all

ports: 3000/tcp

となっていることを確認しましょう.

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?