サーバ設定
提供:kuhalaboWiki
(版間での差分)
1行: | 1行: | ||
; CentOSインストール | ; CentOSインストール | ||
− | ; | + | ;DNSレコード設定 |
<pre> | <pre> | ||
− | + | xxx.example.net A 3600 xxx.xxx.xxx.xxx | |
</pre> | </pre> | ||
18行: | 18行: | ||
<pre> | <pre> | ||
-A INPUT -p tcp --dport 80 -j ACCEPT | -A INPUT -p tcp --dport 80 -j ACCEPT | ||
+ | </pre> | ||
+ | |||
+ | ; Apacheのインストール | ||
+ | <pre> | ||
+ | yum -y install httpd | ||
</pre> | </pre> | ||
24行: | 29行: | ||
yum -y install php php-mbstring | yum -y install php php-mbstring | ||
</pre> | </pre> | ||
+ | |||
+ | |||
+ | ;httpd設定 | ||
+ | <pre> | ||
+ | vi /etc/httpd/conf/httpd.conf | ||
+ | </pre> | ||
+ | |||
; xemacsインストール | ; xemacsインストール | ||
29行: | 41行: | ||
yum -y install xemacs | yum -y install xemacs | ||
</pre> | </pre> | ||
− | |||
; yumでアップデート | ; yumでアップデート |
2015年8月28日 (金) 09:18時点における版
- CentOSインストール
- DNSレコード設定
xxx.example.net A 3600 xxx.xxx.xxx.xxx
- iptablesの設定
- 設定確認
iptables -L
- 設定
vi /etc/sysconfig//iptables
-A INPUT -p tcp --dport 80 -j ACCEPT
- Apacheのインストール
yum -y install httpd
- php, php-mbstringインストール
yum -y install php php-mbstring
- httpd設定
vi /etc/httpd/conf/httpd.conf
- xemacsインストール
yum -y install xemacs
- yumでアップデート
yum update