This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # TODO: | |
| # Add HTTP listener | |
| # Add ssh listener | |
| # Add Websockets Listener | |
| export LOCATION="westus" | |
| export RESOURCE_GROUP="pcfmarketplace" | |
| export VNET="pcf-net" | |
| export SUBNET="AppGatewaySubnet" # Note this can't have anything in the back of it. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| openssl pkcs12 -export -out certificate.pfx -inkey sys.azure.hnrglobal.com.key -in sys.azure.hnrglobal.com.crt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SET FOREIGN_KEY_CHECKS = 0; | |
| SET @tables = NULL; | |
| SELECT GROUP_CONCAT(table_schema, '.', table_name) INTO @tables | |
| FROM information_schema.tables | |
| WHERE table_schema = 'database_name'; -- specify DB name here. | |
| SET @tables = CONCAT('DROP TABLE ', @tables); | |
| PREPARE stmt FROM @tables; | |
| EXECUTE stmt; | |
| DEALLOCATE PREPARE stmt; |
NewerOlder