groupadd mysql useradd -g mysql mysql tar -zxvf mysql-5.0.45.tar.gz cd mysql-5.0.45 ./configure --prefix=/usr/local/mysql make make install cp support-files/my-medium.cnf /etc/my.cnf cp support-files/mysql.server /etc/init.d/mysqld chmod 755 /etc/init.d/mysqld cd /usr/local/mysql chown -R mysql.mysql . ./bin/mysql_install_db --user=mysql chown -R root . chown -R mysql var service mysqld start 本...
by pop_star - MySQL文档中心 - 2008-08-03 16:12:48 阅读(1624) 回复(0)
安装mysql-standard-4.1.20-pc-linux-gnu-i686.tar.gz的包,总是报这样错 . Starting mysqld daemon with databases from /var/lib/mysql STOPPING server from pid file /var/run/mysql/mysqld.pid 我好郁闷!请大侠相助! [email]options-future@hotmail.com[/email]
安装mysql-standard-4.1.20-pc-linux-gnu-i686.tar.gz的包,总是报这样错 . Starting mysqld daemon with databases from /var/lib/mysql STOPPING server from pid file /var/run/mysql/mysqld.pid 我好郁闷!请大侠相助! [email]options-future@hotmail.com[/email]
linux 下 mysql源码包的安装 实验环境 VMware 6.5.2 +redhatEnterprise 5 AS 实验目的 初步涉及源码包的安装,以简单实现其功能为目的,不对原理进行深层讨论 内核版本: 今天尝试安装mysql的源码包 mysql-4.0.27.tar.gz 下载源码包 copy 到linux [root@localhost ~]# cd /tmp [root@localhost tmp]# ls gconfd-laowu scim-helper-manager-socket-root gconfd-root scim-panel-socket:0-laowu keyring-8zb2FJ ...
mysql-5.1.49.tar.gz [root@2000 mysql-source]# ./bin/mysqld_safe --user=mysql & [1] 19382 [root@2000 mysql-source]# 130413 06:31:00 mysqld_safe Logging to '/opt/mysql-source/var/2000.gz.err'. 130413 06:31:00 mysqld_safe Starting mysqld daemon with databases from /opt/mysql-source/var 130413 06:31:00 mysqld_safe mysqld from pid file /opt/mysql-source/var/2000.gz.pid ended [1]+ Done ...
本帖最后由 sungang613 于 2013-03-17 18:03 编辑 [root@localhost mysql-test]# /etc/init.d/mysqld start Starting mysql. [确定] [root@localhost mysql-test]# cd ../bin [root@localhost bin]# ./mysql Welcome to the mysql monitor. Commands end with ; or \g. Your mysql connection id is 1 Server version: 5.5.3-m3 Source distribution Type 'help;' or '\h' for he...
小弟刚接触AIX小机,因为原先有个项目是CentOS+Tomcat+mysql架构的,现在领导要整合硬件资源,所以测试移植到小机上,google了两天没结果,求助各位大大帮帮忙。 系统环境: #oslevel 6.1.0.0 因为找不到mysql for AIX, 所以尝试安装的mysql版本是source code for Generic Linux (Architecture Independent), 过程如下: 1. 首先下载mysql的源码安装包,download地址如下: https://www.mysql.com/downloads/mysql/#downloads ...
Linux下安装mysql、apache以及php实现论坛的安装 我安装大致分为五大步骤 0、前期准备工作 1、mysql的安装 2、Apache的安装 3、Php的安装 4、最后来实现论坛的安装 0、前期准备工作 在安装之前做好准备工作,就是将安装mysql、apache以及php的安装文件拷贝到linux中来。 首先设置linux的ip以便实现从网络连接中下载需要的文件。 在命令行中输入setup如下图所示 出现了图形对话框,按tab键移动光标选择“Network confi...
linux下安装mysql5.0.18(源码包) #作者:yzcdf 源码包可以在这个网址获得: http://download.mysql.cn/src/2006/0208/62.html 首先说一下编码,安装mysql的时候,默认使用latin1编码,如果要改变默认编码,用选项--with-charst 例如: shell> ./configure --with-charset=CHARSET CHARSET 可以使下面编码中的一种: `big5', `cp1251', `cp1257', `czech', `danish', `dec8',...
作者: ketto 出自: http://www.linuxdiyf.com 所有这些操作需要root权限 安装开始: shell> groupadd mysql shell> useradd -g mysql mysql shell> gunzip cd mysql-VERSION shell> ./configure --prefix=/usr/local/mysql --with-charset=gb2312 shell> make shell> make install shell> cp support-files/my-medium.cnf /etc/my.cnf shell> cd /usr/local/mysql shell> bin/mysql_install_db --user=mysql shell> chown -R...
尝试使用tar包源码进行mysql5.0的安装,老是无法./configure,以为是系统以前使用rpm的数据库,重新安装linux9.0后,问题依然,请各位指点。./configure --prefix=/usr/local/mysql 出现的错误如下: Starting the mysqld server. You can test that it is up and running with the command: ./bin/mysqladmin version [root@andychen-linux mysql-max-5.0.22-linux-i686-glibc23]# Starting mysqld daemon with databases from /...