前言 终于搞好了 好多好多坑 几乎每一步的每一小步都有坑 对于一个linux都用不明白,网络知识等于没有的小孩来说太难了
好在最后好了 其实还不确定 刚好就开始写这个blog,说不定写完就又出问题了 嘻嘻
NodeJs问题 问题 刚开始使用yum下载,报错,是gcc相关的,根据网上教程升级gcc啥的没搞好
所以最后在自己电脑上下载下来,然后上传上去编译安装的
但还是有问题 还是gcc相关问题
1 2 3 4 node: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by node) node: /lib64/libstdc++.so.6: version `CXXABI_1.3.9' not found (required by node) node: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by node)
解决 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 1. 查看系统版本 strings /usr/lib64/libstdc++.so.6 | grep GLIBCXX GLIBCXX_3.4 GLIBCXX_3.4.1 GLIBCXX_3.4.2 GLIBCXX_3.4.3 GLIBCXX_3.4.4 GLIBCXX_3.4.5 GLIBCXX_3.4.6 GLIBCXX_3.4.7 GLIBCXX_3.4.8 GLIBCXX_3.4.9 GLIBCXX_3.4.10 GLIBCXX_3.4.11 GLIBCXX_3.4.12 GLIBCXX_3.4.13 GLIBCXX_3.4.14 GLIBCXX_3.4.15 GLIBCXX_3.4.16 GLIBCXX_3.4.17 GLIBCXX_3.4.18 GLIBCXX_3.4.19 GLIBCXX_DEBUG_MESSAGE_LENGTH 发现少了GLIBCXX_3.4.20,解决方法是升级libstdc++. 2. sudo yum provides libstdc++.so.6 Loaded plugins: fastestmirror, langpacks Determining fastest mirrors libstdc++-4.8.5-39.el7.i686 : GNU Standard C++ Library Repo : base Matched from: Provides : libstdc++.so.6 3. cd /usr/local/lib64 # 下载最新版本的libstdc.so_.6.0.26 sudo wget http://www.vuln.cn/wp-content/uploads/2019/08/libstdc.so_.6.0.26.zip unzip libstdc.so_.6.0.26.zip # 将下载的最新版本拷贝到 /usr/lib64 cp libstdc++.so.6.0.26 /usr/lib64 cd /usr/lib64 # 查看 /usr/lib64下libstdc++.so.6链接的版本 ls -l | grep libstdc++ libstdc++.so.6 ->libstdc++.so.6.0.19 # 删除/usr/lib64原来的软连接libstdc++.so.6,删除之前先备份一份 sudo rm libstdc++.so.6 # 链接新的版本 sudo ln -s libstdc++.so.6.0.26 libstdc++.so.6 # 查看新版本,成功 strings /usr/lib64/libstdc++.so.6 | grep GLIBCXX ... GLIBCXX_3.4.18 GLIBCXX_3.4.19 GLIBCXX_3.4.20 GLIBCXX_3.4.21 GLIBCXX_3.4.22 GLIBCXX_3.4.23 GLIBCXX_3.4.24 GLIBCXX_3.4.25 GLIBCXX_3.4.26 GLIBCXX_DEBUG_MESSAGE_LENGTH ...
其他问题 还有其他问题我忘了捏
git问题 问题 git hooks里的代码
1 git --work-tree=/home/www/blog --git-dir=/home/git/blog.git checkout -f
总是不生效
解决 1 2 3 cd /home/www/blog git init git clone /home/git/blog.git
换掉脚本里的代码(照着网上抄的),改为
2024.4.13:疑似没用,部署后需git clone
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 # !/bin/sh unset GIT_DIR #很关键 NowPath=`pwd` DeployPath="/home/www/blog/blog" #存放项目的文件夹位置 cd $DeployPath git add . -A && git stash git pull origin master composer install --ignore-platform-reqs cd $NowPath echo "ok" exit 0
Nginx 忘了,只记得改完配置记得
还有其他问题,忘了捏
还有个小问题,未解决,无伤大雅 每次在本地hexo d后不能直接更新 需要删除/home/www/website文件夹 再新建它 再git init
再git clone /home/git/blog.git
再hexo d 后才能更新 命令:
1 2 3 4 cd /home/www/website rm -rf blog git clone /home/git/blog.git
后记 啊?结束了? 不是,问题坑挺多的,都忘了,而已 嘻嘻