3
原文地址:https://buluo.cc/article/9

安装nodejs、npm/cnpm

yum install -y nodejs
npm install -g cnpm --registry=https://registry.npm.taobao.org
cnpm install -g n
n stable

安装mysql

  • 卸载

    yum remove mysql mysql-server mysql-libs compat-mysql51
    rm -rf /var/lib/mysql
    rm /etc/my.cnf
  • 安装

    wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
    rpm -ivh mysql-community-release-el7-5.noarch.rpm
    yum install mysql-server
    yum install mysql-devel
  • 启动

    service mysqld start #启动mysql服务
  • 登录

    mysql -u root -p #登录mysql 默认密码为空
  • 修改root密码

    cd usr/bin 
    mysqladmin -u root -p password 123456
  • 允许远程访问,与本地密码区分,是两个密码

    grant all privileges  on *.* to root@'%' identified by "password"; 
    flush privileges;

    安装git

    yum install -y git
  • 创建用户组、用户

    groupadd git
    useradd git -g git
    passwd git
  • 创建证书登录
    收集所有需要登录的用户的公钥,公钥位于id_rsa.pub文件中,把我们的公钥导入到/home/git/.ssh/authorized_keys文件里,一行一个。

    cd /home/git/
    mkdir .ssh
    chmod 755 .ssh
    touch .ssh/authorized_keys
    chmod 644 .ssh/authorized_keys
  • 初始化仓库

    mkdir unnue
    cd unnue
    git init #添加hooks post-receive,文件内容往下找
    git config receive.denyCurrentBranch ignore
    cd ..
    chown -R git:git unnue
  • post-receive 文件内容,注意文件类型,所有者git,文件权限755

    \#!/bin/sh
    unset  GIT_DIR #这条命令很重要
    cd ..
    git reset --hard
  • 本地项目中添加 server

    git remote add server git@ip地址:/home/unnue-nuxt

    安装nginx

    yum install -y nginx
  • 重启

    nginx -s reload

    安装pm2

    npm install pm2
  • 启动应用(npm方式)

    pm2 start npm --name 别名 -- run start:prod

jigsaw
118 声望3 粉丝

个人网站 buluo.cc