Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

warning: failed to kill 30449: No such process

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
serverpostgresqlbash
5 Odpowiedzi
63656 Widoki
Awatar
Tomas Parnarauskas

I have script that runs OpenERP server, but I seems to be not working on new server for some reason (I use same script on another server and it works fine).

when I enter command such as:

openerp-server-7.0 start

I get:

Starting openerp-server-7.0:

But actually nothing starts. No openerp runs and no log file is created. When I enter:

openerp-server-7.0 stop

I get this:

Stopping openerp-server-7.0: start-stop-daemon: warning: failed to kill 30449: No such process

If I check pid files directory. There is pid file with pid number that error says there is no such process. It seems postgress can't find that location where new pid process is being created.

My script:

#! /bin/sh

### BEGIN INIT INFO
# Provides:             openerp-server
# Required-Start:       $syslog
# Required-Stop:        $syslog
# Should-Start:         $network
# Should-Stop:          $network
# Default-Start:        2 3 4 5
# Default-Stop:         0 1 6
# Short-Description:    Enterprise Resource Management software
# Description:          Tiny ERP is a complete ERP and CRM software.
### END INIT INFO

DAEMON=/home/user/openerp/7.0/server/openerp-server
VERSION=7.0
USER=user


PATH=/sbin:/bin:/usr/sbin:/usr/bin
NAME=openerp-server-$VERSION
DESC=$NAME
GROUP=$USER
DAEMON_DIR="/home/$USER/openerp/$VERSION/server"
CONFIG="/home/$USER/etc/openerp-server-$VERSION.conf"
DAEMON_OPTS="$DAEMON_DIR/openerp-server --config=$CONFIG"
DATA_BASE_DIR="/home/$USER/var/run"

test -x $DAEMON || exit 0

set -e

make_dir()
{
  DIR=$1
  if [ -d "$DIR" ]; then
    return 0;
  fi
  mkdir -p -m 0755 "$DIR"
  chown "$USER:$GROUP" "$DIR"
}

make_dir $DATA_BASE_DIR

case "$1" in
        start)
                echo -n "Starting $DESC: "

                cd $DAEMON_DIR
                start-stop-daemon --start --quiet --pidfile $DATA_BASE_DIR/$NAME.pid \
                        --chuid $USER --background --make-pidfile \
                        --exec $DAEMON -- $DAEMON_OPTS

                echo "$NAME."
                ;;

        stop)
                echo -n "Stopping $DESC: "

                start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $DATA_BASE_DIR/$NAME.pid \
                        --oknodo

                echo "$NAME."
                ;;

        restart|force-reload)
                echo -n "Restarting $DESC: "

                start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $DATA_BASE_DIR/$NAME.pid \
                        --oknodo

                sleep 1

                cd $DAEMON_DIR
                start-stop-daemon --start --quiet --pidfile $DATA_BASE_DIR/$NAME.pid \
                        --chuid $USER --background --make-pidfile \
                        --exec $DAEMON -- $DAEMON_OPTS

                echo "$NAME."
                ;;
 *)
                N=/etc/init.d/$NAME
                echo "Usage: $N {start|stop|restart|force-reload}" >&2
                exit 1
                ;;
esac

exit 0
0
Awatar
Odrzuć
Awatar
Brett Lehrer
Najlepsza odpowiedź

USER=user

Is your username and group actually named 'user'?  Make sure the username is accurate and that the server code has permissions and the owner set correctly.  If you repeat this start/stop process a few times, is the error message always the same PID?

1
Awatar
Odrzuć
Awatar
Ryno Meyer
Najlepsza odpowiedź

Hi,

I ended up in a similar position. I was able to resolve it by typing 'top' in linux to see the services running. I got the id (lets say it was 11122). Then I killed the process in linux using 'kill 11122' (which is simply kill and the id). I checked, and the service was not running anymore. There after I used the regular 'service openerp-server start' and voila! Alternatively you can use 'etc/init.d/openerp start'

 

Hope it helps :)

0
Awatar
Odrzuć
Awatar
Ivan
Najlepsza odpowiedź

Tomas and Ryno, if your operating system is complaining that it cannot find the process, then most probably it is the case.  In Tomas' case, the OS cannot find the process because it has not started or killed prematurely as indicated that "nothing starts" when you start OpenERP.

Tomas, In your script list DAEMON_OPTS contains the name of the script as well which is defined as DAEMON and then when it is called in start BOTH are used.  Drop the $DAEMON_DIR/openerp-server part from DAEMON_OPTS and see if it works.  There might be other problems too.

0
Awatar
Odrzuć
Awatar
Paulo Matos‏
Najlepsza odpowiedź

Hi Tomas,

I had the same problem as you on odoo v7.

On ubuntu 12.04 never had such problem, but when started using it on ubuntu 14.04 sometimes I had this problem. The script I use is from "The Open Sourcerer" and you can get it here, but the instructions I will send you may work with your script also (or use the one I send with the required changes).

I found that for some reason the entry for auto startup had a problem which I do not know what is it. To solve it:

  • Disable openerp-server from startup:

sudo update-rc.d openerp-server disable

  • Remove openerp-server entry from startup:

sudo update.rc.d –f openerp-server remove

(-f means force)

  • Add the entry to the startup once again:

sudo update-rc.d openerp-server defaults

  • Start/restart openerp-server:

sudo /etc/init.d/openerp-server start

sudo /etc/init.d/openerp-server restart

Test the system accessing yourhost:8069

Restart the system

Hope this can help you.

Regards

Paulo

0
Awatar
Odrzuć
Awatar
Mitul
Najlepsza odpowiedź

I had the same issue as because dependencies were not installed properly when initially I installed the package.

0
Awatar
Odrzuć
Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
When should Database be separated on Separate Server. Rozwiązane
server database postgresql
Awatar
Awatar
1
lip 25
4457
ODOO SERVER AND POSTGRESQL OPTIMIZATION
server postgresql odoo
Awatar
Awatar
Awatar
2
maj 25
30044
Howto use 2 databases on the same Vitual Private Server (without mixing up content).
server postgresql administration
Awatar
0
kwi 15
4756
error on localhost 8069 and postgresql service doesn't exist ?
server postgresql localhost
Awatar
0
mar 15
8335
2 postgresql server on the same station : conflict?
server postgresql compatibilty
Awatar
Awatar
1
mar 15
6109
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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