Any Drupal 7 stackscripts that are working?
All the Drupal stackscripts seem to be deprecated or no longer working. Anyone know of any that are still working?
Cheers
Jibb
5 Replies
Can anyone recommend a good base LAMP / LEMP stacksript as a starting point for a Druapl 7 install?
There seem to be a number out there. I'm a bit of a noob here. I've been developing my site on my home PC using WAMP and I don't really know which to go for. I've heard good things about Varnish, but beyond that, I'm a little lost.
Cheers
Jibb
install mysql = yes
mysql password = up to you, make it something hard to crack but that you can remember
install nginx from ppa = yes
ssh port = whatever you like, you can leave it at 22
user = whatever you like, this is who you'll log in as
user password = see mysql password
user ssh key = optional but recommended see
root email = your email
hostname = if your server is example.com then s1.example.com is a fair idea
Use ec2 kernel = no
which webserver = nginx
You can view the progress of the installation using LISH see here
Once it's installed, reboot then run the following commands
sudo mkdir -p /var/www/
wget http://ftp.drupal.org/files/projects/drupal-7.10.tar.gz
tar -xf drupal-7.10.tar.gz
sudo mv drupal-7.10 /var/www/drupal
The sudo commands will ask for the user password you set at installation.
Then run
sudo nano /etc/nginx/sites-enabled/drupal
and put the contents of the following link in that file
service nginx reload
to restart nginx
You'll then be able to access the drupal installation from your domain (assuming you've set up your DNS records see here
Note you'll have to create a database and user for drupal using whatever your favourite mysql client is.
Gonna give this a try from home this evening.
Thanks
Jibb
"official" Linode stackscript