Skip to main content

Episode 3: Web server

· 2 min read
Tien

ở đây có nói chi tiết về cách tạo web server cho aegir.http://community.aegirproject.org/node/396

  1. Chỉnh lại ip của web.com thành 192.168.56.102

  2. passwd aegir

  3. apt-get install sudo

  4. Cài debian7 chọn hostname là web, username và pass là webdev

  5. cài phần mêm trên web server (như ở trên)

  6. nên chọn bash thay cho sh vì bash tốt hơn nhiều (cụ thể là cho xem user hiện tại, directory hiện tại, host hiện tại và có thể auto complete.)

  7. không nên chạy dòng này ln -s /var/aegir/config/apache.conf /etc/apache2/conf.d/aegir.conf nếu chạy rồi thì xóa /etc/apache2/conf.d/aegir.conf đi

  8. dòng add key của debian.com nên thay bằng scp, thay

cat > /var/aegir/.ssh/authorized_keys <<EOF
ssh-rsa AAAAB3NzaC1yc2EAAAADAQAB...UF aegir@filer01
EOF

bằng

scp /var/aegir/.ssh/id_rsa.pub aegir@web.com:~/.ssh/authorized_keys

hay

ssh-copy-id aegir@web.com
  1. nếu thấy lỗi Could not rsync from '/var/aegir/...' to 'aegir@web.com:/ thì ở aegir.com ta đăng nhập vào aegir user, dùng lệnh ssh-copy-id aegir@web.com
  2. ở web server không tạo được platforms
  3. ln -s /var/aegir/config/apache.conf /etc/apache2/conf.d/aegir.conf service apache2 restart -Tim
wget http://ftp.drupal.org/files/projects/drush-7.x-5.9.tar.gz
tar xfvz drush\*.tar.gz
ln -s drush/drush /usr/bin/drush
cd platforms/drupal7/sites/all/modules
drush/drush dl ...
cd platforms/drupal7/sites/examples.com
~/drush/drush en ... -y
  1. nano /etc/apache2/httpd.conf ServerName localhost

nguồn: