How to install Drupal on Acquia Cloud and How to do development on Acquia Cloud

Code With Travel
3 min readAug 17, 2018

--

Hello , Thanks for joining me. Acquia Cloud provides you the development tools, environments, application services, and hosting you need to build websites and JavaScript applications powered by Drupal.

to build a website with Acquia Drupal Go to https://accounts.acquia.com/sign-in?site=cloud&path=app and login into the system. After that Add your application and choose proper drupal version. Click on submit. Website provisioning take some time. After that configure your drupal website. After successful installation website ready to use.

Go to the https://cloud.acquia.com/app/develop. you will see list of your application.

https://cloud.acquia.com/app/develop

Click on stemword and you can see environments details as below.Click on Dev.

Environments details

Here you can see Database , Domains , User keys , logs and insights.Also you will find git clone URL and SSH URL .

git clone and ssh URL

Now How to commit code using git on Acquia cloud?

If you are using Ubuntu.

ssh-keygen
cd ~/.ssh ls -l
mkdir key_backup mv id_rsa* key_backup
ssh-keygen -b 4096
sudo gedit ~/.ssh/id_rsa.pub

Now go to the https://insight.acquia.com/cloud/users?s=7009221 and add public key.Save it

Run following command.

ssh stemword.dev@free-7639.devcloud.hosting.acquia.com
sudo git clone
stemword@svn-3239.devcloud.hosting.acquia.com:stemword.git

Note : If system ask for password then enter passphrase value into that.

Now you get all files. Now download database from sidebar. Upload database and configure in settings.php . After this clear cache and login to system.

Now make new branch

git checkout master
git pull origin master
git checkout -b RC
git fetch all
git pull branch_name
git push origin RC

now push to master branch

git checkout master
git pull origin master
git pull branch_name
git push origin
You can see all logs related to operation and git code commit

Configure acquia connector with website go to admin/config/system/acquia-connector and add machine name mention below image.

Conclusion : Hope you like this article. Acquia cloud is very easy to use and configure.

--

--

No responses yet