Linux安装MySQL遇到的问题

安装:html

https://www.cnblogs.com/fnlingnzb-learner/p/5830622.htmlmysql

 https://www.cnblogs.com/xinjing-jingxin/p/8025805.htmllinux

https://www.cnblogs.com/xxoome/p/5864912.htmlsql

https://www.cnblogs.com/bookwed/p/5896619.html数据库

一、解压到当前目录vim

tar -xvzf mysql-5.6.42-linux-glibc2.12-x86_64.tar.gz安全

二、复制到mysql目录服务器

cp  mysql-5.6.42-linux-glibc2.12-x86_64 /usr/local/mysql -rsocket

三、添加系统mysql组和mysql用户ide

groupadd mysql和useradd -r -g mysql mysql

四、安装数据库

进入安装mysql软件目录:执行命令 cd /usr/local/mysql

修改当前目录拥有者为mysql用户:执行命令 chown -R mysql:mysql ./

安装数据库:执行命令 ./scripts/mysql_install_db --user=mysql

修改当前目录拥有者为root用户:执行命令 chown -R root:root ./

修改当前data目录拥有者为mysql用户:执行命令 chown -R mysql:mysql data

五、安装完成

开启远程链接:

https://www.cnblogs.com/pqy521/p/7111268.html

 

1、MySQL5.6 Using a password on the command line interface can be insecure解决方法;

缘由:

官方网址:http://dev.mysql.com/doc/refman/5.1/en/password-security-user.html
MySQL users shoulduse the following guidelines to keep passwords secure.
When you run a client program to connect to the MySQL server, it is inadvisableto specify your password in a way that exposes it to discovery by other users.The methods you can use to specify your password when you run client programsare
listed here, along with an assessment of the risks of each method. Inshort, the safest methods are to have the client program prompt for thepassword or to specify the password in a properly protected option file.

翻译过来大意是在命令行下若是要使用密码能够在执行命令后的提示输入里输入密码,或者在指定的安全文件内指定密码;那安全文件时哪一个呢?文档对此给出了答案:
Store your passwordin an option file. For example, on Unix, you can list your password in the[client] section of the .my.cnf file in your home directory:

1.针对mysql:
mysql -u root -pPASSWORD改为mysql -u root -p 在输入密码便可.
2.mysqldump就比较麻烦了,一般都写在scripts脚本中;
解决方法:
对于mysqldump 要如何避免出现(Warning:Using a password on the command line interface can be insecure.) 警告信息呢?
vim /etc/mysql/my.cnf
[mysqldump]
user=your_backup_user_name
password=your_backup_password
修改完配置文件后, 只须要执行mysqldump 脚本就能够了;备份脚本中不须要涉及用户名密码相关信息;
我用的是第一种,第二种没试过。

 

2、Centos下Mysql由于pid文件启动失败问题解析

> service mysql start
Starting MySQL.. ERROR! The server quit without updating PID file (/var/run/mariadb/mariadb.pid).
cat /var/log/mariadb/mariadb.log
...
171112 11:18:38 [ERROR] /usr/sbin/mysqld: Can't create/write to file '/var/run/mariadb/mariadb.pid' (Errcode: 2)
171112 11:18:38 [ERROR] Can't start server: can't create PID file: No such file or directory

我看了下,的确文件、文件都不存在,个人解决办法是:

> mkdir /var/run/mariadb
> chown mysql.mysql /var/run/mariadb/

最后,重启MySQL,成功。

> service mysql start
Starting MySQL.. SUCCESS!

 

3、mysql.sock问题(解决方法不少,这只是其中一个)

Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) 

这是能够因为系统默认的文件位置和文件位置不一致,解决办法找到文件建立软连接

find / -name mysql.sock 
ln -s /var/lib/mysql/mysql.sock /tmp/mysql.sock

 

4、   FATAL ERROR: please install the following Perl modules before executing scripts/mysql_install_db:
    Data::Dumper

#解决方法:
yum install -y perl-Data-Dumper

 

5、mysqld_safe Directory '/var/lib/mysql' for UNIX socket file don't exists.

https://blog.csdn.net/qq_32331073/article/details/76229420

 

6、MySQL: Starting MySQL….. ERROR! The server quit without updating PID file解决办法

https://blog.csdn.net/orichisonic/article/details/47021379

 

7、若是是阿里云服务器 须要注意

这地方也须要开启相关的端口,否则仅仅是linux开启防火墙不行

相关文章
相关标签/搜索