全球主机交流论坛

标题: HHVM nginx mysql 环境安装教程 [打印本页]

作者: 杀杀杀    时间: 2014-7-4 09:18
标题: HHVM nginx mysql 环境安装教程
睡不着,撸了一发教程。。。
懒得做一键包了,凑合看吧。。。



适用于debian7

在kvmla.com上测试通过

1.添加源
  1. nano /etc/apt/sources.list
复制代码

最后两行添加
  1. deb http://nginx.org/packages/debian/ wheezy nginx
  2. deb-src http://nginx.org/packages/debian/ wheezy nginx
复制代码


我用的linode的源,所以添加好后是这样
  1. deb http://mirrors.linode.com/debian/ wheezy main
  2. deb-src http://mirrors.linode.com/debian/ wheezy main

  3. deb http://mirrors.linode.com/debian-security/ wheezy/updates main
  4. deb-src http://mirrors.linode.com/debian-security/ wheezy/updates main

  5. deb http://mirrors.linode.com/debian/ wheezy-updates main
  6. deb-src http://mirrors.linode.com/debian/ wheezy-updates main

  7. deb http://nginx.org/packages/debian/ wheezy nginx
  8. deb-src http://nginx.org/packages/debian/ wheezy nginx
复制代码



然后Ctrl+X,按y,再回车

2.添加证书
  1. wget http://nginx.org/keys/nginx_signing.key
  2. apt-key add nginx_signing.key
复制代码


3. 更新
  1. apt-get update
复制代码


4. 安装nginx (1.6.0)和mysql (5.5)
  1. apt-get install -y nginx mysql-server mysql-client
复制代码


5. 安全优化mysql
  1. mysql_secure_installation
复制代码


NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we'll need the current
password for the root user.  If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):
OK, successfully used password, moving on…
Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.
Set root password? [Y/n] <– 是否设置root用户密码,输入y并回车或直接回车
New password: <– 设置root用户的密码
Re-enter new password: <– 再输入一次你设置的密码
Password updated successfully!
Reloading privilege tables..
… Success!
By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] <– 是否删除匿名用户,生产环境建议删除,所以直接回车
… Success!
Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] <–是否禁止root远程登录,根据自己的需求选择Y/n并回车,建议禁止
… Success!
By default, MySQL comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] <– 是否删除test数据库,直接回车
- Dropping test database…
… Success!
- Removing privileges on test database…
… Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] <– 是否重新加载权限表,直接回车
… Success!
Cleaning up…
All done!  If you've completed all of the above steps, your MySQL
installation should now be secure.
Thanks for using MySQL!


6. 安装hhvm并加入开机启动
  1. wget -O - http://dl.hhvm.com/conf/hhvm.gpg.key | sudo apt-key add -
  2. echo deb http://dl.hhvm.com/debian wheezy main | sudo tee /etc/apt/sources.list.d/hhvm.list
  3. apt-get update
  4. apt-get install hhvm
  5. update-rc.d hhvm defaults
复制代码



7. 替换配置文件

  1. cd /etc/nginx
  2. rm nginx.conf
  3. wget https://dl.dropboxusercontent.com/u/65206771/nginx.conf
  4. wget https://dl.dropboxusercontent.com/u/65206771/gzip.conf
  5. cd /etc/nginx/conf.d
  6. rm *
  7. wget https://dl.dropboxusercontent.com/u/65206771/default.conf
复制代码


8. 自己改一下
  1. server_name localhost;
  2. root /usr/share/nginx/html;
复制代码


9. 重启nginx和hhvm
  1. /etc/init.d/hhvm restart
  2. /etc/init.d/nginx restart
复制代码


10.done

kvmla.com的vps 4分钟复制粘贴安装完所有步骤


作者: 风啸    时间: 2014-7-4 10:00
0.0

防水墙补丁
作者: suzizi    时间: 2014-7-4 10:00
提示: 作者被禁止或删除 内容自动屏蔽
作者: leelei    时间: 2014-7-4 10:00
不错  +10010
作者: 杀杀杀    时间: 2014-7-4 10:31
suzizi 发表于 2014-7-4 10:00
安装容易 就是该程序兼容难

discuz什么的不兼容

有啥难的?跑dz和wp都没问题的,我测试过了
作者: suzizi    时间: 2014-7-4 10:33
提示: 作者被禁止或删除 内容自动屏蔽
作者: caaol    时间: 2014-7-4 10:54
你这样配置,HHVM进程会自杀吗?用几天就出现502
作者: ineme    时间: 2014-7-4 11:50
顶一个。
作者: 分享吧    时间: 2014-7-4 12:03
顶一个, 我先去试试看。。。
作者: cst4you    时间: 2014-7-4 12:57
caaol 发表于 2014-7-4 10:54
你这样配置,HHVM进程会自杀吗?用几天就出现502

在我项目的生产环境下, 比php-fpm稳定得多
作者: caaol    时间: 2014-7-4 13:06
cst4you 发表于 2014-7-4 12:57
在我项目的生产环境下, 比php-fpm稳定得多

你的生存环境配置的多少的内存?
作者: cst4you    时间: 2014-7-4 13:16
caaol 发表于 2014-7-4 13:06
你的生存环境配置的多少的内存?

1G内存, 另外还开着php-fpm给不兼容的程序(discuz)
作者: wdlth    时间: 2014-7-4 17:18
我是全编译的,DZX3.1改了很多处preg_replace 才能用
作者: Zoplor    时间: 2014-7-4 17:22
官网有编译说明,只是php.ini没看懂
作者: suzizi    时间: 2014-7-4 22:45
提示: 作者被禁止或删除 内容自动屏蔽
作者: tyucom    时间: 2014-7-5 07:41
本帖最后由 tyucom 于 2014-7-5 20:33 编辑

debian7  64位下,

8. 自己改一下 是要改。   
     改default.conf 么?  默认就是你贴出来的内容。

9. 重启nginx和hhvm。   
   上面几步都操作完也没看到出错误,但到这里 nginx 重启失败。

不能玩。


-------------------------
原来是没有删除系统自带的 apache   80口被占用。删除后nginx启动成功



还有安装后, 工作目录是哪个,php文件要放在哪个目录下进行测试


原来在 nginx 默认目录  default.conf 文件里有


----------------------------
测试了,这货有时很占内存。   只512M内存都很难跑程序。
安装后才测试下程序 256M/256M Swap   全被占满。





欢迎光临 全球主机交流论坛 (https://52.ht/) Powered by Discuz! X3.4