博文图片换成动态页面变成伪静态:
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
一键安装MySQL:
#1.创建用户
useradd mysql -s /sbin/nologin -M
id mysql
#2.创建目录上传软件
mkdir -p /server/tools/
cd /server/tools/
#wget -----
#3、解压安装
tar xf mysql-5.7.26-linux-glibc2.12-x86_64.tar.gz
mkdir -p /application
mv mysql-5.7.26-linux-glibc2.12-x86_64 /application/mysql-5.7.26
ln -s /application/mysql-5.7.26/ /application/mysql
#4、配置配置文件
rpm -e --nodeps mariadb-libs
cat >/etc/my.cnf<<EOF
[mysqld]
basedir = /application/mysql/
datadir = /application/mysql/data
socket = /tmp/mysql.sock
server_id = 1
port = 3306
log_error = /application/mysql/data/oldboy_mysql.err
[mysql]
socket = /tmp/mysql.sock
prompt = oldboy [\\d]>
EOF
#5.初始化数据库
rpm -qa mariadb-libs
yum install libaio-devel -y
mkdir -p /application/mysql/data
chown -R mysql.mysql /application/mysql/
/application/mysql/bin/mysqld --initialize-insecure --user=mysql --basedir=/application/mysql/ --datadir=/application/mysql/data
#6、配置启动
cat >/etc/systemd/system/mysqld.service<<EOF
[Unit]
Description=MySQL Server by oldboy
Documentation=man:mysqld(8)
Documentation=http://dev.mysql.com/doc/refman/en/using-systemd.html
After=network.target
After=syslog.target
[Install]
WantedBy=multi-user.target
[Service]
User=mysql
Group=mysql
ExecStart=/application/mysql/bin/mysqld --defaults-file=/etc/my.cnf
LimitNOFILE = 5000
EOF
systemctl start mysqld
systemctl enable mysqld
netstat -lntup|grep mysql
#7.登录测试
echo 'export PATH=/application/mysql/bin:$PATH' >>/etc/profile
. /etc/profile
mysql
quit
一键安装的时候MySQL解决方法:
二进制安装的MYSQL:600多M
1)先下载放到管理机器,推过去解压。
2)可以选择mariadb
yum install mariadb-server mariadb -y
安装BLOG
1、确认环境
[root@web02 ~]# netstat -lntup|egrep "80|3306|9000"
tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 12214/php-fpm: mast
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 12420/nginx: master
tcp6 0 0 :::3306 :::* LISTEN 7285/mysqld
2、下载上传开源BLOG
[root@web02 ~]# cd /server/tools/
[root@web02 /server/tools]# rz -y
rz waiting to receive.
[root@web02 /server/tools]# ls
libiconv-1.16 nginx-1.16.0 php-7.3.5.tar.gz
libiconv-1.16.tar.gz nginx-1.16.0.tar.gz wordpress-5.1.1.zip
mysql-5.7.26-linux-glibc2.12-x86_64.tar.gz php-7.3.5
[root@web02 /server/tools]# unzip wordpress-5.1.1.zip
[root@web02 /server/tools]# mv wordpress/* /application/nginx/html/blog/
[root@web02 /server/tools]# chown -R nginx.nginx /application/nginx/html/blog/ (暂时性)
[root@web02 /server/tools]# ls -ld /application/nginx/html/blog/
drwxr-xr-x 5 nginx nginx 4096 5月 7 09:14 /application/nginx/html/blog/
数据库迁移:从单机LNMP迁移到DB01独立的mysql
#web02备份:
[root@web02 ~]# mysqldump -uroot -poldboy123 -A -B|gzip >/tmp/web02_db.sql.gz
mysqldump: [Warning] Using a password on the command line interface can be insecure.
#拷贝到异机:
[root@web02 ~]# scp /tmp/web02_db.sql.gz 10.0.0.51:/tmp
systemctl stop mysqld
systemctl disable mysqld
lsof -i :3306
#web02:
#修改配置文件
[root@web02 ~]# cd /application/nginx/html/blog/
[root@web02 /application/nginx/html/blog]# vim wp-config.php
define( 'DB_NAME', 'wordpress' );
/** MySQL database username */
define( 'DB_USER', 'wordpress' );
/** MySQL database password */
define( 'DB_PASSWORD', 'oldboy123' );
/** MySQL hostname */
define( 'DB_HOST', '172.16.1.51' );
#db01:
lsof -i :3306
[root@db01 ~]# cd /tmp
[root@db01 /tmp]# gzip -d web02_db.sql.gz
[root@db01 /tmp]# mysql </tmp/web02_db.sql
grant all privileges on wordpress.* to wordpress@'172.16.1.%' identified by 'oldboy123';
flush privileges;
select user,authentication_string,host from mysql.user;