Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
e61341df
Commit
e61341df
authored
Aug 31, 2016
by
广宏伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update README.md to README.rst
parent
f7ab26a5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
9 deletions
+19
-9
README.rst
apps/common/README.rst
+19
-9
No files found.
apps/common/README.
md
→
apps/common/README.
rst
View file @
e61341df
...
...
@@ -3,18 +3,18 @@
Jumpserver use celery to run task async. Using redis as the broker, so
you should run a redis instance
1.
Run redis
*
Run redis
```
# yum -y install redis
or
# docker run -name jumpserver-redis -d -p 6379:6379 redis redis-server
```
* Write tasks in app_name/tasks.py
2.
Write tasks in app_name/tasks.py
ops/tasks.py
```
ops/tasks.py
from __future__ import absolute_import
import time
...
...
@@ -30,17 +30,26 @@ def longtime_add(x, y):
return x + y
```
3.
Run celery in development
*
Run celery in development
```
# cd apps
# celery -A common worker -l info
```
4.
Test using task
*
Test using task
```
# ./manage.py shell
> from ops.tasks import longtime_add
> res = longtime_add.delay(1, 2)
> res.get()
>
>>
from ops.tasks import longtime_add
>
>>
res = longtime_add.delay(1, 2)
>
>>
res.get()
```
### celery usage of jumpserver
Jumpserver use celery to run task async. Using redis as the broker, so you should run a redis instance, Let’s start it
**Run redis server **
'' $ yum -y install redis
'' or
'' $ docker run -name jumpserver-redis -d -p 6379:6379 redis redis-server
**
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment