配置mysql,tomcat开机自动启动
apt-get install sysv-rc-conf
sysv-rc-conf //打开了命令行方式的自启动服务管理界面:
1
2
用鼠标点击,也可以用键盘方向键定位,用空格键选择, “X”表示开启该服务。用Ctrl+N翻下一页,用Ctrl+P翻上一页,用Q退出。
也可以用命令:
sysv-rc-conf --level 2345 mysql off
1
一、MySQL
mysql “ERROR 1524 (HY000): Plugin 'auth_socket' is not loaded”
1
版本 mysql 5.7,解决
root#~:sudo su
root#~:/etc/init.d/mysql stop
root#~:mysqld_safe --skip-grant-tables &
root#~:mysql -uroot
mysql->use mysql;
mysql->update mysql.user set authentication_string=password('123qwe') where user='root' and Host = 'localhost';
//将 123qwe 修改为你自己的新密码
mysql->update user set plugin="mysql_native_password";
mysql->flush privileges;
mysql->quit;
root#~/etc/init.d/mysql stop
root#~kill -9 $(pgrep mysql)
root#~/etc/init.d/mysql start
root#~mysql -u root -p
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
执行 gunicorn -b 0.0.0.0:80 manage:app 时报错:
Gunicorn Connection in Use: (‘0.0.0.0’,80)
解决:kill -9 $(lsof -i:80 -t) 2> /dev/null