摘要: # odoo14中一些好用的开源的模块 1.intero_reload_form 刷新按钮(页面数据刷新,而不是按F5刷新整个页面) 2.ms_magic_button 弹框下拉选项 3.session_redis 会话存储在redis中,负载均衡部署必备 4.website_smartarget_ 阅读全文
posted @ 2021-11-26 15:17 看一百次夜空里的深蓝 阅读(486) 评论(0) 推荐(0) 编辑
摘要: # 维护邮箱的七个地方 # 1.settings中Discuss栏将External Email Servers勾选(启用外部邮件服务),然后维护Alias Domain(域名) # 2.Technical->Email->Outgoing Mail Servers 这是发件箱服务设置 # 3.Te 阅读全文
posted @ 2021-11-23 15:07 看一百次夜空里的深蓝 阅读(795) 评论(0) 推荐(0) 编辑
摘要: # apps中的图标是固定路劲: static/description/icon.png # 主页图标是通过你的主menuitem的web_icon来设置的: <menuitem id="ship_manage_base" name="Ship Manage" web_icon="ship_mana 阅读全文
posted @ 2021-11-22 20:25 看一百次夜空里的深蓝 阅读(487) 评论(0) 推荐(0) 编辑
摘要: # ubuntu 下获取Let's Encrypt免费ssl证书 # 一、安装Nginx https://www.cnblogs.com/watermeloncode/p/15476317.html # 二、安装certbot # 2.1 安装snapd sudo apt-get install s 阅读全文
posted @ 2021-11-19 16:06 看一百次夜空里的深蓝 阅读(577) 评论(0) 推荐(0) 编辑
摘要: 1 # PostgreSQL 系统表 2 3 pg_class表记录了数据库中的表、索引、视图之间的关系 4 # 一些字段: 5 # relname 表,索引,视图等的名字。 6 # relnamespace 包含这个关系的名字空间(模式)的 OID,对应pg_namespace.oid 7 # r 阅读全文
posted @ 2021-11-15 13:22 看一百次夜空里的深蓝 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 1 # 常用postgresql命令 2 3 # 查询版本 4 psql --version 5 # 进入数据库命令行终端。-h 主机名、-p 端口、-d 访问哪个数据库、-U 以哪个用户去访问 6 psql -h 192.168.0.100 -p 5432 -d postgres -U odoo 阅读全文
posted @ 2021-11-15 13:06 看一百次夜空里的深蓝 阅读(429) 评论(0) 推荐(0) 编辑
摘要: Docker 官方镜像 1.个人博客空间wordpress 2.开源管理系统odoo 3.开发文档生成工具star7th/showdoc。(启动说明文档https://www.showdoc.com.cn/help/2511252204165611) 4.postgres、mysql数据库 5.Ng 阅读全文
posted @ 2021-11-15 11:14 看一百次夜空里的深蓝 阅读(1078) 评论(0) 推荐(0) 编辑
摘要: # NFS 服务器配置(Ubuntu 20.0) # 1.配置网络环境 # NFS 的客户端和服务端必须在同一局域网 # 2.在服务器上安装nfs sudo apt-get install nfs-common sudo apt-get install nfs-kernel-server # 3.创 阅读全文
posted @ 2021-11-11 11:06 看一百次夜空里的深蓝 阅读(197) 评论(0) 推荐(0) 编辑
摘要: # odoo session in redis # 一、下载安装Session in Redis免费模块 # 下载地址:https://apps.odoo.com/apps/modules/12.0/session_redis/ # 二、模块安装完成后添加环境变量 export ODOO_SESSI 阅读全文
posted @ 2021-11-10 19:44 看一百次夜空里的深蓝 阅读(533) 评论(0) 推荐(0) 编辑
摘要: # PostgreSQL定时备份 # 版本:PostgreSQL14.0 # 一.如果你在pg_hba.conf中设定了密码登录,那么你就需要设置一个默认密码共psql登录的时候跳过验证。如果是root用户的话就加在/etc/profile文件末尾。如果是其他用户就加在用户目录下.bashrc文件末 阅读全文
posted @ 2021-11-10 09:15 看一百次夜空里的深蓝 阅读(1227) 评论(4) 推荐(0) 编辑