当前位置: 首页 > news >正文

设计教育网站微信做公司网站怎么做

设计教育网站,微信做公司网站怎么做,东莞网络营销外包有哪些,php 搭建手机网站网上有很多关于忘记MySQL root密码的一些文章#xff0c;里面都有写怎么去解决#xff0c;但有时觉得写得太恶心#xff0c;要么一字不漏的抄别人的#xff0c;要么就说得不清不楚#xff0c;好了#xff0c;不吐槽了#xff0c;以下是解决的整个过程。 首先我们要知道忘…网上有很多关于忘记MySQL root密码的一些文章里面都有写怎么去解决但有时觉得写得太恶心要么一字不漏的抄别人的要么就说得不清不楚好了不吐槽了以下是解决的整个过程。 首先我们要知道忘记MySQL root密码后能否重启mysql能重启的操作是怎么样的不能重启的操作又会是怎么样的   情况一能重启情况下 修改my.cnf配置文件在mysqld栏下添加skip-grant-tables选项意思是mysqld server启动之后并不使用权限系统privilege system也可以理解为跳过授权表。为了安全起见通常加上skip-networkingmysqld不侦听任何TCP/IP连接请求。 重启mysqld然后空密码连接 [root ~]$mysql -uroot -S /data/mysql-5.5/mysql.sock Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.5.40-log MySQL Community Server (GPL)Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.Type help; or \h for help. Type \c to clear the current input statement.mysql 可以看到已经成功登录了然后修改root密码 mysql update mysql.user set passwordpassword(123456) where userroot; Query OK, 4 rows affected (0.00 sec) Rows matched: 4 Changed: 4 Warnings: 0 mysql flush privileges; Query OK, 0 rows affected (0.01 sec) 已经成功修改密码了但还有事情要做就是把刚刚添加到my.cnf里的skip-grant-tables和skip-networking删除掉或者注释掉。   情况二(不能重启mysql的情况) 如果不能重启mysql.user 刚好有权限比较低的用户如果没有你请神仙来帮你吧哈哈 1、为了测试我自己创建一个用户可以没什么权限 mysql create user xuanzhilocalhost identified by 123456; Query OK, 0 rows affected (0.00 sec) 2、进到数据目录下 [root mysql-5.5]$ pwd /data/mysql-5.5 [root mysql-5.5]$ cp mysql/user.* test/ [root mysql-5.5]$ chown mysql.mysql test/user.* 3、用权限比较小的用户登录 [root mysql-5.5]$mysql -uxuanzhi -p123456 -S /data/mysql-5.5/mysql.sock Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 3 Server version: 5.5.40-log MySQL Community Server (GPL)Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.Type help; or \h for help. Type \c to clear the current input statement.mysql use test Database changed mysql update user set passwordpassword(123123) where userroot; Query OK, 4 rows affected (0.00 sec) Rows matched: 4 Changed: 4 Warnings: 0 4、把修改后的user.MYD和user.MYI复制到mysql目录下记得备份之前的文件。 [root mysql-5.5]$ pwd /data/mysql-5.5 [root mysql-5.5]$ mv mysql/user.MYD mysql/user.MYD.bak [root mysql-5.5]$ mv mysql/user.MYI mysql/user.MYI.bak [root mysql-5.5]$ cp test/user.MY* mysql/ [root mysql-5.5]$ chown mysql:mysql mysql/user.* 5.查找mysql进程号并且发送SIGHUP信号重新加载权限表。有时加载一次不行的时候再加载多一次。 [root mysql]$ pgrep -n mysql 23166 [root mysql]$ kill -SIGHUP 23166 [root mysql]$ /usr/local/mysql-5.5.40/bin/mysql -uroot -p123123 -S /data/mysql-5.5/mysql.sock ERROR 1045 (28000): Access denied for user rootlocalhost (using password: YES) [root mysql]$ kill -SIGHUP 23166 [root mysql]$ /usr/local/mysql-5.5.40/bin/mysql -uroot -p123123 -S /data/mysql-5.5/mysql.sock Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 5 Server version: 5.5.40-log MySQL Community Server (GPL)Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.Type help; or \h for help. Type \c to clear the current input statement.mysql   不重启的第二种方法 1、创建新的数据目录并给原来user相应的权限,忘记密码对应的实例它的user是mysql所以把权限给mysql用户 [root data]$ mkdir -pv /dbdata/datadir/ mkdir: 已创建目录 /dbdata mkdir: 已创建目录 /dbdata/datadir/ [root data]$ chown -R mysql:mysql /dbdata/datadir/ 2、执行初始化操作报错了 [root scripts]$ pwd /usr/local/mysql-5.5.40/scripts [root scripts]$ ./mysql_install_db --datadir/dbdata/datadir/ --usermysql2FATAL ERROR: Could not find ./bin/my_print_defaultsIf you compiled from source, you need to run make install to copy the software into the correct location ready for operation.If you are using a binary release, you must either be at the top level of the extracted archive, or pass the --basedir option pointing to that location. 解决方法 [root scripts]$ /usr/local/mysql-5.6.10/scripts/mysql_install_db --datadir/dbdata/datadir/ --usermysql --datadir/dbdata/datadir/ --basedir/usr/local/mysql-5.6.10/ Installing MySQL system tables... 141210 16:09:24 [Warning] THREAD_CONCURRENCY is deprecated and will be removed in a future release. OK Filling help tables... 141210 16:09:24 [Warning] THREAD_CONCURRENCY is deprecated and will be removed in a future release. OK 3、启动一个新的进程这里要注意一下portsock文件还有pid文件这都是新的user还是忘记密码实例的user而不是忘记密码对应的那个数据库实例的这里我们不需要用到InnoDB引擎,设置默认引擎为MyISAM [root ~]$  /usr/local/mysql-5.6.10/bin/mysqld_safe --datadir/dbdata/datadir --plugin-dir/usr/local/mysql-5.6.10/lib/plugin/  --skip-innodb \ --default-storage-enginemyisam --socket/dbdata/datadir/mysql2.sock --usermysql --port3305 --log-error/dbdata/datadir/error2.log --pid-file/data/mysql-5.6/mysql.pid [1] 21204[root ~]$ 141210 16:56:11 mysqld_safe Logging to /dbdata/datadir/error2.log. 141210 16:56:11 mysqld_safe Starting mysqld daemon with databases from /dbdata/datadir 4、登录新启动的mysql实例此时密码为空密码 root datadir]$ /usr/local/mysql-5.6.10/bin/mysql -S /dbdata/datadir/mysql2.sock Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 Server version: 5.6.10-log Source distributionCopyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.Type help; or \h for help. Type \c to clear the current input statement.mysql flush tables; Query OK, 0 rows affected (0.00 sec) 修改root密码 mysql select user, host, password from user where user like root; --------------------------------------- | user | host | password | --------------------------------------- | root | localhost | | | root | localhost.localdomain | | | root | 127.0.0.1 | | | root | ::1 | | --------------------------------------- 4 rows in set (0.02 sec)mysql update mysql.user set passwordpassword(654321) where userroot; Query OK, 4 rows affected (0.03 sec) Rows matched: 4 Changed: 4 Warnings: 0 mysql flush privileges; Query OK, 0 rows affected (0.00 sec) 5、拷备新的user表到忘记密码的实例数据库的mysql目录下 [root mysql]$ pwd /dbdata/datadir/mysql [root mysql]$ cp user.* /data/mysql-5.6/mysql/ cp是否覆盖/data/mysql-5.6/mysql/user.frm y cp是否覆盖/data/mysql-5.6/mysql/user.MYD y cp是否覆盖/data/mysql-5.6/mysql/user.MYI y [root mysql]$ chown -R mysql5.6:mysql5.6 /data/mysql-5.6/ [root mysql]$ chmod 660 /data/mysql-5.6/mysql/user.* 6、我们需要到mysqld发送一个sighup信号MySQL响应这个信号加载授权表刷新表日志线程缓存。如果是单个MySQL实例可以用这样的方法去重新加载 [root ~]$ kill -1 $(/sbin/pidof mysqld) 如果是多个MySQL实例在一台服务器上的话就要注意点了可以通过这样的方法找到pid我旧实例的端口是3306 [root mysql-5.6.10]$ netstat -nltp Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:3307 0.0.0.0:* LISTEN 8414/mysqld tcp 0 0 0.0.0.0:3308 0.0.0.0:* LISTEN 6430/mysqld tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1144/sshd tcp 0 0 :::3310 :::* LISTEN 17151/mysqld tcp 0 0 :::22 :::* LISTEN 1144/sshd tcp 0 0 ::1:631 :::* LISTEN 1109/cupsd tcp 0 0 :::3306 :::* LISTEN 2091/mysqld [root mysql-5.6.10]$ kill -1 2091 有时kill -1一次不行再执行一次就可以了 [root mysql-5.6.10]$ kill -1 2091 [root mysql-5.6.10]$ /usr/local/mysql-5.6.10/bin/mysql -uroot -p654321 -S /data/mysql-5.6/mysql.sock Warning: Using a password on the command line interface can be insecure. ERROR 1045 (28000): Access denied for user rootlocalhost (using password: YES) [root mysql-5.6.10]$ kill -1 2091 [root mysql-5.6.10]$ /usr/local/mysql-5.6.10/bin/mysql -uroot -p654321 -S /data/mysql-5.6/mysql.sock Warning: Using a password on the command line interface can be insecure. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 13 Server version: 5.6.10-log MySQL Community Server (GPL)Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.Type help; or \h for help. Type \c to clear the current input statement.mysql OK已经成功登录了如果有更多好的方法我们可以再一起讨论下     总结 1第一种方法简单但需要重启MySQL,重启会影响线上业务一般不建议重启 2第二种方法比较好不用重启MySQL实例修改密码只修改root用户的而且其它保持不变 3第三种方法也不需要重启但是新的user表里只有root一个用户如果之前服务器还存在别的用户及权限这就比较麻烦了      参考资料http://www.percona.com/blog/2014/12/10/recover-mysql-root-password-without-restarting-mysql-no-downtime/ PS:本人也是参考别人的博客做的但我没有照搬别人的东西太恶心了希望大家有自己的风格。^.^   作者陆炫志 出处xuanzhi的博客 http://www.cnblogs.com/xuanzhi201111 您的支持是对博主最大的鼓励感谢您的认真阅读。本文版权归作者所有欢迎转载但请保留该声明。 转载于:https://www.cnblogs.com/xuanzhi201111/p/4138352.html
http://www.zqtcl.cn/news/601516/

