Skip to content

Instantly share code, notes, and snippets.

@hemanth22
Last active April 3, 2021 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hemanth22/495c13af924915912986761fbe88dd11 to your computer and use it in GitHub Desktop.
Save hemanth22/495c13af924915912986761fbe88dd11 to your computer and use it in GitHub Desktop.
httpd installation
#!/bin/bash
yum install httpd -y
service httpd start
systemctl status -l httpd
echo "<h1>Served from Server2, Linux 2</h1>" > /var/www/html/index.html
<powershell>
Install-WindowsFeature -Name web-server -IncludeManagementTools
</powershell>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment