linux下免安装mysql5.5 配置

 

进入/usr/local

#cd /usr/local

下载

#wget http://dev.mysql.com/get/Downloads/MySQL-5.5/mysql-5.5.39-linux2.6-x86_64.tar.gz

#解压

tar zxvf mysql-5.5.39-linux2.6-x86_64.tar.gz

#软链

ln -s  mysql-5.5.39-linux2.6-x86_64 mysql

cd mysql

#授权

groupadd mysql

useradd -g mysql mysql

chown -R mysql .

chgrp -R mysql .

 

用mysql_install_db创建MySQL授权表初始化

#scripts/mysql_install_db --user=mysql

#chown -R mysql data

 

复制配置文件至etc 

#cp /usr/local/mysql/support-files/my-hug.cnf /etc/my.cnf

 

启动

#bin/mysqld_safe --user=mysql &

 

### 启动时如果报了  mysqld_safe mysqld from pid file /usr/local/mysql/data/XXXX.pid ended

解决方案是:在配置文件中加入 user=root

[mysqld]
user =root
port = 3306
socket = /tmp/mysql.sock
datadir=/usr/local/mysql/data

### Starting mysqld daemon with databases from /usr/local/mysql/var 表示正常启动

 

设置root密码。默认安装密码为空

#/usr/local/mysql/bin/mysqladmin -uroot password yourpassword

 

拷贝编译目录的一个脚本,设置开机自动启动
#cp support-files/mysql.server /etc/rc.d/init.d/mysqld
#chmod 700 /etc/init.d/mysqld
#chkconfig --add mysqld
#chkconfig --level 345 mysqld on

启动mysqld服务
#service mysqld start

查看3306端口是否打开。要注意在防火墙中开放该端口
#netstat -atln

 

linux下免安装mysql5.5 配置

上一篇:一个坑:java.sql.ResultSet.getInt==》the column value; if the value is SQL NULL, the value returned is 0


下一篇:EF中使用SQL函数