How to change port in erpnext

Hello

i had install  erpnext at my local system,

default it takes http://localhost:8000/ url

i want to change it's port 8000


Ankit



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un…@googlegroups.com.

    To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/2c4c47e4-9bf7-4d23-a764-606f2d170ae4%40googlegroups.com.

    For more options, visit https://groups.google.com/d/optout.

Hi Ankit,

On Fri, Apr 11, 2014 at 6:08 PM, Ankit Agrawal
an...@gmail.com wrote:

Hello

i had install erpnext at my local system,

default it takes http://localhost:8000/ url

i want to change it’s port 8000

I assume that you are asking for development server, Use ./lib/wnf.py --serve --port 3400

Thanks,

Pratik
erpnext

what is developmet server ?
How can we start the main server


On Friday, April 11, 2014 6:08:41 PM UTC+5:30, Ankit Agrawal wrote:
Hello

i had install  erpnext at my local system,

default it takes http://localhost:8000/ url

i want to change it's port 8000


Ankit



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un…@googlegroups.com.

    To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/505e9d43-7e79-464c-812c-45fb1a8a30fa%40googlegroups.com.

    For more options, visit https://groups.google.com/d/optout.
is this command working with eprnext4 version

On Friday, April 11, 2014 6:08:41 PM UTC+5:30, Ankit Agrawal wrote:
Hello

i had install  erpnext at my local system,

default it takes http://localhost:8000/ url

i want to change it's port 8000


Ankit



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un…@googlegroups.com.

    To view this discussion on the web visit https://groups.google.com/d/msgid/erpnext-developer-forum/94b10c70-ead5-45e7-bb39-e674591111b5%40googlegroups.com.

    For more options, visit https://groups.google.com/d/optout.

On Fri, Apr 11, 2014 at 6:34 PM, Ankit Agrawal
an...@gmail.com wrote:

is this command working with eprnext4 version

For erpnext 4, it will be
frappe --serve --port 3400 (just add the --port option)

Pratik
erpnext

On Fri, Apr 11, 2014 at 6:31 PM, keshav vats ke...@gmail.com wrote:

what is developmet server ?
How can we start the main server

When you run ./lib/wnf.py --serve, it start a development server
which reload when code is changed. It in intended to be used only for
development purposes and not for production use. For production,
gunicorn is recommended as the WSGI server.

If you want to deploy erpnext 3 for production use, follow,

Thanks,

Pratik
erpnext