- 2018/09/4
- Nike
- Supreme Court hearings and Democrats constantly interrupting and acting like children
Thoughts of Digitalw00t
There are a few things you can do with Ubuntu. Here are a list, and what you will need to do them:
Made these instructions from the following reference using centos.
CA common Name : MariaDB admin
Server common Name: MariaDB server
Client common Name: MariaDB client
### MySQL Server ### ## Securing the Database with ssl option and certificates ## ## There is no control over the protocol level used. ## ## mariadb will use TLSv1.0 or better. ## ssl ssl-ca=/etc/mysql/ssl/ca-cert.pem ssl-cert=/etc/mysql/ssl/server-cert.pem ssl-key=/etc/mysql/ssl/server-key.pem |
#!/usr/bin/python # Note (Example is valid for Python v2 and v3) from __future__ import print_function import sys import mysql.connector from mysql.connector.constants import ClientFlag config = { 'user': 'bar', 'password': 'mypassword', 'host': '192.168.1.100', 'client_flags': [ClientFlag.SSL], 'ssl_ca': '/etc/mysql/ssl/ca-cert.pem', 'ssl_cert': '/etc/mysql/ssl/client-cert.pem', 'ssl_key': '/etc/mysql/ssl/client-key.pem', } cnx = mysql.connector.connect(**config) cur = cnx.cursor(buffered=True) cur.execute("SHOW STATUS LIKE 'Ssl_cipher'") print(cur.fetchone()) cur.close() cnx.close() |
This is going to be a journey. It’s something my kids have always wanted. My goal is to get this to be a resource on how to learn how to do this.
Things I want to learn:
Resources:
Painting and Distressing
Machine listing based from Punisher Props:
Make props that look like they were pulled straight off the big screen! Bill teaches you how to model, sand, and paint your props using reference materials to get the perfect finish.
Requirements from Bil Henry at Kollegetown
ktforms.com
ktown.com
Ruby native to RHEL
RHEL7: