centos + mysql 安裝 時候:Starting MySQL. ERROR! Manager of pid-file quit without updating file.

來源:互聯網
上載者:User

下載:wget http://blog.s135.com/soft/linux/nginx_php/mysql/mysql-5.1.33.zip

安裝:

       unzip mysql-5.1.33.zip

       cd mysql-5.1.33.zip

      ./configure --prefix=/usr/local/mysql --enable-assembler --with-extra-charsets=complex --enable-thread-safe-client --with-big-tables --with-readline --with-ssl --with-embedded-server --enable-local-infile --with-plugins=innobase   
      make
      make install
      useradd mysql -d /data/mysql -s/sbin/nologin
      /usr/local/mysql/bin/mysql_install_db--user=mysql
     cd /usr/local/mysql
     chown -R root:mysql .
     mkdir -p /data/mysql/data
     chown -R mysql /data/mysql/data
     cp share/mysql/my-huge.cnf /etc/my.cnf
     cp share/mysql/mysql.server/etc/rc.d/init.d/mysqld
     chmod 755 /etc/rc.d/init.d/mysqld
     chkconfig --add mysql

     service mysqld start

 當重新啟動時候總 報以下錯誤:

   ERROR! MySQL manager or server PID file could not be found!

   Starting MySQL. ERROR! Manager of pid-file quit without updating file.

解決辦法:

   MySQL編譯安裝,初始化資料庫的時候出現:
   unknown option '--skip-federated' 錯誤。

   #vi /etc/my.cnf
   #skip-federated 將此行注釋掉即可。或者編譯的時候加上如下參數:--with-plugins=all

   如果還是不行的話那麼就是因為您在配置的時候沒有添加datadir,

  #vi /etc/my.cnf

    添加以下語句:

    [mysqld]
    port            = 3306
    socket          = /tmp/mysql.sock
    datadir = /usr/local/mysql/data
    datadir是新加的

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.