I'm a new user of Arch Linux, i've installed it on my pogoplug pro.
I've successfully installed nginx, php. Now i'm trying to install mysql from this guide: https://wiki.archlinux.org/index.php/MySQL
The package was sucessfully installed, when I try to launch MySQL ($this->bbcode_second_pass_code('', '/etc/rc.d/mysqld start')) it's return an error:
$this->bbcode_second_pass_code('', ':: Starting MySQL Server [FAIL]')
$this->bbcode_second_pass_code('', 'find /var/log -type f -name '*mysql*'') Return nothing
$this->bbcode_second_pass_code('', 'ps auxw | grep mysql') Return: $this->bbcode_second_pass_code('', 'root 4820 0.0 0.6 5428 876 pts/0 S+ 13:18 0:00 grep mysql')
When I try to kill the processus ($this->bbcode_second_pass_code('', 'killall --wait mysqld')
$this->bbcode_second_pass_code('', '-bash: root: command not found')
My rights of /tmp folder:
$this->bbcode_second_pass_code('', 'drwxrwxrwt 4 root root 4096 Oct 13 13:09 tmp')
I've try:
$this->bbcode_second_pass_code('', '
# chown mysql:mysql /var/lib/mysql -R
# /etc/rc.d/mysql restart
:: Stopping MySQL Server [FAIL]
:: Starting MySQL Server [FAIL]
# tail /var/lib/mysql/alarm.err
111013 13:26:38 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql
111013 13:26:39 InnoDB: The InnoDB memory heap is disabled
111013 13:26:39 InnoDB: Mutexes and rw_locks use GCC atomic builtins
111013 13:26:39 InnoDB: Compressed tables use zlib 1.2.5
111013 13:26:39 InnoDB: Initializing buffer pool, size = 128.0M
InnoDB: mmap(135987200 bytes) failed; errno 12
111013 13:26:39 InnoDB: Completed initialization of buffer pool
111013 13:26:39 InnoDB: Fatal error: cannot allocate memory for the buffer pool
111013 13:26:39 [ERROR] Plugin 'InnoDB' init function returned error.
111013 13:26:39 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
111013 13:26:39 [ERROR] Unknown/unsupported storage engine: InnoDB
111013 13:26:39 [ERROR] Aborting
111013 13:26:39 [Note] /usr/bin/mysqld: Shutdown complete
111013 13:26:39 mysqld_safe mysqld from pid file /var/lib/mysql/alarm.pid ended
')
And:
$this->bbcode_second_pass_code('', '
# mysqld_safe --datadir=/var/lib/mysql/
111013 13:31:23 mysqld_safe Logging to '/var/lib/mysql//alarm.err'.
111013 13:31:24 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql/
111013 13:31:24 mysqld_safe mysqld from pid file /var/lib/mysql//alarm.pid ended
# mysql_upgrade -u root -p
Enter password:
Looking for 'mysql' as: mysql
Looking for 'mysqlcheck' as: mysqlcheck
Running 'mysqlcheck' with connection arguments: '--port=3306' '--socket=/var/run/mysqld/mysqld.sock' '--port=3306' '--socket=/var/run/mysqld/mysqld.sock'
mysqlcheck: Got error: 2002: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) when trying to connect
FATAL ERROR: Upgrade failed
')
PS: I'm a newbi on linux

If anybody can help me...