2010年1月20日水曜日

[MySQL] インストールコマンド

# MacOSXではMacportを使用します
$sudo port install mysql5 +server
$sudo -u mysql mysql_install_db5
Password:
Installing MySQL system tables...
OK
Filling help tables...
OK

To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

/opt/local/lib/mysql5/bin/mysqladmin -u root password 'new-password'
/opt/local/lib/mysql5/bin/mysqladmin -u root -h host_name password 'new-password'

Alternatively you can run:
/opt/local/lib/mysql5/bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers.

See the manual for more instructions.

You can start the MySQL daemon with:
cd /opt/local ; /opt/local/lib/mysql5/bin/mysqld_safe &

You can test the MySQL daemon with mysql-test-run.pl
cd /opt/local/mysql-test ; perl mysql-test-run.pl

Please report any problems with the /opt/local/lib/mysql5/bin/mysqlbug script!

The latest information about MySQL is available at http://www.mysql.com/
Support MySQL by buying support/licenses from http://shop.mysql.com/

$sudo /opt/local/share/mysql5/mysql/mysql.server start
Starting MySQL
. SUCCESS!

$mysql5 -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.42 Source distribution

# Ubuntuではapt-getを使用します
$sudo apt-get install apache2 php5 libapache2-mod-php5

$sudo apt-get install mysql-client mysql-server php5-dev php5-cli php5-common php-pear php5-mysql php5-mcrypt $php5-dev php5-mhash php5-gd php5-xsl php5-xmlrpc

参考URL
http://d.hatena.ne.jp/hiratake55/20090119/1232363523


以上です。

0 件のコメント:

コメントを投稿