一.安装 apt-get install mysql-server 二.本地连接 mysql默认开启了本地连接 直接通过mysql -uuser -p,然后输入密码访问 三.开启远程访问 3.1.创建一个与管理员同等权限的用户 grant all privileges on *.* to 'user'@'%' identified by 'password' with grant option 3.2.更新mysql权限 flush privileges 3.3.修改配置文件实现远程访问 vim…
CentOS 6.5 安装MySQL数据库 [root@seeker~]# yum -y install mysql-server //安装命令 [root@seeker~]# service mysqld start //连接之前先启动服务 [root@seeker~]# chkconfig mysqld on //开机启动设置,也可以手动开启 [root@seeker~]# mysql -u root Welcome to the MySQL monitor. Commands end wi…
基于Ubuntu Server 16.04 LTS版本安装和部署Django之(一):安装Python3-pip和Django 基于Ubuntu Server 16.04 LTS版本安装和部署Django之(二):Apache安装和配置 基于Ubuntu Server 16.04 LTS版本安装和部署Django之(三):设置上传文件夹权限(这里测试用完全共享) 基于Ubuntu Server 16.04 LTS版本安装和部署Django之(四):安装MySQL数据库 基于Ubuntu Serv…