Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Ways of installing Odoo

Odoberať

Get notified when there's activity on this post

This question has been flagged
installation
18 Replies
6344 Zobrazenia
Avatar
Marcio Valenzuela

Hey guys,


what are the different options for installing Odoo v11 CE on ubuntu?  The reason I ask is that our outsourced programmer installed it and we cant see the running service as before via systemctl so we are wondering what he did.  They are a firm from India and communication is sketchy so we are waiting on their response but I was just trying to jump the gun here.  I asked if its was a virtual-env install and they said no, which is weird because I can see a odoo11-env folder in the user directory.


~$ sudo systemctl status odoo

[sudo] password for it:

odoo.service

Loaded: error (Reason: No such file or directory)

Active: inactive (dead)

1
Avatar
Zrušiť
Hilar Andikkadavath

Please update the error log. Then we can help u

Marcio Valenzuela
Autor

updated

Avatar
Paresh Wagh
Best Answer

Hi Marcio:

Check whether he has set up Odoo to start as a cron job on system reboot instead of a service.

0
Avatar
Zrušiť
Marcio Valenzuela
Autor

How do I do that?

Avatar
Murugan Chinnasamy
Best Answer

you can try below link steps or you can search lot of links available.

https://www.technaureus.com/install-odoo-11-on-ubuntu-16-04/

0
Avatar
Zrušiť
Marcio Valenzuela
Autor

I am not asking how to install it. It's already installed. I want to know what are the installation methods they might have used because the typical sudo systemctl status odoo11 doesn't work. Nor do any of the other systemctl commands

Avatar
MUHAMMAD Imran
Best Answer

You can try this one:

https://linuxize.com/post/how-to-deploy-odoo-11-on-ubuntu-18-04/

0
Avatar
Zrušiť
Marcio Valenzuela
Autor

I am not asking how to install it. It's already installed. I want to know what are the installation methods they might have used because the typical sudo systemctl status odoo11 doesn't work. Nor do any of the other systemctl commands

MUHAMMAD Imran

You can stop the service like this:

sudo service odoo-server stop

And start it like this:

sudo service odoo-server start

Notice that the service name can be different, depending on how you've installed the Odoo instance. You can also run the Odoo instance from the terminal (after stopping it) like this:

./odoo-bin -u your_module_to_update -c /etc/odoo-server.conf

If you don't know the name of your service you can find it out by printing out the list of services and grepping (searching) on Odoo:

ls /etc/init.d | grep odoo

You will get an output with all available services which contain the name "odoo".

Marcio Valenzuela
Autor

So I ran your command ls /etc/init.d | grep odoo and it returned this: odoo-server, but even then, when I run sudo systemctl status odoo-server I get: "Loaded: error (No such file or directory) Active: inactive (dead)."

Marcio Valenzuela
Autor

I do believe this is the method used to install it because I can see the odoo11-server.service in the /etc/systemd/system directory. and the service is odoo11 but i cant get it from the systemctl. Like I said, I get the error

Avatar
Ankit Vaghela
Best Answer

Hello, 

you just try below command for faster and smooth installation of odoo v11 CE

Open your terminal and fire following commands

Step 1: sudo wget https://raw.githubusercontent.com/Yenthe666/InstallScript/11.0/odoo_install.sh -b 11.0

Step 2: sudo chmod +x odoo_install.sh

Step 3: sudo ./odoo_install.sh

After installation of odoo v11 you need to install dependencies of odoo

just go to odoo folder and fire below command

Step 4: pip install -r requirements.txt


Thanks & Regards

Ankit Vaghela

0
Avatar
Zrušiť
Marcio Valenzuela
Autor

I am not asking how to install it. It's already installed. I want to know what are the installation methods they might have used because the typical sudo systemctl status odoo11 doesn't work. Nor do any of the other systemctl commands

Ankit Vaghela

Can you give proper clarification of what you have issues?

Marcio Valenzuela
Autor

sudo systemctl status odoo11 returns error returns: "Loaded: error (No such file or directory) Active: inactive (dead).

Ankit Vaghela

you can use

sudo systemctl status odoo

Marcio Valenzuela
Autor

same error. Dead, no such file or directory. Odoo is up and running btw.

Ankit Vaghela

can you share your error screenshot?

Marcio Valenzuela
Autor

I am not allowed to post images in this forum for some reason. But the text is this:

~$ sudo systemctl status odoo

[sudo] password for it:

odoo.service

Loaded: error (Reason: No such file or directory)

Active: inactive (dead)

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
Install Odoo Comunity 18 without 15 days free trial version Solved
installation
Avatar
Avatar
3
júl 25
4072
Setting up a new odoo 18 server and am unable to install gevent==21.8.0
installation
Avatar
Avatar
Avatar
Avatar
3
jún 25
6673
How to install Odoo 18 from Tar Source
installation
Avatar
Avatar
Avatar
Avatar
Avatar
5
máj 25
7277
Installation tutorial for Odoo 17
installation
Avatar
Avatar
Avatar
2
máj 25
3224
Which configuration is used
installation
Avatar
Avatar
1
aug 24
3203
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now