博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
openSUSE部署LAMP (译)
阅读量:6564 次
发布时间:2019-06-24

本文共 2731 字,大约阅读时间需要 9 分钟。

  hot3.png

英文原文在这里

环境: openSUSE + Apache2 + MariaDB + PHP

1.安装Apache

root用户下,

# zypper install apache2
启动服务的命令如下

# systemctl start apache2.service
激活服务(开机启动)

# systemctl enable apache2.service
测试。在浏览器地址栏输入 localhost,显示如下表示 Apache 正常运行

Apache 在 openSUSE 的默认根目录是 /srv/www/htdocs/, 配置文件是 /etc/apache2/httpd.conf, 其他的配置文件在 /etc/apache2/conf.d/ directory.

2.安装MariaDB

安装

# zypper install mariadb
启动服务

# systemctl start mysql.service
激活服务

# systemctl enable mysql.service

用下面的命令进行安全设置

# mysql_secure_installation
交互过程如下:

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB

      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user.  If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):   <--直接回车
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
Set root password? [Y/n] y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
 ... Success!
By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] y
 ... Success!
Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] y
 ... Success!
By default, MariaDB comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] y
 ... Success!
Cleaning up...
All done!  If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!

3.安装PHP

安装

# zypper install php5 php5-mysql apache2-mod_php5
测试

重启Apache

# systemctl restart apache2.service

在 /srv/www/htdocs/ 目录下新建 info.php, 写入:

浏览器访问 localhost/info.php

至此,安装成功。

之后可以通过

# zypper install phpMyAdmin

安装phpMyAdmin

附:

(Linux+Nginx + MariaDB + PHP)

(Linux+Lighttpd+MariaDB+PHP)

转载于:https://my.oschina.net/sukai/blog/363344

你可能感兴趣的文章
HBase BlockCache系列 - 探求BlockCache实现机制
查看>>
中国勒索软件数量增长超过67倍 多层防护机制是防御关键
查看>>
【参与有奖】您用的MySQL、MongoDB、Redis等服务被勒索过吗?
查看>>
Java核心技术卷I基础知识1.2.6 体系结构中立
查看>>
Libvirt 虚拟化库介绍
查看>>
Xmemcached发布1.2.6.1(推荐升级)
查看>>
《Spark官方文档》Spark Streaming编程指南(一)
查看>>
《Spring 5 官方文档》26. JMS(一)
查看>>
《Python Cookbook(第2版)中文版》——1.11 检查一个字符串是文本还是二进制
查看>>
Tkinter之Label
查看>>
Java操作redis
查看>>
PostgreSQL merge json的正确姿势
查看>>
java反射
查看>>
【IOS-COCOS2D游戏开发之二】COCOS2D 游戏开发资源贴(教程以及源码)
查看>>
nodejs安装记录
查看>>
Android2.2 API 中文文档系列(9) —— ZoomButton
查看>>
pcDuino 刷系统-卡刷
查看>>
MySQL结构自动同步工具-schemasync
查看>>
关于在线代码运行网站的一个想法
查看>>
我的友情链接
查看>>