摘要: 1、防火墙的masquerade功能进行地址伪装(NAT),私网访问公网或公网访问私网都需要开启此功能来进行地址转换,否则无法正常互访 有2种方法: ①命令(加--permanent 永久生效): firewall-cmd --add-masquerade --permanent ②修改配置文件vi 阅读全文
posted @ 2023-12-07 17:35 脸探书丛 阅读(561) 评论(0) 推荐(0)
摘要: 添加/编辑虚拟网桥 /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)
摘要: 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)
摘要: 国内镜像源:清华: 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-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)
摘要: 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,源码模式安装。 源码下载地址: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)
摘要: 今天遇到一个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)