Python
Version vom 22. Dezember 2019, 18:07 Uhr von 6vffdh (Diskussion | Beiträge)
How to run Python scripts in a web page
Install Apache on CentOS 7
1. CentOS 7 Server Minimal Install.
2. Update CentOS - 1. First update the system software packages to the latest version.
# yum udpate
- 2. Next, install Apache HTTP server from the default software repositories using the YUM package manager as follows.
# yum install httpd
- 3. Once Apache web server installed, you can start it first time and enable it to start automatically at system boot.
# systemctl start httpd # systemctl enable httpd # systemctl status httpd