相关文章:

  • 做网站公司电话福建城乡建设网站查询
  • 郑州做网站哪个公司好做二手市场类型的网站名字
  • 网站建设与维护里面的个人简历选择网站建设公司好
  • 济南浩辰网站建设公司怎么样wordpress 3.8 问题
  • 柳州正规网站制作公司网站ww正能量
  • 网站seo优化工具网站推广策略方法
  • 企业网站建设知名wordpress 自定义php
  • 用php做的网站有哪些全能网站建设
  • 网站显示正在建设中wordpress 排行榜 页面
  • 手机管理网站网站打开速度优化
  • 做微网站需要什么做的比较好的美食网站有哪些
  • 五金商城网站建设注意wordpress虚拟空
  • 成都工程网站建设网站界面设计的优点
  • 网站建设里的知识找别人做公司网站第一步做什么
  • 婚纱摄影网站模板之家专业seo网站优化公司
  • 商丘市住房和城乡建设局网站广西网站建设timkee
  • php网站开发是做什么的网站策划总结
  • 站长工具seo推广秒收录WordPress注册插件中文
  • 目前个人网站做地最好是哪几家做汽配网站需要多少钱
  • php做网站多少钱网络营销推广方案3篇
  • 浙江坤宇建设有限公司 网站省直部门门户网站建设
  • 直播类网站怎么做上海市建设质量协会网站
  • 筑巢做网站怎么样网站设计接单
  • 会ps的如何做网站wordpress 仿虎嗅
  • 免费响应式网站建设嘉兴建企业网站
  • 织梦网站首页幻灯片不显示建设银行网站特色
  • php企业网站开发东莞网站建设时间
  • 仿win8网站模板网站开发接私活的经理
  • 仿牌网站 域名注册衡水安徽网站建设
  • 合肥义城建设集团有限公司网站专业建站公司电话咨询