首先,如果你不是一个架构师,那么你得知道什么是才能往下看
centos
django
MysqL-python
==============================================================================================================
提示: can't open .... /var/lib/MysqL/MysqL.sock
然后我会告诉你
我在django的启动setting的Databased项里添加OPTIONS
(本来是没有option的,同样的一份代码,配置,我用MAC笔记本做服务器也是不需要option的,但是现在部署到linux上)
改写,添加option项:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.MysqL',# Add 'postgresql_psycopg2','MysqL','sqlite3' or 'oracle'.
'NAME': 'star_ums',# Or path to database file if using sqlite3.
'USER': 'root',# Not used with sqlite3.
'PASSWORD': '',# Not used with sqlite3.
'HOST': '',# Set to empty string for localhost. Not used with sqlite3.
'PORT': '',# Set to empty string for default. Not used with sqlite3.
'OPTIONS':{
"unix_socket":"/tmp/MysqL.sock"
},
}
问题解决!Fuxx...............!!!
不用Ctrl + Alt + F12切命令行了
直接用centos终端.............(突然领悟到所谓的架构师,TMD就是linux系统软件安装师,起码是国内是这样的,名称什么的乱起!)
(后面就没有后面了,反正你都 su 了,还用什么设sudo用户???)
草泥马。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。!!!!!
最终结果:
最后:我还是不得不设sudoers,因为好像没办法在桌面添加快捷方式
具体做法:(即使不懂VI也可以按下面步骤做)
但真的要小心,博主试过VI乱按,导致ROOT用户权限全不见了,所有文件无法查看,Linux慎用
2)添加文件的写权限。也就是输入命令"chmod u+w /etc/sudoers"。
3)编辑/etc/sudoers文件。也就是输入命令"vim /etc/sudoers",输入"i"进入编辑模式,找到这一 行:"root ALL=(ALL) ALL"在起下面添加"xxx ALL=(ALL) ALL"(这里的xxx是你的用户名),然后保存(就是先按一 下Esc键,然后输入":wq")退出。
4)撤销文件的写权限。也就是输入命令"chmod u-w /etc/sudoers"