配置个人博客Halo
1、官方教程
https://docs.halo.run/getting-started/install/linux
2、域名配置
官方:https://docs.halo.run/getting-started/install/other/oneinstack ,注意要跟人家的配置一模一样,默认生成的配置文件内多的内容需要删掉
https://qdmana.com/2022/02/202202130502550748.html 重载Nginx时由于没配置环境变量需要切到目录下
cd /usr/local/nginx/sbin
sudo ./nginx -t
3、centos配置环境变量
使用nginx -t 等命令时 报错:nginx: command not found
echo $PATH
命令输出当前的PATH
环境变量的值-
使用
export
命令直接修改PATH
的值,配置MySQL进入环境变量的方法:export PATH=/home/uusama/mysql/bin:$PATH # 或者把PATH放在前面 export PATH=$PATH:/home/uusama/mysql/bin