search
HomeDatabaseMysql Tutorialmysql二进制非root用户安装后启动mysqld的路径不对的问题_MySQL

bitsCN.com
mysql二进制非root用户安装后启动mysqld的路径不对的问题 一、非root用户安装二进制mysql分发版 创建用户   >useradd fc   >passwd fc enter password:...以fc登录,上传二进制mysql版本,我的是mysql 32位的mysql-5.1.57-linux-i686-glibc23.tar.gz 解压后,创建权限表 ]$ scripts/mysql_install_db --basedir=/home/fc/app/mysql  --datadir=/home/fc/app/mysql/data/3307 --user=fc   (注意:后面的参数一定要指定 ,另外最好是 scripts/mysql_install_db 这样一起运行,官方文档也是这样,免得出错,后面就有这个原因导致启动出错的) 权限表也初始化完了,然后就是指定配置文件my.cnf  我放在$HOME目录下:
 [python] # Example MySQL config file for medium systems.  #      # This is for a system with little memory (32M - 64M) where MySQL plays  # an important part, or systems up to 128M where MySQL is used together with  # other programs (such as a web server)  #  # MySQL programs look for option files in a set of  # locations which depend on the deployment platform.  # You can copy this option file to one of those  # locations. For information about these locations, see:  # http://dev.mysql.com/doc/mysql/en/option-files.html  #  # In this file, you can use all long options that a program supports.  # If you want to know which options a program supports, run the program  # with the "--help" option.    # The following options will be passed to all MySQL clients  [client]  #password   = your_password  port        = 3307  socket      = /home/fc/app/mysql/tmp/3307/mysql.sock    # Here follows entries for some specific programs       # The MySQL server  [mysqld]  character-set-server = utf8  port        = 3307  socket      = /home/fc/app/mysql/tmp/3307/mysql.sock  skip-external-locking  basedir = /home/fc/app/mysql  datadir = /home/fc/app/mysql/data/3307/  log-error = /home/fc/log/3307/mysqld.err  pid-file = /home/fc/app/mysql/tmp/3307/mysql.pid  key_buffer_size = 16M  max_allowed_packet = 1M  table_open_cache = 64  sort_buffer_size = 512K  net_buffer_length = 8K  read_buffer_size = 256K  read_rnd_buffer_size = 512K  myisam_sort_buffer_size = 8M  max_connections=200    slow_query_log = 1                                     #{0|1  off|on}  slow_query_log_file = /home/fc/log/3307/mysql-slow.log  long_query_time=1    #不经常更新的表查询,缓存查询  query_cache_type = 1  query_cache_size = 10M    general_log = 0  general_log_file = /home/fc/log/3307/mysql.log       query_cache_size = 8M    #skip-networking  skip-name-resolve  skip-innodb-checksums     # Replication Master Server (default)  # binary logging is required for replication  log-bin=/home/fc/log/3307/mysql-bin    # binary logging format - mixed recommended  binlog_format=mixed  binlog_cache_size = 1M  max_binlog_cache_size = 4096M  expire-logs-days = 8  sync_binlog=20    # Uncomment the following if you are using InnoDB tables  innodb_data_home_dir = /home/fc/data/3307/  innodb_data_file_path = ibdata1:10M:autoextend  innodb_log_group_home_dir = /home/fc/data/3307/  innodb_buffer_pool_size = 800M  sort_buffer_size = 5M  tmp_table_size = 64M  innodb_additional_mem_pool_size = 32M  innodb_autoextend_increment = 64  # 默认单位为 MB       innodb_thread_concurrency = 8  innodb_log_file_size = 200M  innodb_log_buffer_size = 8M  default-storage-engine=innodb  innodb_flush_log_at_trx_commit = 1    # Set .._log_file_size to 25 % of buffer pool size  #innodb_log_file_size = 5M  #innodb_log_buffer_size = 8M  #innodb_flush_log_at_trx_commit = 1  #innodb_lock_wait_timeout = 50    innodb_flush_log_at_trx_commit = 2    [mysqldump]  quick  max_allowed_packet = 16M    [mysqld_safe]  log-error=/home/fc/app/mysql/log/3307/mysqld.log  pid-file=/home/fc/app/mysql/tmp/3307/mysql.pid    [mysql]  no-auto-rehash  port            = 3307  socket          = /home/fc/app/mysql/tmp/3307/mysql.sock  # Remove the next comment character if you are not familiar with SQL  #safe-updates    [myisamchk]  key_buffer_size = 20M  sort_buffer_size = 20M  read_buffer = 2M  write_buffer = 2M       [mysqlhotcopy]  interactive-timeout   好了,一切都准备好了,可以启动了二、启动mysqld进程进入basedir目录fc/app/mysqlmysql]$ cd binbin]$ mysqld_safe --defaults-file=~/my.cnf &启动成功了,查看进程 ps -ef | grep mysqld 发现问题了[plain] fc    7780  7582 24 16:42 pts/10   00:00:00 /usr/local/mysql/bin/mysqld --defaults-file=~/my.cnf --basedir=/home/fc/app/mysql --datadir=/home/fc/app/mysql/data/3307/ --log-error=/home/fc/app/mysql/log/3307/mysqld.log --pid-file=/home/fc/app/mysql/tmp/3307/mysql.pid --socket=/home/fc/app/mysql/tmp/3307/mysql.sock --port=3307   发现没有,虽然进入的fc/app/mysql/bin目录下启动的mysqld程序,但是查找进程时候却是运行的/usr/lcoal/mysql下的mysqld,这是为什么呢?查找了很久的参数,都发现没有配置错误,始终不得其解,如是换了种启动方式:进入base目录fc/app/mysql mysql]$ bin/msyqld_safe --defaults-file=~/my.cnf &这样启动后再查找mysqld进程,一切就正常了,这是为什么呢? 我自己想的原因可能是:mysqld_safe本身就是mysqld的守护进程,它本身也是一个shell脚本,在脚本中,默认的basedir就是:usr/local/mysql,我们在启动mysqld的时候如果进入了bin目录,则在这个守护进程中是找不到该目录的,如是就去自动匹配/usr/local/mysql/这个目录,刚好我也在这个目录之前装过mysql,于是系统就自动匹配了这个mysqld程序,运行起来了。 我们查看下mysqld_safe的一段shell代码:[python] MY_PWD=`pwd`  # Check for the directories we would expect from a binary release install  if test -n "$MY_BASEDIR_VERSION" -a -d "$MY_BASEDIR_VERSION"  then    # BASEDIR is already overridden on command line.  Do not re-set.       # Use BASEDIR to discover le.    if test -x "$MY_BASEDIR_VERSION/libexec/mysqld"    then      ledir="$MY_BASEDIR_VERSION/libexec"    elif test -x "$MY_BASEDIR_VERSION/sbin/mysqld"    then      ledir="$MY_BASEDIR_VERSION/sbin"    else      ledir="$MY_BASEDIR_VERSION/bin"    fi      elif test -f "$relpkgdata"/english/errmsg.sys -a -x "$MY_PWD/bin/mysqld"  then    MY_BASEDIR_VERSION="$MY_PWD"          # Where bin, share and data are    ledir="$MY_PWD/bin"                   # Where mysqld is  # Check for the directories we would expect from a source install  elif test -f "$relpkgdata"/english/errmsg.sys -a -x "$MY_PWD/libexec/mysqld"  then    MY_BASEDIR_VERSION="$MY_PWD"          # Where libexec, share and var are    ledir="$MY_PWD/libexec"               # Where mysqld is  elif test -f "$relpkgdata"/english/errmsg.sys -a -x "$MY_PWD/sbin/mysqld"  then    MY_BASEDIR_VERSION="$MY_PWD"          # Where sbin, share and var are    ledir="$MY_PWD/sbin"                  # Where mysqld is  # Since we didn't find anything, used the compiled-in defaults  else    MY_BASEDIR_VERSION='/usr/local/mysql'    ledir='/usr/local/mysql/bin'  fi  如果我们进入了bin目录:ledir 跑到 elseMY_BASEDIR_VERSION='/usr/local/mysql'ledir='/usr/local/mysql/bin'正常的情况下应该是:"$MY_PWD/bin/mysqld" 问题是没有cd到 mysql basedir 的情况下,mysql会从/usr/loca/mysql/bin/mysqld启动   PS:附连接的问题 由于我们启动是按照socket启动的,所以我们在连接时候如果使用的是localhost或者缺省的状态去连接mysql,则我们连接必须使用指定的socket全路径去连接。不然系统会默认的去寻找/tmp/mysql.socket这个,找不到则报错;当然我们还可以使用-h 127.0.0.1 的方式来连接,这样就不需要指定 -S socket路径了; mysql连接的方式有2种,一种是通过socket,一种是通过tcp/ip连接[plain] 

  
  
  
    作者 林志						bitsCN.com
    
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
图文详解mysql架构原理图文详解mysql架构原理May 17, 2022 pm 05:54 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

mysql怎么去掉第一个字符mysql怎么去掉第一个字符May 19, 2022 am 10:21 AM

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment