1. allow all ip access db.
mysql> CREATE USER 'root'@'%' IDENTIFIED BY '******';
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION;
2. Linux下mysql安装完后是默认:区分表名的大小写,不区分列名的大小写;
用root帐号登录后,在/etc/my.cnf 中的[mysqld]后添加
bind-address = 192.168.1.32
lower_case_table_names = 1
character-set-server = utf8
collation-server = utf8_general_ci
3. sudo service mysql restart
Installing MySQL on Linux Using Debian Packages from Oracle
Install http://dev.mysql.com/doc/refman/5.6/en/linux-installation-debian.html
1 . libaio1_0.3.109-4_amd64.deb
2. libc6_2.19-0ubuntu6_amd64.deb
3. libnuma1_2.0.9~rc5-1ubuntu2_amd64.deb
4. mysql-server_5.6.31-1ubuntu14.04_amd64.deb-bundle.tar
dpkg -i libc6_2.19-0ubuntu6_amd64.deb
dpkg -i libnuma1_2.0.9~rc5-1ubuntu2_amd64.deb
shell> sudo dpkg -preconfigure mysql-community-server_*.deb
shell> sudo dpkg -i mysql-{common,community-client,client,community-server,server}_*.deb
Here are where the files are installed on the system:
-
All configuration files (like
my.cnf) are under/etc/mysql -
All binaries, libraries, headers, etc., are under
/usr/binand/usr/sbin -
The data directory is under
/var/lib/mysql
本文详细介绍了在Linux系统中使用Oracle提供的Debian包安装MySQL的过程,包括安装必要的库文件、基本安装步骤以及关键配置参数,如允许所有IP访问数据库、修改表名和列名的大小写敏感性、重启服务等。
9054

被折叠的 条评论
为什么被折叠?



