索引:
参看代码 GitHub:
一、安装
sudo apt-get install mysql-server
期间需要输入两次密码,root账户的密码
sudo apt-get install mysql-client
二、控制台登陆
mysql -u root -p
输入root账户密码就可以登录了
quit
退出
三、基本编码配置
登陆后
SHOW VARIABLES LIKE 'character%';
默认编码为utf- -- 修改/etc/mysql/my.cnf (默认安装路径下) (标签下没有的添加,有的修改)
[mysqld]
character_set_server=utf8 [mysql]
default-character-set=utf8 [client]
default-character-set=utf8
四、服务操作
停止MySQL数据库服务
sudo systemctl stop mysql.service
启动MySQL数据库服务
sudo systemctl start mysql.service
重启MySQL数据库服务
sudo systemctl restart mysql.service
五、运行状态基本查看
查看MySQL运行状态
sudo systemctl status mysql.service
查看mysqld进程是否开启
pgrep mysqld
如果进程开启,命令将返回该进程的id。
六、开机自启及服务
这里可能chkconfig没有安装,如果是的话 ,则需要安装chkconfig命令
sudo apt-get install chkconfig
将mysql加入到系统服务
chkconfig --add mysql
将mysql设置开机启动
chkconfig mysql on
蒙
2018-05-05 23:30 周六
2018-05-11 22:49 周五