Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Database \ MariaDB database storage path modify configuration issues     - Django Web dynamic three linkage (Programming)

- Win7 used Eclipse to connect the virtual machine in Ubuntu Hadoop2.4 (Server)

- MongoDB configuration in Ubuntu 14.04 (Database)

- Ubuntu 14.04 virtual machine switching desktop environments (Linux)

- Beautiful start Ubuntu installation tool Duck Launcher 0.64.5 (Linux)

- Memory leak analysis using Android studio (Programming)

- How to display a dialog Bash Shell script (Programming)

- How to test your MongoDB application upgrade? (Database)

- RHEL5 / 6 Installation Notes (Linux)

- RHEL7 system making use of OpenStack mirror (Linux)

- CentOS Linux firewall configuration and Close (Linux)

- Linux Open coredump (Linux)

- Setting up Linux machine through a proxy firewall (Linux)

- HTTPS and SSH and use the difference between the way: Git User's Manual (Linux)

- Elixir: the future of programming languages (Programming)

- Linux foundation tutorial: how to modify the host name on CentOS or RHEL 7 (Linux)

- Xshell key authentication mechanism using a remote login Linux (Linux)

- C ++ two second pointer memory model (two-dimensional array) (Programming)

- Copy and paste in Linux terminal and Vim (Linux)

- Supervisor Installation and Configuration (Server)

 
         
  MariaDB database storage path modify configuration issues
     
  Add Date : 2018-11-21      
         
         
         
 

MySQL is not running, but lock file (/ var / lock / subsys / mysql) the existence of this problem exists
generally determined by three reasons:
1: configuration files enough authority, all of the files related to the configuration of all the changes for the mysql user rights
2: pid mysql is not running, rm -rf / var / lock / subsys / mysql, to re-create a new default pid file permissions to 660
3: my.cnf configuration file errors, we need to re-edit

Can not open and lock privilege tables: Table 'mysql.user' does not exist
The problem is due myql storage file system comes with no database can be entered or the database mysql_install_db
the path to re-edit the default / directory var / lib / mysql is

posted below my own mariadb configuration (from the database)

[client]
port             = 3306
socket           = /var/lib/mysql/mysql.sock
default-character-set = utf8


[mysqld_safe]
socket           = /var/lib/mysql/mysql.sock
nice             = 0


[mysqld]
user   = mysql
pid-file   = /var/run/mysqld/mysqld.pid
socket   = / var / lib / mysql /mysql.sock
log_error   =   /var/log/mysqld/error.log
port   = 3306
basedir   = / usr
datadir   = / data
tmpdir   = / tmp
lc-messages-dir = / usr / share / mysql
skip-external-locking
bind-address = 0.0.0.0
skip- name-resolve
lower_case_table_names = 1
max_connections = 1000
connect_timeout = 15
wait_timeout = 600
max_allowed_packet       = 16M
thread_cache_size       = 128
sort_buffer_size         = 16M
bulk_insert_buffer_size = 16M
tmp_table_size           = 128M
max_heap_table_size     = 128M
query_cache_limit     = 0
query_cache_size     = 0


long_query_time = 10


log_bin                 = / var / log / mysqld / mysql-bin
log_bin_index           = / var / log / mysqld / mysql-bin.index


expire_logs_days         = 10
max_binlog_size         = 100M


binlog_ignore_db = mysql
server_id = 5005
log_slave_updates = 1
slave_skip_errors = all
# auto_increment_offset = 1
### auto_increment_increment = 2
# binlog_format = row
#
##
## replicate-do-db =
#key_buffer_size = 1024M
##
#
# collation-server = utf8_general_ci
# init-connect = 'SET NAMES utf8'
# character-set-server = utf8
#
# default_storage_engine   = InnoDB
# innodb_buffer_pool_size = 30720M
# innodb_log_buffer_size   = 32M
# innodb_file_per_table   = 1
# innodb_open_files       = 400
# innodb_io_capacity       = 400
# innodb_flush_method     = O_DIRECT
#innodb_flush_log_at_trx_commit = 2
# innodb_log_file_size     = 512M
#
# key_buffer               = 16M
# thread_stack             = 192K
# myisam-recover         = BACKUP
#
# [mysqldump]
#quick
# quote-names
# max_allowed_packet       = 16M
#
# [isamchk]
# key_buffer               = 16M
##

     
         
         
         
  More:      
 
- Fedora 22 installation and configuration optimization (Linux)
- Ubuntu installation 2.10.x version of Scala (Linux)
- Servlet life cycle works (Programming)
- 5 interesting Linux command line tips (Linux)
- Linux kernel network subsystem analysis (Programming)
- php How to prevent being injected (Linux)
- The execution order of Oracle WHERE condition is not from right to left (Database)
- Nginx version of helloworld (Server)
- To install GCC development environment under SUSE11 (Linux)
- 256 with rich colors decorate your terminal (Linux)
- File compression and packaging commands under Linux (Linux)
- RabbitMQ tutorial examples: the Hello RabbitMQ World Java realization (Linux)
- 10 example of the detection memory usage free Linux commands (Linux)
- How to modify the Sublime in Tab four spaces (Linux)
- Binary Packages Golang (Linux)
- The correct method to modify the maximum number of concurrent connections Tomcat 7 (Server)
- How to protect the Apache website under Linux system (Linux)
- To install Docker under Ubuntu 15.04 (Linux)
- Linux Apache server security (Linux)
- Apache Mina framework Practice (Programming)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.