欢迎 odoo 实施交流!

分享和讨论最佳内容和新营销理念,打造专业形象,共同成为更好的odoo 实施人员。

注册

只限注册用戶才可与社群互动。
此问题已终结
1 回复
1093 查看

How to access odoo11 after installation:

1. For demonstration purposes, I will use two virtual machines: one as the "frontend server" for deploying the application, and the other for installing the PostgreSQL database and storing database data, referred to as the "backend server." Reminder: Ensure the server has a fixed IP address; otherwise, the installation may be interrupted due to address changes. 2. Configure the backend server. We start with the backend server, where PostgreSQL and the database will be installed. Open a terminal on the backend server and run the command: Create a PostgreSQL user, ensuring the username matches the one used by Odoo on the frontend server. In my example, the username is odoo11.

形象
丢弃
编写者

Linux version

Use putty to remotely log in to the Linux system and run the following two commands:

~#systemctl restart odoo.service 
~#systemctl restart nginx

Windows version

Two ways to restart Odoo service:

  • Method 1: Start -> Administrative Tools -> Services -> Find odoo-server-11.0 -> Restart/Stop/Pause
  • Method 2: Start > Run > Enter cmd > Enter the command net start odoo-server-11.0 in cmd to start the service (or net stop odoo-server-11.0 to stop the service)


形象
丢弃