欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2/Agda, C++/Lisp/Haskell
MySQL
来自开放百科 - 灰狐
(版本间的差异)
| 第10行: | 第10行: | ||
==安装指南== | ==安装指南== | ||
| + | shell> groupadd mysql | ||
| + | shell> useradd -g mysql mysql | ||
| + | shell> gunzip < mysql-VERSION.tar.gz | tar -xvf - | ||
| + | shell> cd mysql-VERSION | ||
| + | shell> ./configure --prefix=/usr/local/mysql | ||
| + | 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 root . | ||
| + | shell> chown -R mysql var | ||
| + | shell> chgrp -R mysql . | ||
| + | shell> bin/mysqld_safe --user=mysql & | ||
2006年7月20日 (四) 10:43的版本
MySQL : The world's most popular open source database
MySQL产品
安装指南
shell> groupadd mysql
shell> useradd -g mysql mysql
shell> gunzip < mysql-VERSION.tar.gz | tar -xvf -
shell> cd mysql-VERSION
shell> ./configure --prefix=/usr/local/mysql
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 root .
shell> chown -R mysql var
shell> chgrp -R mysql .
shell> bin/mysqld_safe --user=mysql &
分享您的观点