Skip to content

Instantly share code, notes, and snippets.

@egoing
Last active November 17, 2021 07:26
Show Gist options
  • Save egoing/58d0b02b470f66240d35d7e0182ec874 to your computer and use it in GitHub Desktop.
Save egoing/58d0b02b470f66240d35d7e0182ec874 to your computer and use it in GitHub Desktop.
AWS AutoScaling 예제

바로오기

http://bit.ly/AWS-AS

apache, php 설치

sudo apt update; 
sudo apt install apache2 php; 
sudo service apache2 restart; 

/var/www/html/에 loadtest.php 설치

<?php
$time = microtime(true);
password_hash('Hello',CRYPT_BLOWFISH,array("cost"=>empty($_GET['cost']) ? 14 : (int)$_GET['cost']));
echo $_SERVER['SERVER_ADDR'].' : '.(microtime(true) - $time);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment