当前位置:网站首页>Install lamp under deepin
Install lamp under deepin
2022-07-28 09:53:00 【MountainYanYL】
Recently, the computer installed Linux System deepin Learn to install LAMP Environmental Science
ubuntu/deepin linux Next use apt-get Install the required software LAMP ,yum stay deepin It's too much trouble
1. install apacache2
apt-get install apache2
The configuration file :/etc/apache2/apache2.conf
service apache2 start
service apache2 stop
service apache2 restart
2. install php7
sudo apt-get install php7.0
3. install mysql
sudo apt-get install mysql-server mysql-client
test :mysql -u root -p XXX
service mysql start
service mysql stop
service mysql restart
notes : When installing, you will be prompted that information such as unable to install , The reason is that there is no update source (apt-get install update)
4. Install other modules
sudo apt-get install libapache2-mod-php7.0
sudo apt-get install php7.0-mysql
5 install Redis
apt-get install redis-server
redis start-up redis-server
redis client redis-cli
6 install git
sudo apt-get install git
PHP You also need to install some extensions It's not installed yet Later to be continued , If there are any shortcomings, please give more advice
边栏推荐
- 实验四 使用fdisk对硬盘进行管理
- CTF中常见的RSA相关问题总结:基础RSA加密与解密
- This wechat plug-in is very easy to use
- 领域事件和集成事件没那么高大上
- 居家健康诊断时代下,Senzo打造增强侧向流测试产品
- SQL server, MySQL master-slave construction, EF core read-write separation code implementation
- Sequence and limit operation of MATLAB
- Translation recommendation | debugging bookkeeper protocol - unbounded ledger
- Window源码解析(一):与DecorView的那些事
- 在Plato Farm新经济模型下,如何在游戏中获取更多MARK
猜你喜欢
随机推荐
Linux操作系统(Centos7)安装MySQL
可以伸缩的搜索栏,模仿华为应用市场
这种动态规划你见过吗——状态机动态规划之股票问题(中)
NTU Lin Xuantian's "machine learning cornerstone" problem solving and code implementation | [you deserve it]
高温持续,公交企业开展安全专项培训
数据库高级学习笔记--游标
Analysis of the internal principle of LinkedList
力扣376-摆动序列——贪心
MQ learning
redis的基础知识
Introduction to SD card (based on spec3.0)
超级原始人系列盲盒即将上线,PlatoFarm赋能超多权益
SeekTiger生态通证STI 新进展,4月14日登录 ZB
OSS直连上传-Rails服务实践
Learn a hammer.Net zero foundation reverse tutorial lesson 3 (shell and homework)
Word segmentation results of ES query index fields
《我的Vivado实战—单周期CPU指令分析》
Net 3 lines of code to realize the function of text to speech
能够遍历一个文件夹下的所有文件和子文件夹
TCP 基础知识








