zoukankan      html  css  js  c++  java
  • Debian MySQL 卸载和安装 PHP安装

    如果是apt-get安装的

    sudo apt-get --purge remove mysql-server
    sudo apt-get --purge remove mysql-client
    sudo apt-get --purge remove mysql-common

    apt-get -f autoremove
    apt-get autoclean
    rm /etc/mysql/ -R
    rm /var/lib/mysql/ -R

    ---------------这是我老大的MySQL安装笔记-------------------------

    tar 解压缩mysql后, copy到/opt/mysql目录下

    groupadd mysql
    useradd -g mysql mysql
    chown -R mysql .
    chgrp -R mysql .
    scripts/mysql_install_db --user=mysql   (此步骤之前请确认/etc下没有 my.cnf和 mysql/my.cnf)
    chown -R root .
    chown -R mysql data
    cp support-files/my-small.cnf /etc/my.cnf
    cp support-files/mysql.server /etc/init.d/mysqld

    在my.cnf 加上basedir=/opt/mysql/

    chmod +x /etc/init.d/mysqld
    /etc/init.d/mysqld start 
     
     
     
    源码解压缩
     
    这些是依赖(apt-get update)

    apt-get install libjpeg-dev
    apt-get install libgd2-xpm-dev
    apt-get install libfreetype6-dev
    apt-get install libcurl4-openssl-dev
    apt-get install libxml2-dev
    apt-get install libpng12-dev
    apt-get install libmcrypt-dev
    apt-get install libmhash-dev
    apt-get install libpcre3-dev

    php -i | grep configure 可以看到安装选项

    然后就

    ./configure --prefix=/opt/php --with-config-file-path=/opt/php/etc --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-zlib --disable-rpath --enable-inline-optimization --with-curl --with-iconv --with-gd --with-freetype-dir --with-jpeg-dir --with-png-dir --enable-mbstring --enable-sockets --with-mcrypt --enable-fpm --with-openssl  --enable-bcmath 

    make和make install就不说了。

  • 相关阅读:
    非阻塞式线程安全列表-ConcurrentLinkedDeque
    计数器
    Linux 查看服务器内存使用情况
    Oracle to_date, to_timestamp
    Hibernate session.flush() 使用
    阿里规约认证(题库附答案)
    多态性
    Java数据类型
    String类特点分析
    数组的定义
  • 原文地址:https://www.cnblogs.com/healerkx/p/4206788.html
Copyright © 2011-2022 走看看