adc089328cfbeee73417ee628ac5c8dc12942ed6
wiki/info/landscape/creating-ec2-image-for-webserver-from-scratch.md
| ... | ... | @@ -11,7 +11,12 @@ This is an add-on to the regular EC2 image set-up described [here](https://wiki. |
| 11 | 11 | Then carry out these steps: |
| 12 | 12 | |
| 13 | 13 | * install additional packages: `yum install fail2ban git mod24_perl perl perl-CGI perl-Template-Toolkit perl-HTML-Template perl-CPAN perl-DBD-MySQL mod24_ssl php71 php71-mysqlnd mod24-ldap ruby24 ruby24-devel rubygems24 rubygems24-devel icu libicu-devel gcc-c++ ncurses-devel geoip-devel` |
| 14 | -* activate NFS by calling `chkconfig nfs on`; launch the NFS service once using `service nfs start` |
|
| 14 | +* activate NFS by calling `chkconfig nfs on`; ensure that `/var/log/old` and `/home/scores` are exposed in `/etc/exports` as follows: |
|
| 15 | +``` |
|
| 16 | +/var/log/old 172.31.0.0/16(rw,nohide,no_root_squash) |
|
| 17 | +/home/scores 172.31.0.0/16(rw,nohide,no_root_squash) |
|
| 18 | +``` |
|
| 19 | +* launch the NFS service once using `service nfs start` |
|
| 15 | 20 | * run the following command in order to obtain this feature required by Bugzilla: |
| 16 | 21 | ``` |
| 17 | 22 | cpan install Date::Parse Email::Address Email::Send DBI Geo::IP::PurePerl |