VPS初始化及Nginx+MySQL+PHP/PHPMyAdmin安装优化

VPS购买来了,不能就这么放在,对吧。下面给大家说一下VPS买来之后的初始化操作,及Nginx+MySQL+PHP+PHPMyAdmin+eAcelerator这些软件的编译安装。

一、登录VPS

登录的方式很多,如果是Linux直接ssh就可以。

下面以Windows下putty为例:

putty

填写上IP或域名,再写个名字,save ,然后Open

1

二、安装LNMP

安装Nginx+MySQL+PHP+PHPMyAdmin+eAcelerator使用LicessLNMP

有些VPS默认是安装Apahche的,如果安装了,请先执行:yum -y remove httpd

下面是按照的过程使用的命令,及相关注释(注释用 //,红色加粗为所使用的命令)

Using username “root”.
root@67.215.242.196’s password:
[root@vpser ~]#cd /usr/local/src
[root@vpser src]#ls
[root@vpser src]#wget http://licess.googlecode.com/files/LNMP.zip      //下载LNMP文件
–11:29:51–  http://licess.googlecode.com/files/LNMP.zip
Resolving licess.googlecode.com… 209.85.173.82
Connecting to licess.googlecode.com|209.85.173.82|:80… connected.
HTTP request sent, awaiting response… 200 OK
Length: 11261 (11K) [application/x-zip]
Saving to: `LNMP.zip’

100%[=======================================>] 11,261      –.-K/s   in 0.1s

11:29:52 (111 KB/s) - `LNMP.zip’ saved [11261/11261]

[root@vpser src]#unzip LNMP.zip        //解压LNMP压缩包
Archive:  LNMP.zip
   creating: LNMP/
   creating: LNMP/conf/
  inflating: LNMP/conf/fcgi.conf
  inflating: LNMP/conf/nginx-load.conf
  inflating: LNMP/conf/nginx-proxy.conf
  inflating: LNMP/conf/nginx.conf
  inflating: LNMP/conf/php-fpm.conf
  inflating: LNMP/down.sh
  inflating: LNMP/install.sh
  inflating: LNMP/opt.sh
  inflating: LNMP/readme.txt
  inflating: LNMP/startup.sh
[root@vpser src]#cd LNMP
[root@vpser LNMP]#ls
conf  down.sh  install.sh  opt.sh  readme.txt  startup.sh
[root@vpser LNMP]#chmod +x install.sh down.sh        //为install.sh和down.sh添加执行权限
[root@vpser LNMP]#./down.sh                                                   //下载安装所需的源代码文件
=========================================================================
LNMP v0.0.1 for VPS  Written by Licess
=========================================================================

For more information please visit http://blog.licess.com/lnmp/

start download LNMP package
………………………….省略下载过程

download package finished!

=========================================================================
[root@vpser LNMP]#clear
[root@vpser LNMP]#ls
conf                          mysql-5.0.22.tar.gz
down.sh                       nginx-0.7.19.tar.gz
eaccelerator-0.9.5.3.tar.bz2  opt.sh
install.sh                    pcre-7.7.tar.gz
libiconv-1.12.tar.gz          php-5.2.6-fpm-0.5.9.diff.gz
libmcrypt-2.5.8.tar.gz        php-5.2.6.tar.gz
mcrypt-2.6.7.tar.gz           phpMyAdmin-3.1.1-all-languages.tar.gz
memcache-2.2.3.tgz            readme.txt
mhash-0.9.9.tar.gz            startup.sh
[root@vpser LNMP#]./install.sh        //开始安装
=========================================================================
LNMP v0.0.1 for VPS  Written by Licess
=========================================================================
A tool to auto-compile & install Nginx+MySQL+PHP on Linux
For more information please visit http://blog.licess.com/lnmp/
The path of some dirs:
mysql dir:   /usr/local/mysql
php dir:     /usr/local/php
nginx dir:   /usr/local/nginx
web dir      /web/www

=========================================================================

3

在此步中输入你要绑定的域名,例如:diavps.vpser.net  ,回车确认。
Please input domain:
(Default domain: www.lnmp.org):diavps.vpser.net
===========================
domain=diavps.vpser.net
===========================

Press any key to start…                                     \\再次按任意键确认,开始安装
Loading “fastestmirror” plugin
………………………………..

开始安装……..

4

PS:屏幕疯狂的滚动…….欣赏一下

5

经过漫长的等待(时间不确定,根据实际情况,我的是半个多小时),终于安装完了。

6

下面看一下PHPInfo

7

PHPMyAdmin:

8

程序安装路径:
MySQL :   /usr/local/mysql
PHP :     /usr/local/php
Nginx :   /usr/local/nginx
PHPMyAdmin /web/www/phpmyadmin
Web目录    /web/www

MySQL  用户:root  密码:root

通过下面这几个链接查看phpinfo和管理MySQL
phpinfo    http://ip/phpinfo.php
phpMyAdmin http://ip/phpmyadmin

让Nginx开机后手动执行 /root/run.sh 后Nginx会运行 ,开机自动运行可以运行 LNMP目录下面的 startup.sh 文件即可。

opt.sh 为优化文件,如果内存小于128MB可以通过执行 ./opt.sh 添加swap分区,并修改时区为东8区。注:并不一定在所有的VPS上都可以添加swap分区,swvps不可以,其他没有测试。

安装完后,请立即修改您的MySQL的root密码,使用命令cd /usr/local/mysql/bin

再执行:./mysqladmin -u root -p password mypasswd          //mypasswd为自己的密码

输入这个命令后,需要输入root的原密码,然后root的密码将改为mypasswd。
把命令里的root改为你的用户名,你就可以改你自己的密码了。

进入phpmyadmin目录/web/www/phpmyadmin  将 config.default.php 修改为config.inc.php

修改这个文件的 $cfg['Servers'][$i]['auth_type'] = ‘http’;

                                $cfg['blowfish_secret'] = ‘VPSER’;    //VPSER为任意字符

保存,然后就可以登录了。

因为没有安装ftp服务器软件,可以使用winscp这个软件管理文件。

更详细的关于LNMP的可以看:http://blog.licess.com/lnmp/

可能在安装过程中遇到什么问题可以在下面留言。

7 Responses to VPS初始化及Nginx+MySQL+PHP/PHPMyAdmin安装优化

  1. seo says:

    如果再加上ftp就更完美了 呵呵

    licess Reply:

    @seo, FTP安装包将于3月27日发布,敬请期待....

  2. ten says:

    请问,安装后想全部删除,有没有好办法一下子把上面安装的都删除了呢?

    licess Reply:

    @ten, 可以看一下 http://blog.licess.cn/uninstall-linux-soft/

  3. ten says:

    按上面安装好了。就是MYSQL不能启动,不知道是什么回事,有人遇到过吗?

  4. co says:

    請問需要用到CGI還要加上什麼?

  5. wenus says:

    starting php_fpm /usr/local/php/bin/php-cgi:
    Symbol 'client_errors' has different size in shared object, consider re-linking
    done

    godaddy 的vds 主机

发表评论

(required)

This site uses Akismet to reduce spam. Learn how your comment data is processed.