Created
June 13, 2014 00:56
-
-
Save ozw-sei/bc6124b883ebb3ecaa76 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo yum update | |
| sudo rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm | |
| # install package | |
| sudo yum remove mysql* | |
| sudo yum install mysql mysql-server php55 php-mysql httpd --enablerepo=remi --enablerepo=remi-php55 --enablerepo=epel | |
| # configure | |
| sudo service mysqld start | |
| sudo chkconfig mysqld on | |
| # プロダクションではoffにしないでね! | |
| sudo service iptables stop | |
| sudo service httpd start | |
| sudo chkconfig httpd on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment