9
Fedora 19 e OpenSUSE passeranno da MySQL a MariaDBview story

http://www.oneopensource.it – Per chi non fosse a conoscenza di che cosa sia MariaDB, gli basti sapere che è un fork di MySQL avvenuto in seguito ad alcune mosse di Oracle per rendere lo sviluppo e la governance del progetto MySQL più chiusi. Per questo ed altri motivi quindi la codebase è stata forkata, è nato MariaDB, e questo DBMS negli ultimi mesi ha raggiunto un indice di successo notevole. (Software)

7
How to give access using sudoers file, for doing few thing to one user only?view story

http://askubuntu.com – Below is what I know: (Sorry!! :( please bear with my English, that's bad really bad, i know & I apologize for that. :( ) 1. I have to add this below line in sudoers file to give rights to the user for particular task. %user_name% ALL=NOPASSWD: /usr/bin/apt-get install In this case I want to give access to this user to restart 2 services i.e. (HowTos)

7
postfix, dovecot 2, mailman, dovecot-lda on same domain, config does not work anymoreview story

http://serverfault.com – this configuration used to work but after updating to Dovecot 2 (Ubuntu 12.04) mails to mailman get not delivered anymore: Instead of delivering to mailman, I get a bounce for non-existing user mailinglist@my.host.tld postconf -n: alias_database = hash:/etc/aliases alias_maps = hash:/etc/aliases, hash:/var/lib/mailman/data/aliases append_dot_mydomain = no biff = no broken_sasl_auth_clients = y (HowTos)

7
Creating an email mailing list using a list of addresses in a databaseview story

http://stackoverflow.com – I'm running a club website with Drupal 7 and have a mailing list hosted offsite using GNU mailman. I'd really like to consolidate this list to the web domain. I don't care about archiving the old emails. What's the easiest way to use the list of email addresses of the accounts in the mysql database that drupal uses as the addresses to send mailing list messages to? (HowTos)

7
Linux router: bandwidth of clientview story

http://serverfault.com – I am trying to build a linux router (captive portal) with a local RADIUS server for authentication. I want to log the bandwidth being used by each client on my network. I want to associate bandwidth at a given point in time with MAC address. My question is, how can I get the bandwidth of a current client on my network? (HowTos)

7
Not able to link mysql database with phpview story

http://stackoverflow.com – I am using mysql version Server version: 5.0.77 and php version PHP 5.1.6 (cli) (built: Nov 29 2010 16:47:37) My code is below: <?php $username="root"; $password=""; $hostname="localhost"; $dbhandle = mysql_connect($hostname, $username, $password) or die("Unable to connect to MySQL"); echo "Connected to MySQL<br>"; $selected = mysql_select_db("examples",$dbhandle) or die("Could not se (HowTos)

7
[ubuntu] Ubuntu 12.10 Apache server error 500view story

http://ubuntuforums.org – Hello All, I have recently set my laptop up with the newest version of Ubuntu 12.10. After doing so I started to set up Apache2 Php5 MySQL and PhpMyAdmin. Now with that said I have done before in the past with no issues at all. So here is the problem. The Apache server is working fine I can access it from 127 and localhost. (Hardware)

7
Can I use Jenkins to test to see if a VM(server) is up and running?view story

http://stackoverflow.com – Can I use Jenkins to test to see if a VM(server) is up and running? We have alot of VMs(servers) with JBoss, LDAP, MySQL etc on them and I would like to know if I can somehow have Jenkins ping a server to see if the SA shut it down or something.. I was thinking of using a selenium test. I was going to have a Maven project with a selenium java test in it to check of the server is up. (HowTos)

7
Percona Server 5.1.66-14.2 Is Based on MySQL 5.1.66view story

http://news.softpedia.com – Percona Server, an enhanced drop-in replacement for MySQL that will allow queries to run faster and more consistently and to consolidate servers on powerful hardware, is now at version 5.1.66-14.2. (General)

7
retrieving data issue from php to androidview story

http://stackoverflow.com – Its my java class: class GetTaskDetails extends AsyncTask<String, String, String> { /** * Before starting background thread Show Progress Dialog * */ @Override protected void onPreExecute() { super.onPreExecute(); tDialog = new ProgressDialog(My_Task.this); tDialog.setTitle("Please Wait"); tDialog.setMessage("Retrieving Task Details. (HowTos)