用家里的老电脑按装了freebsd 8.2 +nginx + mysql+ php+ wordpress

发布于 2022-09-30 20:01:41 字数 3612 浏览 35 评论 0

看了这篇文章http://www.linuxeden.com/forum/thread-216469-1-1.html
也想用家里的老电脑配台服务器,就当废物利用
安装时必须以root或su登入

1.安装前更新好ports

2.安装mysql

安装过程如下  shell>pw groupadd mysql

shell>pw useradd -g mysql mysql

shell>cd /usr/ports/database/mysql55-server

shell>make install clean

shell>cd /usr/local/bin

shell>mysql_install_db –user=myql –dasedir=/usr/local –datadir=/var/db/mysql

shell>chown -R root

shell>chown -R mysql /var/db/mysql

shell>chgrp -R mysql

shell>mysqld_safe –user=mysql &

这样 mysql以安装完成并且以经启动,如要开机就自动运行的话编辑/etc/rc.conf j加入mysql_enbale=”YES”

3.安装 nginx

shell>cd /usr/ports/www/nginx

shell>make install clean

4.安装 spawn-fcgi

shell>cd /usr/ports/www/spawn-fcgi

shell>make install clean

5.安装 php5

shell>pkg_add -R php5

6.安装php扩展

shell>pkg_add -R php5-mysqli

shell>pkg_add -R php5-gd

shell>pkg_add -R php5-mysql

shell>pkg_add -R php5-dbase

shell>pkg_add -R php5-posix

shell>pkg_add -R php5-sockets

shell>pkg_add -R php5-openssl

shell>pkg_add -R php5-zip

shell>pkg_add -R php5-zlib

可以根据你的需要安装扩展

7.编辑你的nginx.conf

shell>vi /usr/local/etc/nginx/nginx.conf
找到如下内容

#user nobody;

改成

user www; #去掉前面#号
—————-

找到如下内容
location / {
root   /usr/local/www/nginx;
index index.html index.htm;
}

改成

location / {
root   /usr/local/www/nginx; #这里是站点根目录,根据需要修改
index index.php index.html index.htm; #添加 index.php
}

找到如下内容

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
#    root           html;
#    fastcgi_pass   127.0.0.1:9000;
#    fastcgi_index index.php;
#    fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
#    include        fastcgi_params;
#}

改成

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root           html;

fastcgi_pass   127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/www/nginx$fastcgi_script_name;

include        fastcgi_params;
}

然后重启 nginx

shell>/usr/local/etc/rc.d/nginx restart

我的网站地址:http://www.freegx.tk/

各位朋友帮我看看速度怎么样

硬件配置: cpu cy1.7
                主板 华硕 p4s533mx
                内存 64*2 sdram pc133
                硬盘 迈拓 80G

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(9

猫瑾少女 2022-10-07 20:01:41

速度比较慢

拥抱我好吗 2022-10-07 20:01:41

龟速

拥抱影子 2022-10-07 20:01:41

这个有什么意义呢

缺⑴份安定 2022-10-07 20:01:41

18querys in 2.731 seconds.

清泪尽 2022-10-07 20:01:41

回复 4# b86873564

    我觉得吧,可以练练手!

毅然前行 2022-10-07 20:01:41

樓主可以開著它...看看能保持多長時間不關機記錄.

已下线请稍等 2022-10-07 20:01:41

樓主可以開著它...看看能保持多長時間不關機記錄.
猴马大叶 发表于 2011-03-20 16:44

    ^_^,这取决于电源……

天涯离梦残月幽梦 2022-10-07 20:01:41

^_^,这取决于电源……
nxzdi 发表于 2011-03-20 18:29

    要是开上一个月不关机,他的家人肯定要奔溃了!  

微暖i 2022-10-07 20:01:41

要是开上一个月不关机,他的家人肯定要奔溃了!
7looki 发表于 2011-03-20 20:06

    我机器如果不停电, 基本上不关机!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文