Ubuntu下搭建个人博客(LNMP)

准备工作

也可以关注我的个人博客

a. 购买一个属于自己的域名

  国内的话直接上阿里云购买即可,国外的话著名的有GoDaddy和name

b. 准备一台自己的服务器(或者git也可以搭建)

  我是在阿里云上租的半年的服务器只要9.9,系统是ubuntu64位的, 国外的话可以上AWS购买,国内的网站是需要备案的,确保前期工作全部完成。

开始搭建

连接服务器

  当然可以直接在阿里云的后台直接连接服务器,这个很方便,登录后台之后选择实例(就是你购买的服务器) 第一次连接回弹出一个密码,今后连接需要用到的需要自己记下来


连接密码

连接成功之后大概是这个样子


连接成功

我这里是使用的密钥对(ssh连接)
a. 首先为你的实列绑定密钥对
进入到云服务器后台选择密钥对,绑定需要的实列

绑定密钥对

选中需要绑定该密钥对的 ECS 实例名称,再单击 >,移入 已选择 栏中。

没有密钥对点击创建密钥对创建一个即可,然后下载下来.pem的文件

  1. 找到.pem文件的存储路径,修改文件属性
    chmod -R 400 pempath
  2. 运行命令 ssh -i [.pem的路径] root@公网ip地址
    ,每次这么运行一个命令可能不容易记住,接下来配置下ssh方便我们连接

配置ssh

本地进入你的.ssh文件夹创建config文件:

Host 公网ip地址
    HostName 公网ip地址
    Port 22
    User root
    PreferredAuthentications publickey
    IdentityFile .pem文件路径

以后连接就只需要 ssh root@公网ip即可,连接服务器就到这里完成

安装nginx

执行命令
sudo apt-get install nginx
启动nginx
nginx -t检查语法, nginx start启动nginx

在浏览器中输入你的公网ip,如果看到 welcome to nginx 几个大字代表你已经配置成功

配置nginx conf文件
进入文件夹cd /etc/nginx/sites-enabled配置nginx服务器的conf文件,内容如下:

server {

        listen       80;
        server_name  xxx.com(自己购买的域名);
        root   项目所在路径;

        location / {
                # if (!-e $request_filename) {
                 #         rewrite ^/index.php(.*)$ /index.php?s=$1 last;
                  #       rewrite ^(.*)$ /index.php?s=$1 last;
                   #       break;
                # }
                index  index.html index.htm index.php;
                try_files $uri $uri/ /index.php?$args;
        }

        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
                root   html;
        }

         location ~ \.php$ {
                    fastcgi_pass   127.0.0.1:9000;
                    fastcgi_index  index.php;
                    include        fastcgi.conf;
                }
}

安装php56

php的版本按照自己喜欢的去安装即可

命令行执行命令
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:ondrej/php

命令报错 commond not found

执行 sudo apt-get install software-properties-common
sudo apt-get update
sudo apt-get install php5.6-fpm

至此安装完成。

修改listen端口

进入/etc/php/5.6/fpm/pool.d/www.conf 修改为listen=127.0.0.1:9000,9000端口号可以自己定义,只不过9000是php的默认端口,这里选择9000

启动php
php5.6-fpm start,执行完成之后执行netstat -an | grep 端口号查看php端口是否在运行

检查安装是否成功

/var/www/html下建一个info.php文件:

浏览器输入http://公网ip/info.php查看是否出现php的信息界面。

安装php56扩展-mysql

执行命令
sudo apt-get install mysql-server设置即可。

总结

  以上是我自己搭建个人博客服务器的过程,简单记录下。

你可能感兴趣的:(Ubuntu下搭建个人博客(LNMP))