'Trying to update ubuntu EC2 settings to solve browser SSL & Cipher mismatch error
I'm learning how to create an EC2 ubuntu instance on AWS to launch Python based applications, all the server settings were properly specified as directed by the instructor(Tutorial last updated 2020), including configurations for anaconda & jupyter notebook & they run just fine on the terminal. But whenever i try accessing jupyter on the server from a browser (chrome & opera) i get an error description of ERR_SSL_VERSION_OR_CIPHER_MISMATCH (The client and server don't support a common SSL protocol version or cipher suite.). I've tried deleting my windows SSL certificate, reenabling browser access through firewall & other probable fixes through firewall & network security but am beginning to suspect its an issue with EC2 server/instance settings that we were given no longer being supported. How do i change these settings to support all traffic & allow access for all local IPs from my computer (Note that it's just supposed to be a personal demo instance & strict connection security rules are not needed)
Solution 1:[1]
try this:
from random import randint
@client.command()
async def greeting(ctx):
list = ["hi", "hello", "howdy"]
await ctx.send(list[randint(0,2)])
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | kyred |
