码迷,mamicode.com
首页 >  
搜索关键字:auth    ( 5609个结果
Django修改用户名密码的方法
1.python manage.py shell2.from django.contrib.auth.models import User3.user=User.objects.get(username='XXX')4.user.set_password('new_password')5.user....
分类:其他好文   时间:2014-11-26 18:17:17    阅读次数:189
no talloc stackframe at ../source3/param/loadparm
In Ubuntu 14.04 with Samba server installed, every time you will get this error message when execute sudo command. run sudo?pam-auth-update and unselect "SMB password synchronization", this error...
分类:其他好文   时间:2014-11-24 15:32:00    阅读次数:202
CentOS下自动登陆root帐户
1vi /etc/pam.d/gdm把 auth required …… root quiet这行注释掉2vi /etc/pam.d/gdm-passwd同上3 vi /etc/gdm/custom.conf在末尾增加以下:[daemon]AutomaticLoginEnable=trueAutom...
分类:其他好文   时间:2014-11-23 13:01:56    阅读次数:220
laravel身份验证-Auth的使用
laravel自带了auth类和User模型来帮助我们很方便的实现用户登陆、判断。 首先,先配置一下相关参数 app/config/auth.php: model?指定模型 table?指定用户表 这里我只是将table从users改成user,因为我个人在数据...
分类:其他好文   时间:2014-11-21 16:48:08    阅读次数:165
myeclipse svn 插件去除已经保存的密码方法
删除掉C:\Documents and Settings\hao\Application Data\Subversion\auth\svn.simple文件夹下的文件即可.再次访问时,会弹出要求输入用户名和密码.以上的路径名仅供参考,hao是我的一个用户名,Application Data是一个隐藏...
分类:系统相关   时间:2014-11-20 16:54:04    阅读次数:197
Horizon安装依赖
Downloading/unpacking Django>=1.4.2,=1.4Downloading/unpacking django-openstack-auth>=1.1.7Downloading/unpacking django-pyscss>=1.0.3Downloading/unpack...
分类:其他好文   时间:2014-11-20 01:24:49    阅读次数:501
as3 页游中,新手指导中,屏蔽所有交互对象,但除了指定交互对象可用的方法【转http://blog.csdn.net/linjf520/article/details/9450945】
package{ import flash.display.InteractiveObject; import flash.display.Stage; import flash.events.MouseEvent; /** * 新手指导管理器 * @auth...
分类:Web程序   时间:2014-11-19 21:49:04    阅读次数:104
MongoDB安全运维
0×00 MongoDB权限介绍1.MongoDB安装时不添加任何参数,默认是没有权限验证的,登录的用户可以对数据库任意操作而且可以远程访问数据库,需以–auth参数启动。2.在刚安装完毕的时候MongoDB都默认有一个admin数据库,此时admin数据库是空的,没有记录权限相关的信息。当admi...
分类:数据库   时间:2014-11-16 15:59:23    阅读次数:251
Django如何重设Admin密码
python manage.py shellfrom django.contrib.auth.models import Useruser = User.objects.get(username='admin')user.set_password('new_password')user.save()
分类:其他好文   时间:2014-11-16 12:03:30    阅读次数:156
net-ldap for ruby openldap ldap
preface:ldap 主要概念及术语OpenNebula issues:missing step to use LDAP as default drivercp -r /var/lib/one/remotes/auth/ldap /var/lib/one/remotes/auth/default...
分类:Web程序   时间:2014-11-15 21:47:41    阅读次数:352
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!