
Originally Posted by
Ozuru
Check your permissions when you uploaded. What tool do you use? Winscp?
To copy the original I used...
Code:
tar zcf gamedbd_bak.tar.gz /PWServer/gamedbd
tar zcf uniquenamed_bak.tar.gz /PWServer/uniquenamed
Then to put them back I copied them to / and used...
Code:
tar -xvzf gamedbd_bak.tar.gz
tar -xvzf uniquenamed_bak.tar.gz
and it exctracted them back into their respective folders.
I used phpmyadmin to export cpw.sql, dbo.sql, information_schema.sql, mysql.sql, performance_Schema.sql, phpmyadmin.sql, and support.sql from the old server, and then imported them appropriately into the new one.
As far as permissions go, I think that is most likely where I screwed up. I was messing around with things to set up a Samba share and one if the scripts I ran in the wrong spot and it set the permissions to everything to 755. I did try to go back and fix most of it, but I think I may still have something set wrong. (I'm still a Linux noob, I think 777 is like the equivalent of root, but I'm clueless about the rest.)
The permissions I see on everything when I use "ls -l" is "-r-xr-xr-x 1 nobody nogroup" I don't know if that's correct or not though.
And on top of all of that, now my server is freezing up for no reason. It was happening on the old machine so I thought it had to do with how screwed up I got Ubuntu and the other packages. Now it's happening on the new one and all I've done after following 343's install is to copy in the databases and import the stuff through phpmyadmin. I'm beginning to think maybe it's trying to read a database file, or write to one and can't because somewhere I've screwed up the permissions.