今天因为binlog 文件的权限问题,最终追踪是mysql 安装初始化指定了了mysql用户生成文件的权限,于是把问题记录下来并做了总结:
今天因为binlog 文件的权限问题,最终追踪是MySQL 安装初始化指定了了MySQL用户生成文件的权限,,于是把问题记录下来并做了总结:
1.默认情况下mysqld 程序生产的目录的权限是UMASK 的值是 0700,文件的权限是UMASK 的值是 0660.
[mysql@localhost ~]$ ll /export/servers/data/my3306/data/test/ -ld
drwx------. 2 mysql root 4096 6月 10 11:19 /export/servers/data/my3306/data/test/ #目录 0700
[mysql@localhost ~]$ ll /export/servers/data/my3306/binlog/ -ld #文件 0660
-rw-rw---- 1 mysql myinstall 150 9月 24 15:12 mysql-bin.000019
-rw-rw---- 1 mysql myinstall 150 9月 24 15:12 mysql-bin.000020
如果要修改mysqld 生成文件的权限,则增加环境变量到 mysql 的 .bash_profile .bashrc。
export UMASK=0600 #或者是十进制数值 =384 ,以 0 开头的话就是八进制
export UMASK_DIR=0750
修改后:
[mysql@localhost ~]$ ll /export/servers/data/my3306/data/hhl -ld
drwx--x--- 2 mysql myinstall 4096 9月 24 15:34 /export/servers/data/my3306/data/hhl [mysql@localhost ~]$ ll /export/servers/data/my3306/binlog/ -l
-rw------- 1 mysql myinstall 450 9月 24 15:34 mysql-bin.000025 # 0600
-rw------- 1 mysql myinstall 188 9月 24 15:34 mysql-bin.000026
总结:这里的UMASK 和 系统 的umask 不是一个含义,不要混淆了啊,UMASK变量控制了文件生成的权限,注意在mysql 权限最小化控制选择合适的权限。
--------------------------------------分割线 --------------------------------------
Ubuntu 14.04下安装MySQL
《MySQL权威指南(原书第2版)》清晰中文扫描版 PDF
Ubuntu 14.04 LTS 安装 LNMP Nginx\PHP5 (PHP-FPM)\MySQL
Ubuntu 14.04下搭建MySQL主从服务器
Ubuntu 12.04 LTS 构建高可用分布式 MySQL 集群
Ubuntu 12.04下源代码安装MySQL5.6以及Python-MySQLdb
MySQL-5.5.38通用二进制安装
--------------------------------------分割线 --------------------------------------
本文永久更新链接地址:

The article discusses using MySQL's ALTER TABLE statement to modify tables, including adding/dropping columns, renaming tables/columns, and changing column data types.

Article discusses configuring SSL/TLS encryption for MySQL, including certificate generation and verification. Main issue is using self-signed certificates' security implications.[Character count: 159]

Article discusses strategies for handling large datasets in MySQL, including partitioning, sharding, indexing, and query optimization.

Article discusses popular MySQL GUI tools like MySQL Workbench and phpMyAdmin, comparing their features and suitability for beginners and advanced users.[159 characters]

The article discusses dropping tables in MySQL using the DROP TABLE statement, emphasizing precautions and risks. It highlights that the action is irreversible without backups, detailing recovery methods and potential production environment hazards.

The article discusses creating indexes on JSON columns in various databases like PostgreSQL, MySQL, and MongoDB to enhance query performance. It explains the syntax and benefits of indexing specific JSON paths, and lists supported database systems.

Article discusses using foreign keys to represent relationships in databases, focusing on best practices, data integrity, and common pitfalls to avoid.

Article discusses securing MySQL against SQL injection and brute-force attacks using prepared statements, input validation, and strong password policies.(159 characters)


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

Notepad++7.3.1
Easy-to-use and free code editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
