mysql(2)
-
[Ubuntu] Ubuntu + lighttpd + php5 + mysql (Using apt-get)
# sudo su # apt-get install mysql-server mysql-client # apt-get install lighttpd # apt-get install php5-fpm php5-cgi php5-mysql php5 # vim /etc/php5/fpm/php.ini ;주석 해제cgi.fix_pathinfo=1 # vim /etc/lighttpd/conf-available/15-fastcgi-php.conf fastcgi.server += ( ".php" => (( "socket" => "/var/run/php5-fpm.sock", "broken-scriptfilename" => "enable" )) ) # lighttpd-enable-mod fastcgi # lighttpd-enab..
2014.06.27 -
[MacOS] Install nginx / PHP / MySQL on Mac OS X Mountain Lion with Homebrew
Got Xcode?You're gonna need it. Open the App Store and download Xcode. Yeah, it's 1.6+ GB, and yeah, it's going to take a couple hours. Once you've installed it, make sure to install the command-line tools. Open Xcode, then go to Preferences -->Downloads and install the "Command Line Tools." It'll download and install another 100+ MB of stuff, but it's necessary. Once that's done, you're ready t..
2013.09.02