mysql安装

Posted gan-wenjun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql安装相关的知识,希望对你有一定的参考价值。

#!/bin/sh

####安装ncurses-5.9.tar.gz
cd /usr/local/src/
tar -zxvf ncurses-5.9.tar.gz
cd  ncurses-5.9
./configure --with-shared --without-debug --without-ada --enable-overwrite
make #or make test  #测试编译
make install #开始编译安装

####安装cmake-2.8.8.tar.gz
cd /usr/local/src/
tar -zxvf cmake-2.8.8.tar.gz
cd  cmake-2.8.8
./configure
make #or make test  #测试编译
make install #开始编译安装

groupadd mysql
useradd -g mysql mysql mysql -s /bin/false 
mkdir -p /usr/local/data/mysql
cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_DATADIR=/usr/local/data/mysql -DSYSCONFDIR=/etc
make
make install
cd /usr/local/mysql
scripts/mysql_install_db --user=mysql

####系统开启自动启动
#vim /root/.bash_profile
#PATH=$PATH:$HOME/bin:/usr/local/mysql/bin:/usr/local/mysql/lib
#source  /root/.bash_profile #配置马上生效
cd /usr/local/mysql
./bin/mysqld_safe  --defaults-file=/usr/local/mysql/my.cnf --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data  --user=mysql &

#### GRANT ALL PRIVILEGES ON *.* TO [email protected]"%" IDENTIFIED BY "root";
#### update user set password=password(‘root‘) where user=‘root‘;

  

以上是关于mysql安装的主要内容,如果未能解决你的问题,请参考以下文章

从mysql的片段中加载ListView

连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段

使用 json rereiver php mysql 在片段中填充列表视图

在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途

PHP代码-psysh调试代码片段工具

关于mysql驱动版本报错解决,Cause: com.mysql.jdbc.exceptions.jdbc4Unknown system variable ‘query_cache_size(代码片段