mysql 速度检索

授权
GRANT ALL PRIVILEGES ON zabbix.* TO 'zabbix'@'127.0.0.1' IDENTIFIED BY 'zabbixpwd' WITH GRANT OPTION;
flush privileges;

修改用户密码
mysqladmin -uroot -p123456 password 123

修改用户密码
update user set password=password('123') where user='root' and host='localhost';

删除用户
delete from mysql.user where user='‘gogs’';

# git仓库裸板本

git clone --bare git://oldgithub.com/username/oldproject.git

cd oldproject.git

git push --mirror git@newgithub.com/username/newproject.git

转载于:https://www.cnblogs.com/jokerbj/p/11083157.html

猜你喜欢

转载自blog.csdn.net/weixin_34314962/article/details/93783445