无需技术,做网站,你也牛!
所有新购主机 增送数据库
操作简洁 功能强大
专业团队 资深背景
微信搜索:cn163ns
主要功能是针对微信商家公众号提供与众不同的、有针对性的营销推广服务。通过微信平台,用户可以轻松管理自己的微信各类信息,对微信公众账号进行维护、开展智能机器人、在线发优惠劵、抽奖、刮奖、派发会员卡、打造微官网、开启微团购等多种活动,对微信营销实现有效监控,极大扩展潜在客户群和实现企业的运营目标。无使用时间和功能限制
先结束mysql进程 #killall mysqld
用mysql安全模式运行并跳过权限 #mysqld_safe
–skip-grant-tables 用root登录,此时不需要密码 #mysql –u root
现在开始重设密码 #mysql> use
mysql;
Reading table information for completion of table and column
names
You can turn off this feature to get a quicker startup with –A
Database changed
Mysql> upsate user set Password=new password where
user = ‘root’ ;
Query OK, 2 rows affected (0.02 sec)
Rows matched: 2
Changed: 2 Warnings: 0
Mysql> quit
重新启动mysql服务 #service mysqld
restart