准备
更新 Yum
1 | yum update |
更新 Yum 源
1 | rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm |
安装 Git
1 | yum install -y git |
安装 Htop
1 | yum install -y htop |
安装 Vim
1 | yum install -y vim |
Nginx
安装 Nginx 代码仓库
1 | yum install -y epel-release |
安装 Nginx
1 | yum install -y nginx |
启动 Nginx
1 | systemctl start nginx |
开机启动 Nginx
1 | systemctl enable nginx |
Nginx 配置文件
- /usr/share/nginx/html 默认的代码目录
- /etc/nginx/conf.d/default.conf 默认的配置文件
MariaDB
安装 MariaDB
1 | yum install -y mariadb-server mariadb |
启动 MariaDB
1 | systemctl start mariadb |
初始化 MariaDB
1 | mysql_secure_installation |
开机启动 MariaDB
1 | systemctl enable mariadb |
PHP
安装 PHP
1 | yum install -y php71w php71w-mysql php71w-xml php71w-soap php71w-xmlrpc php71w-mbstring php71w-json php71w-gd php71w-mcrypt php71w-fpm php71w-pdo php71w-pecl-redis |
启动 PHP-FPM
1 | systemctl start php-fpm |
开机启动
1 | systemctl enable php-fpm |
配置 PHP 关联 Nginx,编辑 Nginx 配置文件如下:
1 | server{ |
在 /usr/share/nginx/html
新增文件 index.php
,编辑代码如下:
1 |
|
输入域名,检查 PHP 是否与 Nginx 关联起来
Redis
安装 Redis
1 | wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-9.noarch.rpm |
启动 Redis
1 | systemctl start redis |
开机启动 Redis
1 | systemctl enable redis |
Beanstalkd
安装 Beanstalkd
1 | wget http://cbs.centos.org/kojifiles/packages/beanstalkd/1.9/3.el7/x86_64/beanstalkd-1.9-3.el7.x86_64.rpm |
启动 Beanstalkd
1 | systemctl start beanstalkd |
开机启动
1 | systemctl enable beanstalkd |
Composer
安装 Composer
1 | curl -sS https://getcomposer.org/installer | php |
全局设置国内镜像
1 | composer config -g repo.packagist composer https://packagist.phpcomposer.com |
Node.js
安装 Node.js
1 | yum install -y gcc-c++ make |
安装 webpack、gulp、bower
1 | npm install bower -g |
Gogs
设置子域名
1 | hostnamectl set-hostname git.cowcat.cc |
禁用 SELinux 相关选项
1 | sed -i /etc/selinux/config -r -e 's/^SELINUX=.*/SELINUX=disabled/g' |
创建 gogs 数据库
1 | CREATE DATABASE IF NOT EXISTS gogs CHARACTER SET utf8 COLLATE utf8_general_ci; |
安装 Go
1 | yum install -y go |
安装 Gogs
1 | // 下载二进制包 |
访问 URL 进行安装,安装 URL 是主机 IP 地址加上 3000 端口。
以守护进程的形式运行 Gogs:https://github.com/gogits/gogs/blob/master/scripts/init/centos/gogs
Walle
进入 MySQL,新增数据库如下:
1 | create database walle default character set utf8 COLLATE utf8_general_ci; |
安装依赖
1 | yum install ansible |
代码检出
1 | mkdir -p /data/www/ # 新建目录 |
连接数据库
1 | cd walle-web/ |
安装 vendor
1 | cd /data/www/walle-web |
初始化项目
1 | cd /data/www/walle-web |
配置 Nginx
1 | server { |
然后访问你配置好的域名或服务器地址,管理员默认账号密码是 admin/admin
,开发者默认账号密码是 demo/demo
。
有些错误 walle 捕捉不到,默认操作日志在 /tmp/walle/ 下,具体可在 config/local.php 里 log.dir 配置路径,tail 着日志,部署看日志。
如果发现 /tmp/walle 下没有日志,很有可能是因为 CentOs 7 yum 安装的 php-fpm 默认 /tmp 目录不可写:/usr/lib/systemd/system/php-fpm.service 中的 PrivateTmp=true 禁止了向tmp目录写日志,解决方法如下:
1 | vi /usr/lib/systemd/system/php-fpm.service |
Supervisor
安装 Supervisor
1 |
Alias 常用进程命令
- Nginx
- alias nginx.start=‘systemctl start nginx’
- alias nginx.restart=‘systemctl restart nginx’
- alias nginx.stop=‘systemctl stop nginx’
- alias nginx.status=‘systemctl status nginx’
- Mysql
- alias mysql.start=‘systemctl start mysql’
- alias mysql.restart=‘systemctl restart mysql’
- alias mysql.stop=‘systemctl stop mysql’
- alias mysql.status=‘systemctl status mysql’
- PHP-FPM
- alias php-fpm.start=‘systemctl start php-fpm’
- alias php-fpm.restart=‘systemctl restart php-fpm’
- alias php-fpm.stop=‘systemctl stop php-fpm’
- alias php-fpm.status=‘systemctl status php-fpm’
- Redis
- alias redis.start=‘systemctl start redis’
- alias redis.restart=‘systemctl restart redis’
- alias redis.stop=‘systemctl stop redis’
- alias redis.status=‘systemctl status redis’
- Beanstalkd
- alias beanstalkd.start=‘systemctl start beanstalkd’
- alias beanstalkd.restart=‘systemctl restart beanstalkd’
- alias beanstalkd.stop=‘systemctl stop beanstalkd’
- alias beanstalkd.status=‘systemctl status beanstalkd’
- Gogs
- alias gogs.start=’/etc/rc.d/init.d/gogs start’
- alias gogs.stop=’/etc/rc.d/init.d/gogs stop’
- alias gogs.restart=’/etc/rc.d/init.d/gogs restart’
- alias gogs.status=’/etc/rc.d/init.d/gogs status’