search
HomeBackend DevelopmentPHP Tutorial阿里云服务器cent0S安装web环境PHP+MySql+Nginx,给nginx添加网站

下载一键安装包:

http://market.aliyun.com/product/12-121590002-cmgj000262.html?spm=5176.7150518.1996836753.5.ZoE32o


在服务器安装rz命令

yum install lrzsz


rz    选择要上传文件sh.zip


安装解压命令:

yum install unzip    #本机已经安装了.所以这里不安装

解压

unzip -x sh.zip    #解压后脚本的权限不够

chmod -R 755 sh    #-R 递归将目录里面所有文件权限都改为755


在sh目录下执行

./install.sh


安装完毕后,检查

ps -ef|grep nginx

ps -ef|grep mysql


在sh目录下执行

cat account.log    #查看mysql账号密码

FTP:

account:www

password:zzzzzz

MySQL:

account:root

password:zzzzzz


netstat -nat    #查看3306端口有没有listen

rpm -q mysql     #查询发现是mysql-server没有安装

yum install mysql-server    #安装mysql-server服务

service mysqld restart


mysql                #查看mysql信息

mysql -p3306 -u用户名 -p密码    #登录mysql

mysql -p3306 -uroot -pzzzzzzz

use mysql    #进入mysql这个数据库

show tables

desc user

select Host,User,Password from user;    #查看数据库用户

exit    #退出

mysql -p3306 -u用户名 -p密码    #登录mysql

use mysql

update user set Host='%' where Host='localhost'    #%表示任意的,这样就可以在其他电脑连接ip

flush privileges    #刷新


在外部电脑:

浏览器输入:服务器ip        # 对phpwind进行设置


Nginx添加网站:


在服务器目录:    /alidata/server    有下面目录:

mysql  mysql-5.6.21  nginx  nginx-1.4.4  php  php-5.5.7


进入目录:    /alidata/server/nginx/conf

cat nginx.conf    #这个文件找到最后一行

include /alidata/server/nginx/conf/vhosts/*.conf;

#包含了vhosts下面所有配置文件,一个网站一个conf


进入目录:alidata/server/nginx/conf/vhosts/

查看文件:    cat phpwind.conf

文件开始:::::

server {

        listen       80;

        server_name  localhost;        #这里localhost,所以浏览器输入ip可以访问,如果输入www.xxx.com,浏览器就只能输入相关域名

        index index.html index.htm index.php;

        root /alidata/www/phpwind;

        location ~ .*\.(php|php5)?$

        {

                #fastcgi_pass  unix:/tmp/php-cgi.sock;

                fastcgi_pass  127.0.0.1:9000;

                fastcgi_index index.php;

                include fastcgi.conf;

        }

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$

        {

                expires 30d;

        }

        location ~ .*\.(js|css)?$

        {

                expires 1h;

        }

        #伪静态规则

        include /alidata/server/nginx/conf/rewrite/phpwind.conf;

        access_log  /alidata/log/nginx/access/phpwind.log;


文件结束:::::::::


添加站点:www.paidaxue.com


cp default.conf.bak paidaxue.conf

修改文件:vim  paidaxue.conf

 修改:    server_name  localhost;

修改为:

 server_name  www.paidaxue.com;

修改:    root /alidata/www/phpwind;

修改为:

root /alidata/www/paidaxue.com; 


修改:        如果原来没有这一段就忽略修改

log_farmat aliyun '$remote_addr - $remote_user [$time_local] "$request" '

'$status $body_bytes_sent "$http_referer" '

' "$http_user_agent" "$http_x_forwarded_for"';

修改为:

log_farmat paidaxue '$remote_addr - $remote_user [$time_local] "$request" '

'$status $body_bytes_sent "$http_referer" '

' "$http_user_agent" "$http_x_forwarded_for"';


修改:

access_log  /alidata/log/nginx/access/default.log;

修改为:

access_log  /alidata/log/nginx/access/paidaxue.com;


保存


进入目录:

/alidata/server/nginx/sbin/nginx -s reload          #重启nginx


浏览器输入:www.paidaxue.com    #会显示404not found    因为没有对应目录


新建目录: alidata/www/paidaxue.com

mkdir -p /alidata/www/paidaxue.com


查看新建的目录:        #paidaxue.com是在root的用户,root用户组中

drwxr-xr-x  2 root root 4096 Jan 13 17:00 paidaxue.com

drwxr-xr-x 26 www  www  4096 Jan 13 16:15 phpwind


浏览器输入:www.paidaxue.com    #会显示403Forbidden    因为没有权限访问

所以要对 paidaxue.com的权限进行更改,变成和下面一样的www

cd /alidata/www/


chown -R www:www /alidata/www/paidaxue.com

浏览器输入:www.paidaxue.com    #会显示403Forbidden    因为里面没有文件

cd /alidata/www/paidaxue.com

在上面文件夹新建index.html    

浏览器输入:www.paidaxue.com    #正常

 




Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Global View Data Management in LaravelGlobal View Data Management in LaravelMar 06, 2025 am 02:42 AM

Laravel's View::share method offers a streamlined approach to making data accessible across all your application's views. This is particularly useful for managing global settings, user preferences, or recurring UI components. In Laravel development,

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software