我是Ubuntu的新手。最近我使用的是Ubuntu 12.10。当我使用窗口xp时,我在XAMPP中使用了WordPress。在XAMPP上的windows xp中安装WordPress是非常简单的,只复制'htdocs'文件夹中下载的WordPress文件并更改一些'wpconfig.php',然后准备使用。现在在Ubuntu 12.10中,我使用LAMPP,执行与windows xp相同的过程,但不起作用。
任何建议......
答案 0 :(得分:3)
1)运行应用程序“终端”
输入以下内容:
cd /var/www
您现在处于XAMP的htdocs
2)现在输入以下内容:
sudo wget http://wordpress.org/latest.tar.gz
您应该可以观看Ubuntu连接并下载wordpress。
3)下载后输入:
ls
您应该会在其中看到名为latest.tar.gz
的文件。
4)输入以下内容:
tar -xzvf latest.tar.gz
此命令将解压缩刚刚下载的压缩文件。
5)再次输入:
ls
你应该看到一个名为“wordpress”的目录。
您现在可以通过转到
来访问您的wordpress安装http://localhost/wordpress/wp-admin/install.php
我希望这会对你有所帮助。
答案 1 :(得分:2)
cd Desktop
sudo tar -xzvf latest.tar.gz
将下载的文件解压缩到原始文件
sudo mv wordpress /opt/lampp/htdocs
将'wordpress'文件移入 的/ opt / LAMPP / htdocs中
答案 2 :(得分:0)
我在这里找到了一个关于在Ubuntu服务器上安装WordPress的精彩教程http://development.solepop.com/setting-up-wordpress-on-ubuntu/。
先决条件:
您应该从您选择的托管服务提供商那里获得一个简单的Ubuntu服务器,并具有root访问权限。您还应该通过DNS将您的域映射到服务器的IP地址。
步骤1.确保您的盒子已安装灯泡堆栈。在服务器框中以root用户身份登录,然后首先使用以下命令更新软件包:
sudo apt-get update
然后安装灯泡服务器:
sudo apt-get install lamp-server^
**确保最后有(^)
系统将提示您为root用户提供mysql密码。继续输入并在下一个屏幕中确认密码。
步骤2.设置mysql数据库
mysql -u root -p
系统会提示您输入密码。插入您在步骤1中指定的密码。然后您可以访问MySQL命令行,您可以在其中创建MySQL数据库和用户:
CREATE DATABASE wordpressblog;
CREATE USER wordpressblog@localhost IDENTIFIED BY '<set a password for the new database user>';
GRANT ALL PRIVILEGES ON wordpressblog.* TO wordpressblog@localhost;
FLUSH PRIVILEGES;
exit
步骤3.按顺序输入以下内容(确保替换为您的域名地址,在我们的案例中为solepop.com):
mkdir -p /srv/www/<your domain>/src/
mkdir -p /srv/www/<your domain>/public_html/
cd /srv/www/<your domain>/src/
wget http://wordpress.org/latest.tar.gz
tar -zxvf /srv/www/<your domain>/src/latest.tar.gz
cp -R /srv/www/<your domain>/src/wordpress/* /srv/www/<your domain>/public_html/
rm -rf /srv/www/<your domain>/src/wordpress/
sudo chown -R www-data:www-data /srv/www/<your domain>/public_html
我们在这里做的很多就是我们创建了一个src文件夹,我们下载了最新版本的WordPress。在我们的src文件夹中解压缩安装后,我们将所有内容从src文件夹复制到我们的public_html文件夹中。复制完所有内容后,我们从src文件夹中删除了下载的WordPress文件。最后,我们给了apache public_html文件夹的所有权。
步骤4.为public_html文件夹和文件提供适当的权限:
find /srv/www/<your domain>/public_html -type d -exec chmod 755 {} +
find /srv/www/<your domain>/public_html -type f -exec chmod 644 {} +
步骤5.转到apache2中启用站点的文件夹。
cd /etc/apache2/sites-enabled
步骤6.清除000-default.conf文件中的所有内容,然后键入以下内容(为所有区域插入您的域名):
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName <your domain>
<Directory />
AllowOverride all
Require all granted
</Directory>
DocumentRoot /srv/www/<your domain>/public_html/
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
步骤7.启用mod重写(对永久链接起作用很重要)并重启apache。
a2enmod rewrite
service apache2 restart
步骤8.从浏览器转到您的域。
点击Let's Go
step 1 http://www.solepop.com/wp-content/uploads/2015/01/Screen-Shot-2015-01-12-at-4.37.52-PM.png
填写第2步中的数据库信息。
step 2 http://www.solepop.com/wp-content/uploads/2015/01/Screenii-Shot-2015-01-12-at-4.42.06-PM.png
单击“运行安装”。
step 3 http://www.solepop.com/wp-content/uploads/2015/01/Screen-Shot-2015-01-12-at-4.42.24-PM.png
填写有关您博客的基本信息。
step 4 http://www.solepop.com/wp-content/uploads/2015/01/Screen-Shot-2015-01-12-at-4.42.39-PM.png
安装完成......
step 5 http://www.solepop.com/wp-content/uploads/2015/01/Screen-Shot-2015-01-12-at-8.27.38-PM.png
安装完成后,请在浏览器中访问您的域名,然后您应该会看到自己的WordPress博客。
step 6 http://www.solepop.com/wp-content/uploads/2015/01/Screen-Shot-2015-01-12-at-8.27.53-PM.png
答案 3 :(得分:0)
答案 4 :(得分:-2)
Process of installation of WordPress in Ubuntu:
安装Web服务器:Web服务器是我们用于在Web浏览器上提供Web页面的前端。我们将安装Apache2作为 我们服务器上的网络服务器。
设置MySQL服务:MySQL是用于存储数据的数据库。另一种选择是使用Maria DB。但既然我们有 选择了MySQL。
安装PHP及其模块安装完所有上述服务器和软件包后,Ubuntu服务器现已准备好托管WordPress。
在/ var / www / html /中下载WordPress并解压缩。
- 醇>
这是配置WordPress的最后一步。