本文主要是介绍Ubuntu下将WordPress恢复到另一台电脑,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
前言(准备)
原来的ubuntu下的WordPress整体搬移到另一台新的电脑上,首先在旧电脑进行备份:
- 将/var/www/html整个拷贝到移动硬盘或者U盘
- 用phpMyAdmin将数据库迁移,点击左侧wordpress,然后右侧点击导出,导出为sql文件,也保存在移动硬盘或者U盘
然后就开始在另一台全新的已安装ubuntu的电脑恢复。
一、建LAMP环境
1、lamp全家桶安装
sudo apt install lamp-server^
2、MySQL 5.7不再弹出root密码设置
sudo vim /etc/mysql/debian.cnf
显示:
# Automatically generated for Debian scripts. DO NOT TOUCH!
[client]
host = localhost
user = debian-sys-maint
password = fPw**********b22
socket = /var/run/mysqld/mysqld.sock
[mysql_upgrade]
host = localhost
user = debian-sys-maint
password = fPw**********b22
socket = /var/run/mysqld/mysqld.sock
找到了,用户名:debian-sys-maint,密码:fPw**********b22(这是随机生成的)
退出来,Esc键,输入“:q!”
mysql -u debian-sys-maint -p
Enter password:输入刚才找到的密码
接下来,设置root用户密码(假设为123456)
mysql> update mysql.user set authentication_string=PASSWORD(“123456″) where User=’root’;
更改root密码,然后出现
Query OK, 1 row affected, 1 warning (0.12 sec)
Rows matched: 1 Changed: 1 Warnings: 1
mysql> update mysql.user set plugin=”mysql_native_password”;
解决出现警告的问题,然后出现
Query OK, 1 row affected (0.02 sec)
Rows matched: 4 Changed: 1 Warnings: 0
这篇关于Ubuntu下将WordPress恢复到另一台电脑的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!