ตอนนี้กำลังลง centos 5.3 mysql 5.1.48 แล้วจะลงฐานข้อมูล hosxp ในserver ตัวนี้ยังไงค่ะ กำลังงง
ลง mysql แล้ว config ให้เรียบร้อย
กำหนดผู้ใช้ของ mysql โดยเรียกใช้ mysql ก่อนแล้วจึงใช้คำสั่ง
mysql> grant all on *.* to sa@'%' identified by 'sa' with grant option
mysql> grant super on *.* to sa@'%' identified by 'sa' with grant option;
mysql> flush privileges;
ศึกษาจากตัวอย่างครับ
[root@hosxp2 MySQL5.1.30]# rpm -ivh My*
Preparing... ########################################### [100%]
1:MySQL-shared ########################################### [ 33%]
2:MySQL-client ########################################### [ 67%]
3:MySQL-server ########################################### [100%]
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h hosxp2.somdej17.moph.go.th password 'new-password'
Alternatively you can run:
/usr/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.
Please report any problems with the /usr/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/Starting MySQL.[ OK ]
[root@hosxp2 MySQL5.1.30]# /usr/bin/mysql_secure_installation
กำหนด password ให้ root ใน MySQL (หากไม่ได้ให้ restart เครื่อง 1 ครั้ง แล้วทำใหม่)
/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h hosxp2.somdej17.moph.go.th password 'new-password'
[root@hosxp2 MySQL5.1.30]# mysql -e "create database hos_somdej17"
[root@hosxp2 MySQL5.1.30]# mysql -e "grant all on *.* to sa@'%' identified by 'sa' with grant option"
หากไม่ได้ ให้ทำใน MySQL
[root@hosxp1 ~]# mysql -u root -p
mysql> create database hos;
mysql> grant all on *.* to sa@'%' identified by 'sa' with grant option;
//mysql> grant super on *.* to sa@'%' identified by 'sa' with grant option;
mysql> flush privileges;
mysql> \q
ใน Windows ใช้
Execute: "C:\Program Files\HOSxP\MySQL\bin\mysql.exe" -u root -e "grant all on *.* to sa@'%' identified by 'sa' with grant option"
หาก upgrade MySQL ให้ใช้คำสั่งต่อไปนี้
[root@hosxp1 ~]# mysql_upgrade -u root -p
[root@hosxp1 ~]# mysql_fix_privilege_tables --password=abcdefgh555
[root@hosxp1 ~]# mysql -u root -p
mysql> SET GLOBAL log_bin_trust_function_creators = 1;
mysql> \q
เสร็จแล้วทำการ initial import ข้อมูลเข้าเครื่อง Server ที่ติดตั้งใหม่ ตามรูปข้างบนครับ