search for: jfwiki

Displaying 9 results from an estimated 9 matches for "jfwiki".

2015 Aug 15
2
wordpess can't connect to DB but mediawiki can
> > "Use" that db and then issue: > select * from db where Db='jfwiki' or Db='jokefire' order by Host; Well yeah. I used the mysql database before I issued that command. MariaDB [(none)]> use mysql Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed Th...
2015 Aug 15
2
wordpess can't connect to DB but mediawiki can
...specific to centos. Sometimes. :) Really seems to depend... Incidentally I am using centos on all hosts: #cat /etc/redhat-release CentOS Linux release 7.0.1406 (Core) OK now that that's out of the way, for some reason I don't seem to have an entry in my db database for either jokefire or jfwiki: MariaDB [mysql]> select * from db where Db like 'jfwiki' or Db like 'jokefire'; Empty set (0.00 sec) Not sure why that would be the case. They're definitely there on this database server: MariaDB [mysql]> show databases; +--------------------+ | Database | +...
2015 Aug 16
2
wordpess can't connect to DB but mediawiki can
...ethundr at gmail.com> > > To: CentOS mailing list <centos at centos.org> > > Subject: Re: [CentOS] wordpess can't connect to DB but mediawiki > can > > > >> > >> "Use" that db and then issue: > >> select * from db where Db='jfwiki' or Db='jokefire' order by > >> Host; > > > > > > Well yeah. I used the mysql database before I issued that command. > > > > > > MariaDB [(none)]> use mysql > > Reading table information for completion of table and column names &gt...
2015 Aug 16
0
wordpess can't connect to DB but mediawiki can
...0400 > From: Tim Dunphy <bluethundr at gmail.com> > To: CentOS mailing list <centos at centos.org> > Subject: Re: [CentOS] wordpess can't connect to DB but mediawiki can > >> >> "Use" that db and then issue: >> select * from db where Db='jfwiki' or Db='jokefire' order by >> Host; > > > Well yeah. I used the mysql database before I issued that command. > > > MariaDB [(none)]> use mysql > Reading table information for completion of table and column names > You can turn off this feature to g...
2015 Aug 16
0
wordpess can't connect to DB but mediawiki can
...;> > To: CentOS mailing list <centos at centos.org> >> > Subject: Re: [CentOS] wordpess can't connect to DB but mediawiki >> can >> > >> >> >> >> "Use" that db and then issue: >> >> select * from db where Db='jfwiki' or Db='jokefire' order by >> >> Host; >> > >> > >> > Well yeah. I used the mysql database before I issued that command. >> > >> > >> > MariaDB [(none)]> use mysql >> > Reading table information for completi...
2015 Aug 15
0
wordpess can't connect to DB but mediawiki can
...seems to depend... > > Incidentally I am using centos on all hosts: > ># cat /etc/redhat-release > CentOS Linux release 7.0.1406 (Core) > > OK now that that's out of the way, for some reason I don't seem to > have an entry in my db database for either jokefire or jfwiki: > > MariaDB [mysql]> select * from db where Db like 'jfwiki' or Db > like 'jokefire'; > Empty set (0.00 sec) > > Not sure why that would be the case. They're definitely there on > this database server: > > MariaDB [mysql]> show databases; &g...
2015 Aug 15
2
wordpess can't connect to DB but mediawiki can
...ical. Here's the media wiki config first since that one's working: ## Database settings $wgLBFactoryConf['class'] = 'LBFactorySimple'; $wgDBtype = "mysql"; $wgDBservers = ''; $wgDBserver = "db.example.com"; $wgDBssl = true; $wgDBname = "jfwiki"; $wgDBuser = "admin_ssl"; $wgDBpassword = "secret"; And here's what the wordpress database connection settings look like since they are not: /** MySQL database username */ define('DB_NAME', 'jokefire'); define('DB_USER', 'admin_ssl');...
2012 Mar 05
5
cron job not running
hello list, I am attempting to backup a centos 5.4 (x86_64) server running mysql with a cron job. Here's how the cron job looks: [root at cloud:/home/bluethundr/backupdb] #crontab -l * 3 * * * /usr/bin/mysqldump jfwiki > /home/bluethundr/backupdb/wiki-$(date +%Y%m%d).sql However if I run the command from the command line it seems to work fine. If I grep syslog for cron this is what I've found: Mar 4 22:12:13 domU-12-31-38-07-49-CC syslog-ng[1174]: Log statistics; processed='center(queued)=16141...
2015 Aug 15
0
wordpess can't connect to DB but mediawiki can
...9;re using centos, which isn't obvious. that said ...] I would start by looking at the access control entries for the wp and mw dbs, (in the mysql.db table). Based on what you are trying here, there should be matching entries in that table for the "Db"s "jokefire" and "jfwiki" (e.g., for the Host as well as the various _priv fields). select * from db where Db='jokefire' or Db='jfwiki' order by Host\g There may be something else going on, but without knowing that the access control is as it should be there's not much value in speculating.