您正在查看: 2019年1月
ubuntu下修改mysql5.7的密码
https://blog.csdn.net/qq_37604508/article/details/78844288
参考这篇文章。如果这篇文章没用的话检查mysql.user表下的plugin字段值是否为mysql_native_password,如果不是mysql_native_password,需要改为如果不是mysql_native_password
ubuntu自动化安装php文件
ubuntu_automatic_install_php.py
```python
# coding=utf-8
import os
import sys
import platform
print(sys.version)
if 'Ubuntu' not in platform.version():
print('只能在ubuntu系统中运行')
ex...