Before you get started, you need a server. Install PagodaBaota official website: https://www.bt.cn/ If you are using CentOS system, use the following command to install it. yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh After the installation is complete, the access address, account number and password will appear. The first thing to do at this time is to go to the control panel of the cloud server and open port Visit the address after the Baota installation again, and you can see the login interface, which means the port is open and the Baota can operate normally. Configure Python runtime environment Open the software store of Baota and install the relevant content as shown in the figure below. After logging in to Baota by default, it will recommend installing Please note that the Python Project Manager mentioned above is an essential plug-in for our subsequent operations on Python programs. Install PythonClick the Settings button on the right side of the Python Project Manager, select Version Management in the pop-up window, and then install the Python version you need. The installation speed here is a bit slow, so just wait for a while. Configure Django environment When configuring the Django environment, be sure to refer to the following figure for configuration. Whether to install module dependencies depends on whether there is a Installing the Module After the project is initialized, click the module on the right to manually install the modules used in the project, such as When installing a module, be sure to pay attention to the version number. For example, I use version 2.x of Django locally, so the server also installs this version. After all modules are installed, you can restart the Python service. Here you need to pay attention to the log content to make sure that the restart is successful. Various problems that occur during the operation of Python Django will be shown here. For example, during the first run, the The following content is reproduced from the Internet (https://www.jb51.net/article/231391.htm, thanks to the original author, you can refer to it for upgrade) # Update for SQLite 3 # Get the source code (run in your home directory) [root@djangoServer ~]# cd ~ [root@djangoServer ~]# wget https://www.sqlite.org/2019/sqlite-autoconf-3270200.tar.gz [root@djangoServer ~]# tar -zxvf sqlite-autoconf-3270200.tar.gz #Build and install [root@djangoServer ~]# cd sqlite-autoconf-3270200 [root@djangoServer sqlite-autoconf-3270200]# ./configure --prefix=/usr/local/sqlite [root@djangoServer sqlite-autoconf-3270200]# make && make install # Check version ## The latest installed sqlite3 version [root@djangoServer ~]# /usr/local/sqlite/bin/sqlite3 --version 3.27.2 2019-02-25 16:06:06 bd49a8271d650fa89e446b42e513b595a717b9212c91dd384aab871fc1d0f6d7 [root@djangoServer ~]# ## Centos7's own sqlite3 version [root@djangoServer ~]# /usr/bin/sqlite3 --version 3.7.17 2013-05-20 00:56:22 118a3b35693b134d56ebd780123b7fd6f1497668 [root@djangoServer ~]# ## You can see that the version of sqlite3 is still an old version, so it needs to be updated. [root@djangoServer ~]# sqlite3 --version 3.7.17 2013-05-20 00:56:22 118a3b35693b134d56ebd780123b7fd6f1497668 [root@djangoServer ~]# ## Changes to old sqlite3 [root@djangoServer ~]# mv /usr/bin/sqlite3 /usr/bin/sqlite3_old ## Soft link sets the new sqlite3 to the /usr/bin directory [root@djangoServer ~]# ln -s /usr/local/sqlite/bin/sqlite3 /usr/bin/sqlite3 ## View the current global sqlite3 version [root@djangoServer ~]# sqlite3 --version 3.27.2 2019-02-25 16:06:06 bd49a8271d650fa89e446b42e513b595a717b9212c91dd384aab871fc1d0f6d7 [root@djangoServer ~]# # Pass the path to the shared library # Set the boot-up execution to be executed automatically. You can write the following export statement to the ~/.bashrc file. If you want it to take effect immediately, you can execute source ~/.bashrc. It will be executed every time you start the terminal. [root@djangoServer ~]# export LD_LIBRARY_PATH=/usr/local/sqlite/lib As long as it is running and no error data is generated in the log, it means the configuration is successful. Next, you can set up the nginx reverse proxy. nginx reverse proxyClick the mapping button in the picture below and enter the domain name or server external IP. Return to the Baota website function menu and you will see a new site appear. Click on the website name to view its reverse proxy configuration and make sure it is running. At this point, you can open a browser and enter the domain name or IP to test whether you can access the Django program normally. If an error still occurs, check the If your Django program still has static resources, be sure to go to the reverse proxy configuration (find a blank line) and add the static directory configuration. location /static/ { alias /www/wwwroot/project address/static/; } Finally, remember to confirm whether the website port is accessible in the pagoda, such as The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Vue+ElementUI implements paging function-mysql data
>>: Count the list tags in HTML
1. Embed is illegal The <embed> tag is a pri...
Table of contents Create a Vite project Creating ...
Preface We already know that MySQL uses the SQL S...
Table of contents Creating HTML Pages Implement t...
After obtaining the system time using Java and st...
Table of contents Introduction Download and insta...
On Unix-like systems, you may know when a command...
Use of stored procedure in parameters IN paramete...
For a long time, website development was hampered...
Table of contents Query Background 1. Like query ...
Using the <img> element with the default sr...
Preparation: 1. Install VMware workstation softwa...
Some time ago, the blogger installed the Ubuntu s...
If the developer uses Dockerfile to build the ima...
"What's wrong?" Unless you are accus...