サーバ設定
提供:kuhalaboWiki
(版間での差分)
1行: | 1行: | ||
− | + | ; CentOSインストール | |
− | + | ; Apacheのインストール | |
<pre> | <pre> | ||
yum -y install httpd | yum -y install httpd | ||
</pre> | </pre> | ||
− | + | ; iptablesの設定 | |
− | + | * 設定確認 | |
<pre> | <pre> | ||
iptables -L | iptables -L | ||
</pre> | </pre> | ||
− | + | * 設定 | |
<pre> | <pre> | ||
vi /etc/sysconfig//iptables | vi /etc/sysconfig//iptables | ||
16行: | 16行: | ||
<pre> | <pre> | ||
-A INPUT -p tcp --dport 80 -j ACCEPT | -A INPUT -p tcp --dport 80 -j ACCEPT | ||
+ | </pre> | ||
+ | |||
+ | ; php, php-mbstringインストール | ||
+ | <pre> | ||
+ | yum -y install php php-mbstring ← php、php-mbstringインストール | ||
</pre> | </pre> |
2015年8月28日 (金) 08:32時点における版
- CentOSインストール
- Apacheのインストール
yum -y install httpd
- iptablesの設定
- 設定確認
iptables -L
- 設定
vi /etc/sysconfig//iptables
-A INPUT -p tcp --dport 80 -j ACCEPT
- php, php-mbstringインストール
yum -y install php php-mbstring ← php、php-mbstringインストール