Ubuntu22.04LTS搭建apache+mysql+python+django web开发环境

一、条件:在已经安装了Ubuntu22.04LTS的虚拟机上且网络已经调通的情况下开始搭建;

二、步骤:

1、更新数据源,命令:~$ sudo apt update

2、安装apache命令:~$ sudo apt install apache2

提示信息:........

Need to get 2,135 kB of archives.

After this operation, 8,486 kB of additional disk space will be used.

Do you want to continue? [Y/n] y【输入y回车,开始安装】

3、验证apache安装:浏览器中输入ip出现下图:

图1  apache安装成功

4、安装MySQL命令:~$ sudo apt install mysql-server

提示信息:........

Need to get 28.6 MB of archives.

After this operation, 240 MB of additional disk space will be used.

Do you want to continue? [Y/n] y【输入y回车,开始安装】

5、验证MySQL安装:~$ mysql -uroot -p(回车后,出现下图)

Enter password:

ERROR 1698 (28000): Access denied for user 'root'@'localhost'

原因:是因为auth_socket的验证类型引起的。

6、解决MySQL的root密码步骤:

1)通过sudo进入mysql,命令:~$ sudo  mysql(回车后,出现下图)

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 10

Server version: 8.0.29-0ubuntu0.22.04.2 (Ubuntu)

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

2)进入mysql库:mysql > use mysql;(回车后,出现下图)

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A

Database changed

3)改密码(新密码暂定【mysql】):

mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'mysql';(回车后,出现下图)

Query OK, 0 rows affected (0.00 sec)

4)查看user表,命令:mysql> select user, authentication_string,plugin from mysql.user;(回车后,查看数据表的最后一行root,见下图)

root  *E74858DB86EBA20BC33D0AECAE8A8108C56B17FA   mysql_native_password

说明已经将密码改成功了!

5)刷新:mysql> flush privileges;

6)退出:exit

7)重启:~$ sudo service mysql restart

8)重新登录:~$ mysql -uroot -pmysql(登录成功如下图)

mysql: [Warning] Using a password on the command line interface can be insecure.

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id is 8

Server version: 8.0.29-0ubuntu0.22.04.2 (Ubuntu)

Copyright (c) 2000, 2022, Oracle and/or its affiliates.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

7、安装Python:由于Ubuntu22.04已经默认安装了Python,通过命令查看版本:~$ python3 -V(大V,见下图)

Python 3.10.4

8、更新:~$ sudo apt-get update

9、安装Python管理软件包pip:命令:~$ sudo apt install python3-pip(回车后,见下图,***有时需要8-9反复安装多次才能成功***)

Need to get 71.1 MB of archives.

After this operation, 238 MB of additional disk space will be used.

Do you want to continue? [Y/n] y【输入y回车,开始安装】

10、安装Python django (Python Web 框架),命令:~$ sudo pip3 install django(回车后,见下图)

Defaulting to user installation because normal site-packages is not writeable

Collecting django

  Downloading Django-4.0.5-py3-none-any.whl (8.0 MB)

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 42.3/42.3 KB 66.6 kB/s eta 0:00:00

Installing collected packages: sqlparse, asgiref, django

Successfully installed asgiref-3.5.2 django-4.0.5 sqlparse-0.4.2

WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviourcommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv

11、新建用户test,准备在test用户下新键项目,命令:~$ sudo adduser test

12、安装tree(查看项目时使用),命令:~$ sudo apt install tree

13、使用test新用户登录,然后创建demo项目:~$ django-admin startproject demo(没有回显即为成功!)

14、查看刚刚创建的demo项目,命令:~$ tree demo(回车后,见下图2)

图2 创建项目

15、修改demo项目下的settings.py文件中的ALLOWED_HOSTS参数,命令:~$ vim demo/demo/settings.py

将这行,改成:ALLOWED_HOSTS=['*']

16、运行:~/demo$ python3 manage.py runserver 0.0.0.0:8000&

[1] 1275

test@ub22:~/demo$ Watching for file changes with StatReloader

Performing system checks...

System check identified no issues (0 silenced).

You have 18 unapplied migration(s). Your project may not work properly until you apply the migrations for app(s): admin, auth, contenttypes, sessions.

Run 'python manage.py migrate' to apply them.

June 01, 2022 - 13:28:17

Django version 4.0.4, using settings 'demo.settings'

Starting development server at http://0.0.0.0:8000/

Quit the server with CONTROL-C.

17、查看效果:在浏览器地址栏输入ip:80000,(见下图3):

图3 django成功图

18、查看项目文件发生了哪些变换,命令:~$ tree,见下图4:

图4 django运行后图

19、创建Django版的Hello World:利用django框架编写Hello World!步骤:

1)在demo主模块下创建视图文件views.py文件(做的是处理业务逻辑的操作),命令:~/demo/demo$ vim views.py(内容如下图5:)

from django.http import HttpResponse

def hello(request):

    return HttpResponse("Hello World!")

图5 views.py文件内容

2)定义视图对应的URL,修改urls.py,命令:~/demo/demo$vim urls.py(内容如下图6:)

from django.contrib import admin

from django.urls import path

from . import views

urlpatterns = [

    path('',views.hello,name='hello'),

    path('admin/', admin.site.urls),

]

图6 urls.py内容

最后demo项目结构图:

3)运行:~/demo$python3 manage.py runserver 0.0.0.0:8000&(有时运行时会出错,见下图)

解决方法:执行一下命令:~/demo$ python3 manage.py migrate

4)服务启动后在浏览器中输入:ip:8000(效果如下图:)

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,186评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,858评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,620评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,888评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,009评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,149评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,204评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,956评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,385评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,698评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,863评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,544评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,185评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,899评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,141评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,684评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,750评论 2 351

推荐阅读更多精彩内容