首页
编程基础
系统
家庭
个人
友情链接
申请友情链接
七七
累计撰写
152
篇文章
累计创建
34
个分类
累计收到
0
条评论
导航
首页
编程基础
系统
家庭
个人
友情链接
申请友情链接
目录
生活学习记录
分类
服务搭建
nginx+wordpress+php-fpm+https安装配置指南
2024-03-12 17:01
18
0
0
25.8℃
服务搭建
系统
安装相关软件 系统环境 ubuntu18.04 安装nginx php php-fpm php-mysql sudo apt-get install nginx php7.2 php7.2-fpm php7.2-mysql #可能存在端口占用,如apache2则先关闭服务 # systemctl
MiniKube安装使用
2024-03-12 17:01
53
0
0
29.3℃
服务搭建
系统
https://minikube.sigs.k8s.io/docs/start/ minikube 启动 minikube 是本地 Kubernetes,专注于让 Kubernetes 易于学习和开发。 您所需要的只是 Docker(或类似兼容的)容器或虚拟机环境,而 Kubernetes 只需一个
Centos升级更新git
2024-03-12 17:01
29
0
0
26.9℃
服务搭建
系统
centos7自带的源中git版本为1.8.3.1,比较旧的版本 1、确认你的当前git版本 在终端输入: 1 git --version 2、使用root账号 在终端终入: 1 su root 然后输入root账号的密码,注意linux下输密码时界面是没有变化的 3、配置存储库 启用Wandisc
vscode下载慢解决方案
2024-03-12 17:00
9
0
0
24.9℃
服务搭建
系统
https://vscode.cdn.azure.cn/ 修改原始下载链接的地址到https://vscode.cdn.azure.cn/
虚拟机启动卡在开机界面不动
2024-03-12 17:00
27
0
0
26.7℃
服务搭建
系统
centos7.5 虚拟机启动卡在开机界面不动 报错:failed to load SELinux policy 解决办法 1、重启时按 E,进入 grub 页面 2、在大约 16 行,language 后,也就是 LANG=**_**.UTF-8后加入空格,再加上: selinux=0 3、按 c
mac下安装scrapy
2024-03-12 17:00
21
0
0
26.1℃
服务搭建
系统
直接执行 pip3 install scrapy error: command ‘/usr/bin/clang’ failed with exit status 1 对应clang的包不正确 解决方案 直接去Apple 官网下载最新版本的Command Line Tools安装即可 安装Comman
Mysql解压版 Centos安装
2024-03-12 16:59
17
0
0
25.7℃
服务搭建
系统
1.install #!/bin/bash /mysql/bin/mysql_install_db –user=service –basedir=/mysql/ –datadir=/mysql_data/ 2.init #!/bin/bash nohup /mysql/bin/mysqld –dat
nginx 配置 websocket
2024-03-12 16:59
53
0
0
29.3℃
服务搭建
系统
nginx 配置 jupyter 使用了 websocket 协议,所以需要配置支持 websocket。 location /jupyter/ { proxy_pass http://jupyter; proxy_set_header Host $host; proxy_s
CentOS7 无法启动 进入emergency mode
2024-03-12 16:58
13
0
0
25.3℃
服务搭建
系统
原因: 在虚拟机中选择了更新并关机 导致 CentOS7 无法启动,进入紧急模式,enter emergency mode 根据提示查看日志,发现报错:Failed to mount /sysroot 根据,老外的网站提供的线索: 执行这个命令 xfs_repair -v -L /dev/dm-0
Centos开机自动连接网络
2024-03-12 16:58
18
0
0
25.8℃
服务搭建
系统
sudo vim /etc/sysconfig/network-scripts/ifcfg-ens33 将 ONBOOT=no 改为 ONBOOT=yes
上一页
下一页
1
2
3
弹