Computer/Solaris / 솔라리스
MySQL 설정 몇 가지
jswlinux
2011. 10. 25. 18:29
오픈인디아나에서 MySQL은 AMP만 설치하면 같이 설치되니 별도로 해줄 것은 없다.
설치법: http://jswlinux.tistory.com/entry/오픈인디아나-151a에서-APM-설치하기
MySQL 초기 세팅
mysql -u root
use mysql
update user set password=password('password') where user='root';
flush privileges;
quit
Joomla에서 64비트 mysql 버그 (Error loading Modules: MySQL server has gone away) 해결법
svccfg -s mysql:version_51 setprop mysql/enable_64bit=true
svcadm refresh mysql:version_51
svcadm restart mysql:version_51