网站/WordPress从虚拟主机搬家到VPS上

拖了一个月终于着手并且完成了。其实没有什么难的。但是因为我对Linux的了解非常局限,还是花了一番功夫,同时学了很多东西,在这里记一下。没有试图写一篇“手把手教你搬WP”,只是记录一些我觉得有帮助的东西,希望做同样的事情的且同样不是那么牛逼的Linux学习者们有用:)

虽说是WordPress搬家,但是任何一个小型网站搬家都差不多这样了吧,嘿嘿。

如果用cPanel和MySQLAdmin之类的东西可能就很傻瓜,但是第一cPanel太贵了(竟然要425多刀一年,我都笑了),第二VPS都买了必须必须要抓住每一个学Linux的机会啊。

过程如下(断断续续弄了好几天…):

环境

虚拟主机和VPS都是host2ez的,最牛逼的主机提供商。系统是CentOS Linux 5.6,apache(现在改名叫httpd)已经装好了,再装

yum php mysql mysql-server

就成。

文件

这个简单,cPanel把虚拟主机上文件打包,VPS上wget下来就好。WP的独立性做的好,文件路径改变不会有什么问题。备份用的插件BackUpWordpress倒因为出问题了,不能识别路径,我直接禁用掉了,VPS嘛马上弄个备份方案还不容易,不需要用WP的插件了。在[wordpress path]/wp_config.php里把信息改一下,数据库部分的怎么改见下面。

数据库

对数据库命令不了解的同学建议先看一下mysql的教程。我不能把所有操作都写出来…这次弄这个还学了不少数据库的东西…tutorial很容易搜到,我觉得有一个比较好的命令列表点 这里,里面包括了所有常用的命令。

在虚拟主机的cPanel – mysqladmin里备份出.sql文件,传上VPS,导入文件的命令是

mysql – u user_name -p database_name < file_name.sql

很多地方写的-p后面跟密码,我用的版本-p后面不跟东西,回车以后才提示输密码,可能是新版本不提倡显式输入密码了吧。非要用的话就–password=”xxxxxx”

如果你导出文件选的是整个mysql,需要打开文件把database”information_schema”部分删掉,否则会失败,这个db貌似是mysql自己的,不能改..不懂

之后要建立一个用户并给此用户分配使用相应db的权限,虽然我们也可以直接把root用户写进wp_config.php但是稍微有点安全意识的程序员都不会想要这么做的…虽然权限没什么大不了的,但是名字叫root就是不行! 所以进数据库:

mysql -u root -p

进去以后添加用户:

mysql> create user 'username'@'localhost' identified by 'mypass';

分配权限:

mysql> grant all privileges on databasename.* to username@localhost;
mysql> flush privileges;

然后就把这个用户甩给Wordpress啦(编辑wp_config.php)

测试的时候有一些问题

上面完了就能http进vps的ip看到博客了,但是不要去点任何东西…因为数据库里“本站”的地址还是原来的域名,这样如果你原来的网站还开着那么随便点个链接就进到原来网站了,如果没开那就can’t find page啦。

而且因为没法进后台改,所以只好进mysql改了

mysql> use viaxlcom_viaxlcom;
mysql> select * from wp_options where option_value rlike "^http";
+-----------+---------+-------------+----------------------------+----------+
| option_id | blog_id | option_name | option_value               | autoload |
+-----------+---------+-------------+----------------------------+----------+
|         2 |       0 | siteurl     | http://axlarts.com/blog      | yes      |
|        39 |       0 | home        | http://axlarts.com           | yes      |
|        41 |       0 | ping_sites  | http://rpc.pingomatic.com/ | yes      | 
+-----------+---------+-------------+----------------------------+----------+
3 rows in set (0.06 sec)
update wp_options set option_value="http://12.34.56.78/blog" where option_id=2;
update wp_options set option_value="http://12.34.56.78" where option_id=39;

这样就把VPS上的网站地址改成本身的IP了。

————————————-
另外我发现一些插件会出现权限问题,比如JW player(放flv视频用的插件),没法启用插件因为提示不能写目录,我整个www目录都是755权限,设置成777以后可以开启了,然后再弄回来。这个问题解决了但是原因一直不知道,直到我因为另一个问题搜了一下才搞明白。

