web-dev-qa-db-ja.com

データベースドライブを変更しようとすると、「ソケットを介してローカルMySQLサーバーに接続できません」という結果になりました

ルートディレクトリがいっぱいになっていたため、AmazonEC2インスタンスのUbuntuインストールでデータベースを別のマウントに移動しようとしました。私は何かを壊したと思います。私が走るとき:

$ Sudo mysqld --datadir=/var/lib/mysql --user mysql
110412 11:36:44 [Warning] Can't create test file /mnt/var/lib/mysql/ip-10-244-207-161.lower-test
110412 11:36:44 [Warning] Can't create test file /mnt/var/lib/mysql/ip-10-244-207-161.lower-test

/var/log/mysql/error.log

110412 16:01:27 [Note] Plugin 'FEDERATED' is disabled.
/usr/sbin/mysqld: Can't find file: './mysql/plugin.frm' (errno: 13)
110412 16:01:27 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
/usr/sbin/mysqld: Can't create/write to file '/mnt/tmp/ibRTnZix' (Errcode: 13)
110412 16:01:27  InnoDB: Error: unable to create temporary file; errno: 13
110412 16:01:27 [ERROR] Plugin 'InnoDB' init function returned error.
110412 16:01:27 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
110412 16:01:27 [ERROR] /usr/sbin/mysqld: Can't create/write to file '/mnt/var/lib/mysql/ip-10-244-207-161.pid' (Errcode: 13)
110412 16:01:27 [ERROR] Can't start server: can't create PID file: Permission denied

ファイル ip-10-244-207-161.lower-testはまだ存在していません:

ls -l /mnt/var/lib/mysql
total 20532
-rwxr-xr-x 1 mysql root         0 2011-02-28 22:23 debian-5.1.flag
-rwxr-xr-x 1 mysql mysql 10485760 2011-04-12 07:31 ibdata1
-rwxr-xr-x 1 mysql mysql  5242880 2011-04-12 07:31 ib_logfile0
-rwxr-xr-x 1 mysql mysql  5242880 2011-02-28 22:23 ib_logfile1
drwxr-xr-x 2 mysql root      4096 2011-02-28 22:23 mysql
-rwxr-xr-x 1 mysql root         6 2011-02-28 22:23 mysql_upgrade_info
drwxr-xr-x 2 mysql mysql     4096 2011-04-11 08:22 scrapy_cache

ディレクトリはアクセス可能のようです:

$ ls -l /mnt/var/lib/ | grep mysql
drwxr-xr-x 4 mysql mysql 4096 2011-04-12 07:31 mysql

$ ls -l /var/lib/ | grep mysql
lrwxrwxrwx 1 mysql     root      18 2011-04-12 09:05 mysql -> /mnt/var/lib/mysql

ls -ld /mnt/{,var/{,lib/{,mysql}}}
drwxr-xr-x 5 root  root   4096 2011-04-12 07:27 /mnt/
drwxr-xr-x 3 mysql root   4096 2011-04-12 07:29 /mnt/var/
drwxr-xr-x 3 mysql ubuntu 4096 2011-04-12 07:33 /mnt/var/lib/
drwxr-xr-x 4 mysql mysql  4096 2011-04-12 07:31 /mnt/var/lib/mysql

My.cnfで変更した部分:

user            = mysql
socket          = /var/run/mysqld/mysqld.sock
port            = 3306
basedir         = /usr
datadir         = /mnt/var/lib/mysql
tmpdir          = /mnt/tmp
skip-external-locking

私はそれをデバッグしようとしている間に惨めに失敗したので、私はこれについていくつかの助けを本当に感謝します。

私はSudo chown -R mysql /mnt/var/lib/mysqlしたがって、すべてがmysqlサーバーによって所有されている必要があります。 /mntは、私が実行したときに最も確実に書き込み可能ですmv /var/lib/mysql /mnt/var/lib/移行したとき。マウントはこれを確認します:

$ mount | grep /mnt
/dev/sda2 on /mnt type ext3 (rw)

ディスクの容量がいっぱいではなく、iノードが不足していません。ディスククォータがアクティブではないようです。repquotaをインストールしましたが、まったく何も出力されませんでした。

$ df -h /dev/sda2
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda2             335G  2.0G  316G   1% /mnt

$ df -i /dev/sda2
Filesystem            Inodes   IUsed   IFree IUse% Mounted on
/dev/sda2            44564480     104 44564376    1% /mnt

コメントで示唆されているように、MySQLユーザーが機能するように物を作成します。

$ su -s /bin/bash - mysql

$ touch /mnt/var/lib/mysql/ip-10-244-207-161.lower-test

$ ls -ld /mnt/var/lib/mysql/ip-10-244-207-161.lower-test
-rw-r--r-- 1 mysql mysql 0 2011-04-12 14:10 /mnt/var/lib/mysql/ip-10-244-207-161.lower-test

$ rm -f /mnt/var/lib/mysql/ip-10-244-207-161.lower-test
$ ls -ld /mnt/var/lib/mysql/ip-10-244-207-161.lower-test
ls: cannot access /mnt/var/lib/mysql/ip-10-244-207-161.lower-test: No such file or directory

MySqlが実行されていません。

$ ps aux | grep mysql
ubuntu   20825  0.0  0.0   3700   776 pts/1    S+   15:40   0:00 grep --color=auto mysql

/etc/mysql/my.cnf

#
# The MySQL database server configuration file.
#
# You can copy this to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
# 
# One can use all long options that the program supports.
# Run program with --help to get a list of available options and with
# --print-defaults to see which it would actually understand and use.
#
# For explanations see
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html

# This will be passed to all mysql clients
# It has been reported that passwords should be enclosed with ticks/quotes
# escpecially if they contain "#" chars...
# Remember to edit /etc/mysql/debian.cnf when changing the socket location.
[client]
port        = 3306
socket      = /var/run/mysqld/mysqld.sock

# Here is entries for some specific programs
# The following values assume you have at least 32M ram

# This was formally known as [safe_mysqld]. Both versions are currently parsed.
[mysqld_safe]
socket      = /var/run/mysqld/mysqld.sock
Nice        = 0

[mysqld]
#
# * Basic Settings
#

#
# * IMPORTANT
#   If you make changes to these settings and your system uses apparmor, you may
#   also need to also adjust /etc/apparmor.d/usr.sbin.mysqld.
#

user        = mysql
socket      = /var/run/mysqld/mysqld.sock
port        = 3306
basedir     = /usr
datadir     = /mnt/var/lib/mysql
tmpdir      = /mnt/tmp
skip-external-locking
#
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address        = 127.0.0.1
#
# * Fine Tuning
#
key_buffer      = 16M
max_allowed_packet  = 16M
thread_stack        = 192K
thread_cache_size       = 8
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover         = BACKUP
#max_connections        = 100
#table_cache            = 64
#thread_concurrency     = 10
#
# * Query Cache Configuration
#
query_cache_limit   = 1M
query_cache_size        = 16M
#
# * Logging and Replication
#
# Both location gets rotated by the cronjob.
# Be aware that this log type is a performance killer.
# As of 5.1 you can enable the log at runtime!
#general_log_file        = /var/log/mysql/mysql.log
#general_log             = 1

log_error                = /var/log/mysql/error.log

# Here you can see queries with especially long duration
#log_slow_queries   = /var/log/mysql/mysql-slow.log
#long_query_time = 2
#log-queries-not-using-indexes
#
# The following can be used as easy to replay backup logs or for replication.
# note: if you are setting up a replication slave, see README.Debian about
#       other settings you may need to change.
#server-id      = 1
#log_bin            = /var/log/mysql/mysql-bin.log
expire_logs_days    = 10
max_binlog_size         = 100M
#binlog_do_db       = include_database_name
#binlog_ignore_db   = include_database_name
#
# * InnoDB
#
# InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
# Read the manual for more InnoDB related options. There are many!
#
# * Security Features
#
# Read the manual, too, if you want chroot!
# chroot = /var/lib/mysql/
#
# For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
#
# ssl-ca=/etc/mysql/cacert.pem
# ssl-cert=/etc/mysql/server-cert.pem
# ssl-key=/etc/mysql/server-key.pem



[mysqldump]
quick
quote-names
max_allowed_packet  = 16M

[mysql]
#no-auto-rehash # faster start of mysql but no tab completition

[isamchk]
key_buffer      = 16M

#
# * IMPORTANT: Additional settings that can override those from this file!
#   The files must end with '.cnf', otherwise they'll be ignored.
#
!includedir /etc/mysql/conf.d/
2
Kit Sunde

私はついに問題が何であるかを理解しました。 ec2 インスタンスで apparmor を実行していました(デフォルトでインストールされています)。不平を言うのをやめるために私はしました:

Sudo aa-complain /usr/sbin/mysqld

これで mysql が期待どおりに起動し、データをクエリできます。このような些細な問題に多くの時間を費やすことに私は気分が悪く、皆がどれほど助けてくれたか本当に感謝しています。 apparmor の問題を理解できなかったでしょう ser78151 について尋ねる selinux

別の解決策は、ブログ投稿 私が見つけた で説明されているディレクトリ(どちらの方法も気にしない)を使用できるように apparmor を構成することです。

4
Kit Sunde

ファイル/mnt/var/lib/mysql/ip-10-244-207-161.lower-testは存在しますか?はいの場合、それはmysqlによって所有されていますか? /mnt/var/lib/mysql内のディレクトリにあるすべてのファイルは、MySQLユーザーが所有する必要があります。

/mntrw(読み取り専用)ではなく、ro(読み取り/書き込み)としてマウントされていますか? mount(引数なし)を実行することで確認できます。

MySQLには、このエラーに関する ドキュメントのページ があります。これは基本的に、データディレクトリまたはファイルシステムが書き込み保護されていることを意味します。

ディスククォータはアクティブですか?現在のクォータステータス(インストールされている場合)は、次の方法で確認できます。

Sudo repquote -a

ディスクがいっぱいですか?次のコマンドで現在のディスク使用量を確認します。

df -h
3
Lekensteyn

問題は、/mnt/var/lib/mysql、特に/mnt/varの親ディレクトリに対する不十分なアクセス許可が原因である可能性があるようです。 ls -ld /mnt/{,var/{,lib/{,mysql}}}の出力を投稿できますか?

編集:わかりました、これについてもう少し考えました。 my.cnfでソケットの場所を変更したと言います-サーバー正常に起動している(ps ax | grep mysqlで確認)が、mysqlclient使用しているのは、別の場所でソケットを探しています。古い場所? mysqlを実行すると表示される完全なエラーメッセージは何ですか?

3
nickgrim

SELinuxを確認してください。 SELinuxがオンの場合は、ラベルを付け直すか、オフにする必要があります。これにより、アクセス許可のエラーメッセージが表示されます。

1
landonz

データディレクトリの入力を間違えましたか?

あなたが書いた:

$ Sudo mysqld --datadir=/var/lib/mysql --user mysql

しかし、次のようにする必要があります。

$ Sudo mysqld --datadir=/mnt/var/lib/mysql --user mysql
0
lg.