欢迎来到天天文库
浏览记录
ID:16415925
大小:63.50 KB
页数:4页
时间:2018-08-09
《server相关套件架设》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、第03章WebServer相關套件架設WebServer相關套件架設3.0套件安裝前置工作#ee/etc/make.conf輸入以下內容:MASTER_SITE_BACKUP?=ftp://ftp1.tw.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR}/ftp://ftp3.tw.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR}/ftp://ftp7.tw.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBD
2、IR}/ftp://ftp11.tw.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR}/MASTER_SITE_OVERRIDE?=${MASTER_SITE_BACKUP}3.1安裝mysql【安裝】:#cd/usr/ports/databases/mysql55-server#makeinstall#makeclean啟動MySQL的Script:#/usr/local/etc/rc.d/mysql-server.shstart開機自動啟動MySQL,請編輯/etc/rc.conf :#ee/e
3、tc/rc.conf加入以下列敘述:mysql_enable="YES"資料庫的位置:/var/db/mysql設定MySQL的管理帳號密碼:#/usr/local/bin/mysqladmin-uroot-ppassword'new-password'Enterpassword:請將new-password替換為您所需要真正的密碼;否則,MySQLroot的密碼真的就會設定為new-password。出現Enterpassword:後,直接按Enter即可。-37-第03章WebServer相關套件架設3.2安裝apache【安裝】:#cd/us
4、r/ports/www/apache22#makeinstall※Apache安裝完後先不makecleanapache的設定檔位置:/usr/local/etc/apache22/httpd.confapache的啟動Script位置:#/usr/local/etc/rc.d/apache22.shstart開機自動啟動apache,請編輯/etc/rc.conf :#ee/etc/rc.conf加入下列敘述:apache22_enable="YES"Apache2.1.4啟動或重新啟動時,出現httpready錯誤訊息[warn](2)Nosu
5、chfileordirectory:Failedtoenablethe'httpready'AcceptFilter【解決方法】:#ee/boot/loader.conf加入下列敘述:accf_http_load="YES"apache主網頁位置:/usr/local/www/apache22/dataapache主網頁cgi-bin的位置:/usr/local/www/apache22/cgi-bin將網頁控制權交給某一位User:#chown-Rbillor:billor/usr/local/www/apache22-37-第03章WebSer
6、ver相關套件架設3.3安裝php5【安裝】:#cd/usr/ports/lang/php5#makeinstall此時會出現一個Menu,除了IPV6外,其餘全選。安裝完php,您就可以先停止(stop)apache,再啟動(start)apache了。【修改httpd.conf】:#ee/usr/local/etc/apache22/httpd.confDirectoryIndexindex.htmlindex.htmindex.shtmlindex.cgiindex.phpindex.php3AddTypeapplication/x-http
7、d-php.php.php3 AddTypeapplication/x-httpd-php-source.phps【編輯php.ini】:#cp/usr/local/etc/php.ini-dist/usr/local/etc/php.ini #eephp.ini修改register_globals=On # 改為On修改upload_max_filesize=20M將default_charset="utf-8"拿掉(mark)【測試php】:#cd/usr/local/www/apache22/data#eephpinfo.php輸
8、入以下內容後存檔:打開Browser測試:http://www.your.ip/phpinfo
此文档下载收益归作者所有