博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos 下 安装 xmapp
阅读量:5793 次
发布时间:2019-06-18

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

hot3.png

下载 xmapp for linux 文件

xampp-linux-x64-7.1.10-0-installer.run

ftp 上传

授权

[root@Dralen ~]# cd /usr [root@Dralen usr]# ls bin  etc  games  include  lib  lib64  libexec  local  sbin  share  src  tmp  xmapp [root@Dralen usr]# cd xmapp [root@Dralen xmapp]# ll 总用量 134356  -rw-r--r--. 1 root root 137577889 10月 30 17:06 xampp-linux-x64-7.1.10-0-installer.run [root@Dralen xmapp]# chmod a+x xampp-linux-x64-7.1.10-0-installer.run [root@Dralen xmapp]#  [root@Dralen xmapp]#

a+x 所有权

安装

[root@Dralen xmapp]# ./xampp-linux-x64-7.1.10-0-installer.run----------------------------------------------------------------------------Welcome to the XAMPP Setup Wizard.----------------------------------------------------------------------------Select the components you want to install; clear the components you do not want to install. Click Next when you are ready to continue.XAMPP Core Files : Y (Cannot be edited)XAMPP Developer Files [Y/n] :yIs the selection above correct? [Y/n]: ----------------------------------------------------------------------------Installation DirectoryXAMPP will be installed to /opt/lamppPress [Enter] to continue:----------------------------------------------------------------------------Setup is now ready to begin installing XAMPP on your computer.Do you want to continue? [Y/n]: ----------------------------------------------------------------------------Please wait while Setup installs XAMPP on your computer. Installing 0% ______________ 50% ______________ 100% #########################################----------------------------------------------------------------------------Setup has finished installing XAMPP on your computer.

启动

[root@Dralen xmapp]# /opt/lampp/lampp startStarting XAMPP for Linux 7.1.10-0...XAMPP: Starting Apache...already running.XAMPP: Starting MySQL.../opt/lampp/share/xampp/xampplib:行22: netstat: 未找到命令ok.XAMPP: Starting ProFTPD.../opt/lampp/share/xampp/xampplib:行22: netstat: 未找到命令ok.

设置http环境密码 ftp密码 mysql密码

[root@Dralen lampp]# /opt/lampp/lampp securityXAMPP:  Quick security check...XAMPP:  MySQL is accessable via network. XAMPP: Normaly that's not recommended. Do you want me to turn it off? [yes] XAMPP:  Turned off.XAMPP: Stopping MySQL...ok.XAMPP: Starting MySQL.../opt/lampp/share/xampp/xampplib:行22: netstat: 未找到命令ok.XAMPP:  The MySQL/phpMyAdmin user pma has no password set!!! XAMPP: Do you want to set a password? [yes] XAMPP: Password: XAMPP: Password (again): XAMPP:  Setting new MySQL pma password.XAMPP:  Setting phpMyAdmin's pma password to the new one.XAMPP:  MySQL has no root passwort set!!! XAMPP: Do you want to set a password? [yes] XAMPP:  Write the password somewhere down to make sure you won't forget it!!! XAMPP: Password: XAMPP: Password (again): XAMPP:  Setting new MySQL root password.XAMPP:  Change phpMyAdmin's authentication method.XAMPP:  The FTP password for user 'daemon' is still set to 'xampp'. XAMPP: Do you want to change the password? [yes] XAMPP: Password: XAMPP: Password (again): XAMPP: Reload ProFTPD...ok.XAMPP:  Done.

设置防火墙 端口

firewall-cmd --zone=public --add-port=80/tcp --permanentfirewall-cmd --reload

至此 外网可以访问了

转载于:https://my.oschina.net/u/3277181/blog/1558761

你可能感兴趣的文章
U盘启动安装Linux
查看>>
基于HttpWebRequest的通用请求和响应处理
查看>>
Tomcat 怎样防止跨站请求伪造(CSRF)
查看>>
Nginx域名访问处理过程
查看>>
centos按日期分割tomcat/logs/catalina.out文件
查看>>
关于TDD、BDD和DDD的一些看法
查看>>
mysql 创建用户时候报错 Unknown column 'plugin' in 'mysql.user'
查看>>
10.4通过生成器yield实现伪并发
查看>>
C#下用P2P技术实现点对点聊天
查看>>
【干货】一篇文章让你了解大数据挖掘技术
查看>>
【安全牛学习笔记】XSS-简介、跨站脚本检测和常见的***利用手段2
查看>>
yum源的配置方法
查看>>
springboot整合vue小试牛刀
查看>>
MySQL参数优化测试建议
查看>>
组策略部署软件之三:发布非MSI程序包-制作和部署ZAP包
查看>>
整理Java基础知识--修饰符
查看>>
MySQL高可用之MHA
查看>>
使用java代码提交Spark的hive sql任务,run as java application
查看>>
利用bash script 批量添加NAGIOS监控服务器的配置文件.
查看>>
Linux系统服务的控制详细教程
查看>>