การตั้งค่า Remote Access Mysql บน Centos7 Linux

การตั้งค่า Remote Access Mysql บน Centos7 Linux ได้
Setup Mysql Remote Access for Linux Centos7
cannot connect mysql server 10061 centos 7

- sudo firewall-cmd --list-all
- sudo firewall-cmd --permanent --add-service=mysql
- sudo firewall-cmd --reload
- sudo firewall-cmd --list-all
- sudo /opt/lampp/lampp restart

การเชื่อมต่อ Django กับ Mysql

การเชื่อมต่อ Django กับ Mysql

  • pip install mysqlclient
  • python manage.py makemigrations
  • python manage.py migrate
DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.mysql',
        'NAME': 'django_db',
        'USER': 'root',
        'PASSWORD': '123456',
        'HOST': '127.0.0.1',
        'PORT': '3306',
    }
}
TIME_ZONE = 'Asia/Bangkok'

การติดตั้ง Python Django Framework ด้วย Pycharm

การติดตั้ง Python Django Framework ด้วย Pycharm

การติดตั้ง Python Package ด้วย Pycharm

การติดตั้ง Python Package ด้วย Pycharm How to Install Python PIP Packages in PyCharm

การเชื่อมต่อ Python3 กับ ฐานข้อมูล Mysql

import cymysql
conn = cymysql.connect(host='127.0.0.1', 
user='root', passwd='123456', db='db2012')
cur = conn.cursor()

cur.execute('SELECT * FROM list')
for r in cur.fetchall():
   print(r[0], r[1])

การเชื่อมต่อ Python3 กับ ฐานข้อมูล Mysql ด้วย cymysql

python mysql example

ตั้งค่า Python Interpreter ใน Pycharm

ตั้งค่า Python Interpreter ใน Pycharm

การติดตั้ง python 3.7 บน Windows

การติดตั้ง python 3.7 บน Windows

การใช้งาน PHP SFTP , SSH2 Library (phpseclib) ผ่านทาง Composer ร่วมกับ Codeginiter Framework

การใช้งาน phpseclib ผ่านทาง Composer ร่วมกับ Codeginiter

สามารถดูวิธีการติดตั้ง Extension ก่อนได้ตาม Link ด้านล่างนี้
วิธีติดตั้ง sftp ssh2 กับ PHP 5.6 บน Windows Server

วิธีติดตั้ง sftp ssh2 กับ PHP 5.6 บน Windows Server

ติดตั้ง ssh2 sftp กับ PHP 5.6 , Call to undefined function ssh2_connect() For PHP 5.6