拖了一个月终于着手并且完成了。其实没有什么难的。但是因为我对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是傻瓜操作,没有怎么弄?这个我也弄了好半天最终解决了,马上再写一篇单独说吧
好啦好啦,到此结束,路人有问题可以在下面留言~
Easily one of the better explanations I have read on the topic, and a stop at explorefreshthinkingpaths pushed it even higher in my mental ranking of useful resources, the kind of site that beats the average not by trying harder but by simply caring more about what it puts out daily which always shows.
Reading this prompted a small note in my reference file, and a stop at findyournextstage prompted another, the rare site that contributes useful nuggets to my own working knowledge rather than just consuming my attention is worth the time investment many times over compared to the usual pile of forgettable scroll content.
Reading this gave me something to think about for the rest of the afternoon, and after createpositiveoutcomes I had even more to mull over, the kind of post that lingers in the background of your day rather than evaporating immediately is genuinely valuable in an attention economy that punishes depth rather than rewarding it.
Worth saying that the writing carries a particular kind of authority without making any explicit claims to it, and a stop at buildlongtermstrength extended that earned authority feeling, sites that demonstrate expertise through the quality of their explanations rather than by stating credentials are sites I trust most and this site has it.
зимний комбинезон для мальчика 80 https://detskie-kombinezony-kupit.ru
Now appreciating that I did not feel exhausted after reading, and a stop at holpod extended that energising quality, content that leaves me with more attention than it consumed is rare and the gap between draining and energising content is real over the course of a typical day spent reading widely online.
bet calculator single bet calculator single .
скачать мелбет на андроид скачать мелбет на андроид
мелбет мелбет
Top notch writing, every paragraph carries weight and nothing feels like filler, and a stop at buildgrowthmomentum reflected that same care, a rare thing on the open web these days where most pages exist for clicks rather than actual reader value or anything close to that which is honestly a real shame.
Cuts through the usual marketing fluff that dominates this topic online, and a stop at irotix kept the same clean approach going, this is the kind of writing that respects the reader’s time rather than wasting it on repetitive setups before finally getting to the point at hand which is what most sites do.
Güvenli bahis deneyimi için 1xbet güncel adres adresini kullanabilirsiniz.
1xbet hesabınıza erişim sağlamak. Üyelik ve giriş süreci hızlıca tamamlanabilir. Öncelikle resmi web sitesi ziyaret edilmelidir. Güvenli bağlantı sayesinde bilgileriniz korunur.
1xbet giriş ekranına ulaşmak için sayfanın üst kısmındaki giriş butonuna tıklanmalıdır. Hatalı bilgi girişinde erişim sağlanamaz. Sahte sitelere karşı dikkatli olunması önerilir.
Yeni kullanıcılar kolayca siteye kayıt olabilirler. Bilgilerin eksiksiz ve doğru doldurulması önem taşır. Bazı durumlarda hesabınızı onaylemek için ek adımlar uygulanabilir.
Siteye giriş sonrası birçok seçenek sizleri bekler. Spor bahisleri ve canlı oyunlar kolaylıkla oynanabilir. Kampanyalar hakkında bilgi alabilir ve fırsatları yakalayabilirsiniz.
A piece that did not waste any of its substance on sales or promotion, and a look at startsmartprogress continued that pure content focus, sites that resist the urge to monetise every paragraph are increasingly rare and this one has clearly made the editorial choice to keep the writing clean from commercial intrusion which I value highly.
One of the more thoughtful posts I have read recently on this topic, and a stop at startpurposefuljourney added even more weight to that impression, this is genuinely good content that holds its own against far better known sites in the same space without trying to imitate any of them at all which I appreciate.
Working through this site has been a small antidote to the shallow content that fills most of my reading time, and a stop at buildclarityforward extended that antidote function, sites that quietly improve the average quality of my reading by being themselves are sites worth supporting through return visits and recommendations consistently.
Now adding this to a short list of sites I would defend in a conversation about the modern web, and a look at startwithclearfocus reinforced that defence list, the few sites that serve as evidence the web can still produce good things are precious and this one has clearly joined that small list of exemplary sites.
A handful of memorable phrases from this one I will probably use later, and a look at husbury added a couple more, content that contributes language to my own communication rather than just facts is content with a different kind of utility and this site is providing that linguistic utility consistently across what I read.
Worth saying that the writing carries a particular kind of authority without making any explicit claims to it, and a stop at nutmegnetwork extended that earned authority feeling, sites that demonstrate expertise through the quality of their explanations rather than by stating credentials are sites I trust most and this site has it.
Calculations vary depending on the odds format being used.
calculate double bet https://singlebetcalculatorfree.uk/bet-calculator/double/
Reading this slowly in the morning before opening email, and a stop at discovercreativepaths extended that protected attention, content that earns the prime morning reading slot before the daily distractions begin is content with elevated status and this site has earned that prime slot consistently in my recent reading habits clearly.
Reading this slowly to absorb the structure, and the structure is doing real work alongside the words, and a look at explorefreshgrowthideas maintained the same architectural quality, when sentence shapes and paragraph rhythms reinforce the meaning rather than just transporting words you know you are reading skilled work today.
Bookmark added with a small mental note that this is a site to keep, and a look at exploreideasdeeply reinforced the keep status, the verb keep rather than visit captures something about how I think about this kind of site and it is a higher tier of relationship than I have with most places online today.
Слушайте, кому актуально, свежая инфа. Сам долго ковырялся, делюсь полезной ссылкой: мелбет казино скачать на андроид.
Сам сервис реально топовый — все интуитивно понятно даже новичку. Порадовало, что трансляции матчей идут без задержек.
И еще, при регистрации дают неплохой приветственный бонус, что очень даже кстати. Что думаете?
Worth flagging that the writing rewarded a second read more than I expected, and a look at explorefreshthinkingpaths produced the same second read benefit, content with hidden depths that emerge only on careful rereading is rare in the modern blog space and this site has clearly invested in that level of compositional density throughout.
В случае если вы ищете турецкие сериалы на русском бесплатно в хорошем без долгих поисков и непроверенных площадок, обратите внимание на нашу коллекцию популярных турецких телешоу. Здесь собраны как популярные новые проекты, вместе с ними легендарные сериалы, которые любят миллионы зрителей. Зрители часто выбирают турецкие сериалы из-за захватывающих историй, ярким персонажам, атмосферным съемкам и глубоким эмоциям, которая удерживает интерес от первой до последней серии. Просмотр доступен в хорошем качестве, без сложной регистрации и лишних действий.
Glad to find something on this topic that does not start with three paragraphs of throat clearing before getting to the point, and a stop at startpurposefuljourney also dives right in, respect for the readers time shows up in small editorial choices like this and they add up to a real difference quickly.
ew single bet calculator ew single bet calculator .
Если вы ищете турецкий сериал смотреть онлайн бесплатно без траты времени и подозрительных ресурсов, оцените нашу библиотеку востребованных турецких сериалов. В каталоге доступны как самые обсуждаемые новинки последних сезонов, вместе с ними легендарные сериалы, которые любят миллионы зрителей. Поклонники предпочитают турецкие сериалы благодаря сильным сюжетам, ярким персонажам, красивым локациям и эмоциональной подаче, способной увлечь с первой серии. Смотреть любимые истории можно в высоком качестве, без длительной регистрации и дополнительных сложностей.
Took my time with this rather than rushing because the writing rewards attention, and after findyournextstage I had even more to absorb, the kind of content that pays back the patient reader rather than punishing them with empty filler is something I look for and rarely find in regular searches lately.
This makes it perfect for beginners and experienced bettors alike.
accumulator each way calculator accumulator each way calculator.
Started a draft response in my head and ended without publishing it because the post said it well enough, and a look at discoverforwardideas produced the same effect, content that satisfies my urge to add to it by being complete enough on its own is rare and represents a particular kind of editorial completeness here.
Various websites provide single bet calculator tools at no cost.
calculate double bet https://single-bet-calculator.uk/bet-calculator/double/
free bet calculator single free bet calculator single.
Such writing is increasingly rare and worth supporting through attention, and a stop at findyournextdirection extended that supportive attention across more pages, the conscious choice to spend time on sites that produce careful work rather than convenient consumption is itself a small form of patronage and this site is receiving that conscious patronage from me.
Came across this looking for something else entirely and ended up reading it through twice, and a look at buildgrowthmomentum pulled me deeper into the site than I planned, the writing has a way of holding attention without resorting to manipulative cliffhangers or vague promises that never get delivered later down the page.
Appreciated how the writer anticipated the questions a reader might have along the way, and a stop at growwithfocusedsteps 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.
how to work out a double bet https://singlebetcalculator.uk/bet-calculator/double/
These calculators enhance transparency by displaying clear profit possibilities.
accumulator betting calculator accumulator betting calculator.
Honestly thank you to whoever wrote this because it scratched an itch I had not quite been able to articulate, and a stop at startsmartprogress kept that satisfying feeling going, the kind of writing that meets unspoken needs is special and this site clearly has writers who understand their readers more than most do today.
By inputting your bet amount and odds, the calculator estimates your possible returns.
trebles in betting https://single-betcalculator.uk/bet-calculator/treble/
Even from a single post the editorial care is clear, and a stop at jebbrood extended that care across more pages, the kind of attention to quality that shows up in every paragraph is what separates serious sites from the rest and this one has clearly invested in that paragraph level attention across what I have read.
Cuts through the usual marketing fluff that dominates this topic online, and a stop at irotix kept the same clean approach going, this is the kind of writing that respects the reader’s time rather than wasting it on repetitive setups before finally getting to the point at hand which is what most sites do.
Stands apart from similar pages by actually being useful, that is high praise these days, and a look at nutmegnetwork kept that standard going, you can tell when a site is built around the reader versus around metrics and this one clearly belongs to the first category for sure based on what I read.
Glad I stumbled across this post, the explanations actually make sense without needing background knowledge to follow along, and after a stop at growstepwisely the same was true there, no assumptions about the reader just clear writing that anyone can understand from the first line right through to the end.
Beyond the topic at hand this site reads as a small ongoing project of taking writing seriously, and a look at exploreideasdeeply reinforced that project quality, sites that treat publishing as an ongoing serious practice rather than as content production for traffic are sites worth supporting and this one has clearly chosen the serious approach.
найти локацию по номеру телефона https://kak-najti-cheloveka-po-nomeru-telefona-2.ru
Reading this confirmed that the topic deserves more careful attention than it usually gets, and a stop at explorefreshgrowthideas extended that elevated framing, content that raises the appropriate weight of a subject without being preachy about it is serving a quiet but important editorial function for the broader cultural conversation about it.
Now appreciating the small but real way this post improved my afternoon, and a stop at startbuildingvision extended that small improvement effect, content that produces measurable positive impact on the texture of a reading day is content with real value and this site is producing those small positive impacts at a sustainable rate apparently.
Top quality material, deserves more attention than it probably gets, and a look at discoverforwardideas reflected the same effort across the site, a hidden gem in the modern web where most attention goes to whoever shouts loudest rather than whoever actually delivers the best content for their readers without much marketing fanfare.
нарколог круглосуточно москва нарколог круглосуточно москва