openSUSE 12.1下如何搭建Web服务器

发布时间:2021-11-16 16:23:28 作者:小新
来源:亿速云 阅读:214

这篇文章给大家分享的是有关openSUSE 12.1下如何搭建Web服务器的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

1.开始说明

本教程中使用的IP地址是192.168.0.100,主机名称为Server1.example.com 这些设置可能会有所不同,你需要根据不同情况进行修改。

openSUSE 12.1下安装MySQL5

2.安装MySQL5

首先我们需要先用下面的命令安装MySQL5:

yast2 -i mysql mysql-client mysql-community-server

然后我们需要创建MySQL系统的启动键链接启动MySQL服务器,这样以便于MySQL在系统启动时自动启动,

systemctl enable mysql.service
systemctl start mysql.service

为了确保MySQL的安装完成,运行:

mysql_secure_installation

下面会遇到下面的提示问题;

server1:~ # mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we'll need the current
password for the root user. If you've just installed MySQL, 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 MySQL
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 MySQL installation has an anonymous user, allowing anyone
to log into MySQL 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, MySQL 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 MySQL
installation should now be secure.
Thanks for using MySQL!
server1:~ #

现在你的MySQL安装应成功了

openSUSE 12.1下安装Apache2

3.openSUSE 12.1下安装Apache2

Apache2的是作为一个openSUSE的软件包,因此,我们可以用下面命令安装它:

yast2 -i apache2

现在配置系统在引导时启动Apache

systemctl enable apache2.service

并启动Apache2

systemctl start apache2.service

现在,在您的浏览器输入http://192.168.0.100,你应该看到Apache2的首页页(不用担心403错误,这种情况,因为有没有索引文件(例如index.html的文件根目录)) :

openSUSE 12.1下如何搭建Web服务器
错误提示

Apache的默认文档根目录是在openSUSE上的/srv/www/htdocs/目录 ,配置文件是/etc/apache2/httpd.conf。配置存储在的/etc/apache2/conf.d /目录。

4.安装PHP5

我们可以安装PHP5和Apache的PHP5的模块如下:

yast2 -i apache2-mod_php5

事后我们必须重新启动Apache:

systemctl restart apache2.service

openSUSE 12.1下此时PHP5

5.测试PHP5并获取PHP5的安装信息

默认网站的文件根目录是在/srv/www/htdocs/中。现在我们将在该目录中创建一个小型PHP文件(info.php的)和在浏览器中调用它。该文件将显示很多关于我们的PHP安装,如安装的PHP版本和有用的一些细节。

vi /srv/www/htdocs/info.php  PHP设置

如果您得到的消息是你没有一个有效的Vim安装的二进制软件包。请安装“VIM”,“vim的增强型”或者“gvim”,请运行:

yast2 -i vim

安装VI并再次尝试。

现在,我们请在浏览器(如文件http://192.168.0.100/info.php):

openSUSE 12.1下如何搭建Web服务器
PHP首页

正如你所看到的,PHP5的工作,它通过Apache 2.0的处理程序,在服务器API线。如果你继续向下滚动,你会看到所有在PHP5中已经启用的模块。MySQL是没有列出,这意味着我们没有在PHP5支持MySQL。

6.获得MySQL支持

让PHP在MySQL中获得支持,我们可以安装的php5-mysql软件包。安装一些其他的PHP5模块,以及您可能需要的应用程序,这是一个好主意:

yast2 -i php5-mysql php5-bcmath php5-bz2 php5-calendar php5-ctype php5-curl php5-dom php5-ftp php5-gd php5-gettext php5-gmp php5-iconv php5-imap php5-ldap php5-mbstring php5-mcrypt php5-odbc php5-openssl php5-pcntl php5-pgsql php5-posix php5-shmop php5-snmp php5-soap php5-sockets php5-sqlite php5-sysvsem php5-tokenizer php5-wddx php5-xmlrpc php5-xsl php5-zlib php5-exif php5-fastcgi php5-pear php5-sysvmsg php5-sysvshm

现在重新启动Apache2的:

systemctl restart apache2.service

现在,重载http://192.168.0.100/info.php在您的浏览器,并再次向下滚动到模块部分。现在,你应该找到许多新的模块,包括MySQL模块:

openSUSE 12.1下如何搭建Web服务器
MYSQL显示

openSUSE 12.1下安装phpMyAdmin

7. 安装phpMyAdmin

phpMyAdmin是一个网络接口,通过它可以管理你的MySQL数据库。

phpMyAdmin的可安装如下:

yast2 -i phpMyAdmin

为了确保我们稍后通过ISPConfig创建的所有网站访问phpMyAdmin的可以和登录使用phpmyadmin(http://www.example.com/phpmyadmin)和phpMyAdmin(如http://www.example.com/phpMyAdmin),打开/ etc/apache2/conf.d/phpMyAdmin.conf文件设置

vi /etc/apache2/conf.d/phpMyAdmin.conf

并开始添加以下两个别名:

openSUSE 12.1下如何搭建Web服务器
设置别名

重新启动Apache:

systemctl restart apache2.service

在地址栏输入http://192.168.0.100/phpMyAdmin/:你就可以访问phpMyAdmin了。

openSUSE 12.1下如何搭建Web服务器

感谢各位的阅读!关于“openSUSE 12.1下如何搭建Web服务器”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

推荐阅读:
  1. opensuse13.1(x64) ibus 添加五笔失败
  2. openSUSE的Spectre缓解方法导致性能下降

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

opensuse web服务器

上一篇:Nginx反向代理和proxy_cache缓存如何搭建CDN服务器

下一篇:innobackupex的备份和恢复是怎么样的

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》