Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
2 Trả lời
8246 Lượt xem

Hello all,

I'm now able to run 2 differents instances of Odoo on the same computer. How could I change de process name? It is alway « python »...

Thanks for your idea.

Ảnh đại diện
Huỷ bỏ
Tác giả Câu trả lời hay nhất

Since I'm not able to rename process, I use this to kill particular process on my Ubuntu.

killall -v python -u odoo-test; (by user odoo-test)

 

 

Ảnh đại diện
Huỷ bỏ

Its safer to do a ps aux and then do a sudo kill -9 procesNumber. Then you're sure you're only killing that one process you'd like.

Câu trả lời hay nhất

Linux/Unix way will be to use 

bash -c "exec -a MyUniqueProcessName <command> &"

however, THIS WILL NOT WORK due to the way odoo.py is executed. The shabang in the odoo.py (the #!/usr/bin/env python) is starting an instance of python which overrides the name of the process.

A workaround is to get  the PID of the process and store it in a file which you can later use to kill the process you want. Here is the most rudimentary example:

Crate file with name start_as.sh with following content:
#!/bin/bash
./odoo.py &
odoo_pid=$!
echo $odoo_pid >$1

Than you can use
./start_as.sh mynew.pid
kill `cat mynew.pid`

Ảnh đại diện
Huỷ bỏ
Tác giả

He he!!! it is surely not the first time you work in Bash... Thanks!

Well, bash is not pretty, but it saves time :)

Bài viết liên quan Trả lời Lượt xem Hoạt động
3
thg 2 25
3253
0
thg 5 24
46
1
thg 4 24
3203
4
thg 9 23
4677
2
thg 9 23
6897