動機
自鯖を再構築した際に忘れてたところをメモ。
静的IPの設定
/etc/network/interfacesの設定を変更する
# The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 -iface eth0 inet dhcp +iface eth0 inet static +address 192.168.xxx.yyy +netmask 255.255.255.0 +network 192.168.xxx.0 +broadcast 192.168.xxx.255 +gateway 192.168.xxx.1
その後ネットワークの再起動
sudo /etc/init.d/networking restart
Apache2.2まわりのメモ
Ubuntuでは設定ファイルは細かく分ける主義。
ユーザ権限
デフォルトユーザをwww-dataグループに追加する。idコマンドでユーザ情報を確認。
$ adduser USER www-data $ id USER