会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
脸探书丛
博客园
首页
新随笔
联系
订阅
管理
2023年12月7日
firewall 端口转发
摘要: 1、防火墙的masquerade功能进行地址伪装(NAT),私网访问公网或公网访问私网都需要开启此功能来进行地址转换,否则无法正常互访 有2种方法: ①命令(加--permanent 永久生效): firewall-cmd --add-masquerade --permanent ②修改配置文件vi
阅读全文
posted @ 2023-12-07 17:35 脸探书丛
阅读(561)
评论(0)
推荐(0)
2023年12月5日
ubuntu 22.04 设置网桥 - netplan
摘要: 添加/编辑虚拟网桥 /etc/netpaln/br0.yaml ipv4 dhcp: network: version: 2 ethernets: eno8303: #替换为实际网卡 dhcp4: false dhcp6: false bridges: br0: interfaces: [eno83
阅读全文
posted @ 2023-12-05 11:25 脸探书丛
阅读(1341)
评论(0)
推荐(0)
2023年3月21日
python3中使用tf
摘要: python3中import tf报错,记录,ubuntu18.04环境,树莓派。 1、编辑.bashrc文件,注释 # source ~/你的workspace/devel/setup.bash 2、安装catkin build sudo apt-get install python-catkin
阅读全文
posted @ 2023-03-21 14:20 脸探书丛
阅读(280)
评论(0)
推荐(0)
2022年9月7日
python国内镜像
摘要: 国内镜像源:清华: https://pypi.tuna.tsinghua.edu.cn/simple 阿里云: http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 : https://pypi.mirrors.ustc.edu.cn/simple/ 华中理工大
阅读全文
posted @ 2022-09-07 15:41 脸探书丛
阅读(1198)
评论(0)
推荐(0)
2022年6月30日
wildfly的log包和项目中的log包冲突解决
摘要: 错误信息如下: 2022-06-30 10:12:00,759 ERROR [org.jboss.msc.service.fail] (ServerService Thread Pool -- 87) MSC000001: Failed to start service jboss.deployme
阅读全文
posted @ 2022-06-30 11:22 脸探书丛
阅读(521)
评论(0)
推荐(0)
2022年6月29日
centos 7上mongodb单机版安装步骤
摘要: centos 7测试机器安装单机版mongodb,记录 1、下载解压 cd /usr/local/ wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-4.4.13.tgz tar -zxvf mongodb-linux
阅读全文
posted @ 2022-06-29 18:56 脸探书丛
阅读(302)
评论(0)
推荐(0)
centos 7 上源码安装mosquitto-2.0.8,用户密码及权限设置,共享订阅
摘要: centos 7上安装mosquitto-2.0.8,源码模式安装。 源码下载地址:http://mosquitto.org/files/source/ 1、安装依赖(必须确保每个安装成功): 1 yum install gcc gcc-c++ libstdc++-devel 2 yum insta
阅读全文
posted @ 2022-06-29 18:47 脸探书丛
阅读(1080)
评论(0)
推荐(0)
记wildfly20中servlet StringIndexOutOfBoundsException的bug
摘要: 今天遇到一个sessionFilter在tomcat中运行正常,部署到wildfly-20.0.0.final中运行报错的bug,记录下 示例代码: 1 @WebFilter(filterName = "sessionFilter", urlPatterns = "*.do") 2 @Order(1
阅读全文
posted @ 2022-06-29 18:04 脸探书丛
阅读(92)
评论(0)
推荐(0)
公告