查看“Django 配置MySQL数据库”的源代码
←
Django 配置MySQL数据库
跳到导航
跳到搜索
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:
用户
您可以查看与复制此页面的源代码。
==代码== <pre> apt install mysql-server mysql-client mysql_secure_installation apt-get install python-dev libmysqld-dev libmysqlclient-dev pip install mysql-python Django(Python)操作MySQL依赖第三方包,所以要先安装MySQL for Python。 $ wget https://pypi.python.org/packages/source/M/MySQL-python/MySQL-python-1.2.5.zip $ unzip MySQL-python-1.2.5.zip $ sudo python setup.py install #配置 # #CREATE DATABASE ch07www CHARACTER SET utf8; # settings.py Database # https://docs.djangoproject.com/en/1.8/ref/settings/#databases DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. 'NAME': 'django', # Or path to database file if using sqlite3. # The following settings are not used with sqlite3: 'USER': 'root', 'PASSWORD': '1234', 'HOST': '127.0.0.1', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP. 'PORT': '3306', # Set to empty string for default. } } </pre> == 参考== https://docs.djangoproject.com/en/1.11/ref/databases/#mysql-notes [http://dmyz.org/archives/110 DJANGO+MYSQL安装配置详解(LINUX)[更新为1.8.2版]] https://docs.djangoproject.com/en/1.8/ref/settings/#databases https://shenxgan.gitbooks.io/django/content/publish/2015-07-13-django-mysql.html [[category:django]]
返回至
Django 配置MySQL数据库
。
导航菜单
个人工具
登录
名字空间
页面
讨论
变种
视图
阅读
查看源代码
查看历史
更多
搜索
导航
首页
我的导航
关于我
shell
python
ops
linuxchina.net
blog.linuxchina
最近更改
随机页面
帮助
工具
链入页面
相关更改
特殊页面
页面信息