mysql的安装

2009-05-13 05:54:13来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

以下是以5.4-RELEASE-p6+mysql-4.0.25为例
cd /usr/ports/databases/mysql40-server
make install clean;
/usr/local/bin/mysql_install_db
chown -R mysql /var/db/mysql
##这一步一定不能少,否则mysql将启动不起来
启动mysql
/usr/local/bin/mysqld_safe &
或者/usr/local/etc/rc.d/mysql-server.sh start
/usr/local/bin/mysqladmin -u root password '123456'
#一定要做这个,否则不安全的
rehash
mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3 to server version: 4.0.24
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>; exit
Bye
在/etc/rc.conf里面加入mysql_enable="YES"


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/13255/showart_215016.html

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:PF防火墙实例

下一篇:安装 FreeBSD(2)分配磁盘空间