摘要:
1.创建数据库 create database databasename default charset=utf8; 2.创建数据库用户(不再使用root账户) create user meiduo identified by 'meiduo'; grant all on meiduo_mall.* to 'meiduo'@'%'; #授权 flush privileges; ... 阅读全文
摘要:
1. cd .ssh 2. ssh-keygen -t rsa 3.Enter file in which to save the key (/home/python/.ssh/id_rsa): (回车,确认保存位置) 4. 输入密码 Enter passphrase (empty for no p 阅读全文