另一个问题是:更新插件update的时候会提示我输入ftp帐号,以前没这事啊,于是我就去装了个vsftpd(ftp的服务端),设置好能更新了,但是为什么?后来搜到这篇文章 <Auto Update WordPress Without FTP> 解决了ftp的问题并且意识到上面的问题也和这个有关系,即因为目录的owner不是httpd,所以网站脚本没有对文件操作的权限。

/var/www目录的owner要设置成httpd的运行者(可以用ps aux或者top命令查看),可能是www,apache或者nobody或者其他的。我的是apache,所以在chown apache:apache /var/www -R之后update就不用输ftp了,我立刻关了vsftpd依然ok,可见之前是绕了弯子了,没权限还用ftp操作文件…

绑域名

进godaddy面板直接改A地址就好了,没有别的要操作的。

但是因为我本来虚拟主机上就放了两个网站,所以怎么在一个VPS上绑定多个域名多个网站?之前用cPanel是傻瓜操作,没有怎么弄?这个我也弄了好半天最终解决了,马上再写一篇单独说吧

好啦好啦,到此结束,路人有问题可以在下面留言~

22,268 thoughts on “网站/WordPress从虚拟主机搬家到VPS上

  1. Derekdialo

    Reading this with my morning coffee turned into reading the related posts with my morning coffee, and a stop at xiaofzgm stretched the morning further, content that pulls breakfast into a reading session rather than just accompanying it is content that has earned a higher claim on my attention than the average article does.

    Reply
  2. mejdynarodnie plateji_gyka

    Нашёл интересный материал по этому вопросу — где предлагают адекватные условия для международных платежей. Вот здесь всё по полочкам расписано: оплата за границу через агента оплата за границу через агента Основной вывод, который я сделал — курс конвертации может существенно отличаться. Стоит учитывать, что любой международный перевод — имеет свои нюансы в зависимости от выбранного способа. Также стоит отметить — прежде чем отправлять средства имеет смысл изучить актуальные тарифы. В противном случае можно получить менее выгодные условия. Резюмируя — лучше заранее разобраться в вопросе перед любой отправкой средств.

    Reply
  3. 1xbet app_rgpn

    J’ai essayé plusieurs sites mais rien n’y faisait. Je n’arrivais pas à trouver la bonne version sur le Play Store. J’ai vérifié les dernières mises à jour pour lancer le processus sans erreur. J’ai finalement trouvé la bonne source et je voulais vous partager tous les détails, vous pouvez consulter les informations à jour ici: 1xbet android http://www.mameauto.com. En résumé, laissez-moi vous expliquer — l’application mobile fonctionne parfaitement bien.

    les mises à jour se font automatiquement. J’ai testé plusieurs apps mais celle-ci est la meilleure — c’est de loin l’application la plus fluide. Bon courage à tous…

    Reply
  4. Ignaciohaw

    Thanks for the breakdown, it gave me a clearer picture of something I had been confused about for a while now, and a stop at allqyio closed the remaining gaps in my understanding nicely, no need to hunt around twenty other articles to put the pieces together which is a real time saver.

    Reply
  5. TrentPem

    Solid post, the structure is easy to follow and the language stays simple even when the topic gets a bit more involved, and a look at 2xrb7pd7 kept that same standard going, so I left feeling like the time spent here was actually worth something for once which is rare lately.

    Reply
  6. 1xbet app_kfsr

    Je cherchais une application mobile de qualité pour mes paris. Tout le monde donnait des liens différents, impossible de s’y retrouver. Après avoir suivi les étapes dans le bon ordre, tout a fonctionné. J’ai finalement trouvé la bonne source et je voulais vous partager tous les détails, vous pouvez consulter les informations à jour ici: 1xbet télécharger 1xbet télécharger. Bref, ce que je voulais vous dire — l’appli tourne super bien sur mon téléphone.

    Je n’ai eu aucun problème lors du téléchargement. Je vous fais part de mon retour d’expérience — c’est sans doute l’application la plus performante du marché. Bonne chance à toutes et tous…

    Reply
  7. 1xbet app_ngsr

    Ça faisait un bail que je voulais tester cette plateforme. Je n’arrivais pas à mettre la main sur la version officielle. J’ai vérifié les dernières mises à jour pour lancer le processus sans erreur. J’ai finalement trouvé la bonne source et je voulais vous partager tous les détails, vous pouvez consulter les informations à jour ici: télécharger 1xbet ios sans app store télécharger 1xbet ios sans app store. Voilà, pour être clair net et précis — la dernière version est hyper fluide et agréable à utiliser.

    l’installation était rapide comme l’éclair. Je vous fais part de mon retour d’expérience — c’est sans doute l’application la plus performante du marché. Bonne chance à toutes et tous…

    Reply
  8. BrendanFuh

    Useful enough to recommend to several people I know who would appreciate it, and a stop at dobt added more material I will pass along too, the kind of writing that earns word of mouth is the kind that actually delivers on its promises which is what this site does without any drama or fanfare attached.

    Reply
  9. BlakeArtem

    Most posts I read end up forgotten within a day but this one is sticking, and a look at kpsce extended that lingering effect, content that survives the immediate moment of reading rather than evaporating is content with genuine retention quality and this site has been producing memorable pieces at a rate notable across my reading.

    Reply
  10. DavidPap

    Felt no urge to argue with the conclusions even though I started the post slightly skeptical, and a look at sjzb91d maintained that pattern, writing that earns agreement through clarity of argument rather than rhetorical pressure is the kind I find most persuasive and the kind I want to read more of these days.

    Reply
  11. DarylLox

    If I had to summarise the editorial sensibility of this site in a few words it would be careful and human, and a look at administrativea extended that summary feeling, capturing the essence of a sites approach in brief is hard but this site has a clear enough identity that the summary comes naturally enough.

    Reply
  12. 1xbet app_uepn

    Ça fait longtemps que je voulais tester cette plateforme. Je n’arrivais pas à trouver la bonne version sur le Play Store. Après avoir suivi les étapes dans le bon ordre, tout a fonctionné. J’ai finalement trouvé la bonne source et je voulais vous partager tous les détails, vous pouvez consulter les informations à jour ici: télécharger 1xbet inscription http://www.mameauto.com. Bref, ce que je voulais dire — après l’avoir installée sur mon téléphone, j’ai été agréablement surpris.

    Je n’ai rencontré aucun problème lors du téléchargement. Pour être honnête, c’est la plus fiable que j’ai trouvée — ne perdez plus votre temps ailleurs. Je vous souhaite bonne chance et beaucoup de gains…

    Reply
  13. mejdynarodnie plateji_qlsn

    Решил проблему только когда наткнулся — где условия адекватные, а не грабёж для международных транзакций. В одном обсуждении попался дельный совет: агент по международным платежам https://mezhdunarodnye-platezhi-kap.ru Самое главное, что я вынес — курс конвертации часто занижают. Потому что любой подобный трансграничный платёж — это постоянный риск переплатить. Вот ещё важный момент — до любой операции с валютой сравните эффективный курс. В противном случае легко попасть на лишние траты. Короче — не ленитесь проверять информацию перед любой отправкой.

    Reply
  14. 1xbet app_bcpn

    Ça fait longtemps que je voulais tester cette plateforme. Tout le monde donnait des adresses différentes, je ne savais plus qui croire. J’ai vérifié les dernières mises à jour pour lancer le processus sans erreur. J’ai finalement trouvé la bonne source et je voulais vous partager tous les détails, vous pouvez consulter les informations à jour ici: xbet apk xbet apk. Voilà, pour être clair — la dernière version est vraiment bien conçue.

    les mises à jour se font automatiquement. Je vous parle de mon expérience personnelle — croyez-moi, vous ne serez pas déçus, essayez-la. Je vous souhaite bonne chance et beaucoup de gains…

    Reply
  15. Wendelltaf

    If quality blog writing is dying as people sometimes claim then this site is one piece of evidence that it has not died yet, and a look at lamdepcongvanesa extended that evidence, the broader cultural question about online writing has empirical answers in specific sites and this one is contributing to a more optimistic answer overall.

    Reply
  16. Garrettnus

    Appreciated how the writer anticipated the questions a reader might have along the way, and a stop at coyotehopper continued that thoughtful approach, you can tell when content has been edited with the reader in mind versus just published as a first draft and this is clearly the former approach across what I read.

    Reply
  17. Dariustet

    After reading several posts back to back the consistent voice across them is impressive, and a stop at 2arpd7 continued that voice consistency, sites that maintain a single coherent voice across many pieces by potentially many writers represent serious editorial discipline and this one has clearly developed the institutional consistency needed for that.

    Reply
  18. Samuelutede

    Really nice to see things explained without overcomplicating the topic, the words flow naturally and stay easy to follow, and a short visit to a9334567 only added to that experience because the same simple approach is used across the rest of the page too without any change in tone.

    Reply
  19. Iansoark

    Reading this in a relaxed evening setting was a small pleasure, and a stop at nabyteknachalupu extended the pleasant evening reading, content that fits the tone of relaxed time without becoming forgettable is what I look for in evening reading and this site has the right tone for that particular slot in my daily reading routine.

    Reply
  20. GuySteat

    Now I want to find more sites like this but I suspect they are rare, and a look at hollycattail extended that thought, the few sites that meet this quality bar are precious specifically because they are rare and finding others like them is one of the ongoing projects of careful internet curation across the years.

    Reply
  21. CristianLarne

    Reading this back to back with a similar piece elsewhere made the quality difference obvious, and a stop at qkzgygoyegfyprd only widened the gap, comparing content side by side is a useful exercise and the gap between this site and average competitors in the space is large enough to be noticeable from the first paragraph.

    Reply
  22. BrendanFuh

    Honestly enjoyed every minute spent here, that is not something I say lightly, and a look at dobt confirmed I will be back, the bar for spending time online is high for me these days but this site clears it without effort which is high praise indeed from this reader who is usually rather demanding.

    Reply
  23. TrentPem

    A piece that respected the reader by not over explaining the obvious, and a look at 2xrb7pd7 continued that calibrated approach, finding the right level of explanation is one of the harder editorial calls and this site has clearly thought carefully about what readers will already know versus what they need help with consistently.

    Reply
  24. Derekdialo

    Now planning to write about the topic myself eventually using this post as a reference, and a look at xiaofzgm would also serve in that future piece, content that becomes raw material for my own writing rather than just informing my reading is content with multiplicative value and this site is generating that multiplicative effect.

    Reply
  25. mejdynarodnie plateji_qdka

    Вот решил поделиться информацией — где предлагают адекватные условия для международных переводов. Нашёл подробный анализ ситуации: онлайн перевод денег за границу https://mezhdunarodnye-platezhi-fra.ru Суть в следующем — не все сервисы одинаково прозрачны. Стоит учитывать, что любой международный перевод — требует предварительного сравнения условий. Дополнительная информация — перед подтверждением перевода стоит проверить итоговую сумму. В противном случае можно получить менее выгодные условия. Резюмируя — лучше заранее разобраться в вопросе перед любой отправкой средств.

    Reply
  26. DavidPap

    Liked the way the post handled the final paragraph, no neat bow but no abrupt cutoff either, and a stop at sjzb91d continued that thoughtful ending pattern, endings are hard and most blog writers either over engineer them or skip them entirely and this site has clearly figured out a sustainable middle approach.

    Reply
  27. mejdynarodnie plateji_ibka

    Вот решил поделиться информацией — где предлагают адекватные условия для перевода денег за границу онлайн. Нашёл подробный анализ ситуации: комиссия за международный перевод https://mezhdunarodnye-platezhi-fra.ru Ключевой момент, на который стоит обратить внимание — не все сервисы одинаково прозрачны. Дело в том, что любой международный перевод — требует предварительного сравнения условий. Также стоит отметить — прежде чем отправлять средства рекомендуется сравнить несколько вариантов. В противном случае можно столкнуться с неожиданными расходами. Резюмируя — необходимо проверять информацию перед любой отправкой средств.

    Reply
  28. LorenzoInder

    Now realising the post solved a small problem I had been carrying for weeks, and a look at 2c9wvd extended that problem solving function, content that connects to specific unresolved questions in my own life rather than just providing general interest is content with real practical impact and this site is providing that practical value.

    Reply
  29. LincolnPlete

    A piece that took its time without dragging, and a look at iiiaegotuerbqld kept the same patient pace, the difference between unhurried and slow is a fine editorial distinction and this site has clearly found the unhurried side without slipping into the slow side which would have lost me as a reader quickly otherwise.

    Reply
  30. Samuelutede

    A relief to read something where I did not have to fact check every claim mentally, and a look at a9334567 continued that reliable feeling, sites where I can lower my guard and trust the content are rare and this one is earning that trust paragraph by paragraph through consistent careful work behind the scenes.

    Reply
  31. AdamVIank

    Just want to say thank you for putting this together, posts like these make searching online actually worth it sometimes, and a quick look at syzbh4 kept that going, useful and easy to read without any of the tricks that ruin most blog comment sections lately on the wider open web.

    Reply
  32. CristianLarne

    A piece that reads as if the writer trusted readers to fill in obvious gaps, and a look at qkzgygoyegfyprd continued that respectful approach, content that does not over explain what the reader can infer is content that respects intelligence and this site has clearly chosen to write to capable readers rather than to the lowest common denominator.

    Reply
  33. mejdynarodnie plateji_blsn

    Слушайте, вот уже который раз убеждаюсь — где условия адекватные, а не грабёж для международных переводов. В одном обсуждении попался дельный совет: международные системы перевода денег международные системы перевода денег Короче, если по факту — курс конвертации часто занижают. Ну сами подумайте любой очередной международный перевод — это реальная финансовая лотерея. Вот ещё важный момент — до любой операции с валютой сравните эффективный курс. Без этого легко остаться в минусе только на конвертации. Короче — стоит разобраться заранее перед любой отправкой.

    Reply
  34. Ronhip

    Bookmark added with a small note about why, and a look at dokomohikaritukiryoukinivc prompted another bookmark with another note, the bookmarks I annotate are the ones I expect to return to deliberately rather than stumble into and this site is generating annotated bookmarks at a higher rate than my usual content sources by some margin.

    Reply
  35. Oscarjak

    Glad the writer did not feel compelled to cover every possible angle of the topic, focus is a virtue, and a stop at yundizhi02 reflected the same disciplined scope, knowing what to leave out is half of what makes good writing good and this post has clearly been edited with that principle in mind.

    Reply
  36. FernandoSlind

    Vague feelings of recognition kept surfacing as I read because the writing names things I have been thinking, and a look at pujckaprokazdeho produced more of those recognition moments, content that gives shape to private intuitions is content that makes me feel less alone in my own thinking and this site has that effect.

    Reply
  37. 1xbet app_zset

    J’ai testé plusieurs plateformes sans jamais être satisfait. Tout le monde recommandait des adresses différentes, dur de s’y retrouver. J’ai vérifié les dernières mises à jour pour lancer le processus sans erreur. J’ai finalement déniché la bonne source et je voulais vous partager tous les détails, vous pouvez consulter les informations à jour ici: 1xbet apk 1xbet apk. En deux mots, laissez-moi vous expliquer — après l’avoir installée, j’ai été agréablement surpris.

    Je n’ai rencontré aucun problème lors du téléchargement. Je vous partage mon expérience personnelle — ne perdez plus votre temps avec d’autres sites. Je vous souhaite plein de réussite et de bons gains…

    Reply
  38. GuySteat

    Closed it feeling I had taken something away rather than just consumed something, and a stop at hollycattail extended that taking away feeling, the difference between content I extract value from and content I just pass through is something I track informally and this site is consistently in the value extraction column for me.

    Reply
  39. Dariustet

    Felt slightly impressed without being able to point to one specific reason, and a look at 2arpd7 continued that diffuse positive feeling, when content works at a level you cannot easily articulate the writer is doing something with craft rather than just delivering information and that is something I have learned to recognise.

    Reply
  40. 1xbet app_jzMl

    Je cherchais une application mobile pour mes paris sportifs. Télécharger un fichier fiable devenait vraiment compliqué. Après avoir suivi les étapes dans le bon ordre, tout a fonctionné. J’ai finalement déniché la bonne source et je voulais vous partager tous les détails, vous pouvez consulter les informations à jour ici: download 1xbet apk for android download 1xbet apk for android. Voilà, pour être clair — après l’avoir installée, j’ai été agréablement surpris.

    Je n’ai rencontré aucun problème lors du téléchargement. Je vous partage mon expérience personnelle — ne perdez plus votre temps avec d’autres sites. Bonne chance à tous…

    Reply
  41. 1xbet app_ghpn

    Je cherchais une application mobile fiable pour mes paris. Je n’arrivais pas à trouver la version officielle sur le Play Store. J’ai vérifié les dernières mises à jour pour lancer le processus sans erreur. J’ai finalement déniché la bonne source et je voulais vous partager tous les détails, vous pouvez consulter les informations à jour ici: 1xbet telechargement application android 1xbet telechargement application android. Bref, ce que je voulais vous dire — la dernière version est super fluide et réactive.

    Je n’ai eu aucun souci lors du téléchargement. Je vous parle de mon expérience personnelle — c’est clairement l’application la plus performante. Bonne chance à tous…

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *