2024.7.10(源码安装Python、Linux网络配置、安装和运行redis和mongodb)
# 安装Python
sudo apt-get update
sudo apt-get install python3
sudo apt-get install python3-pip
# 配置Linux网络(以配置静态IP为例)
sudo nano /etc/netplan/01-netcfg.yaml
# 输入以下内容,替换为你的网络配置
network:
version: 2
renderer: networkd
ethernets:
eth0:
dhcp4: no
addresses:
- 192.168.1.10/24
gateway4: 192.168.1.1
nameservers:
addresses: [8.8.8.8, 8.8.4.4]
# 应用网络配置
sudo netplan apply
# 安装和运行Redis
sudo apt-get install redis-server
sudo systemctl start redis-server
sudo systemctl enable redis-server
# 安装MongoDB
echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu $(lsb_release -cs)/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
sudo apt-get update
sudo apt-get install -y mongodb-org
sudo systemctl start mongod
sudo systemctl enable mongod
以上代码提供了在Ubuntu系统上从源码安装Python、配置静态IP地址、安装和启动Redis服务以及安装和启动MongoDB服务的示例。注意,这些命令需要在终端中以root用户或使用sudo执行。
评论已关闭