Activity for Kevin M. Mansourâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Comment | Post #282896 |
@#53922 LOL! Ubuntu is based on Debian. anything based upon Ubuntu is therefore also based on Debian. Kali Linux is definitely a Debian-based distribution (which is the term used to describe any child/inheritor distribution of Debian, including Ubuntu which is based directly off Debian, and Mint, whi... (more) |
— | over 3 years ago |
Comment | Post #282896 |
@#53922 I got a notification. (more) |
— | over 3 years ago |
Comment | Post #282896 |
@#53922 Here is a mentioning. (more) |
— | over 3 years ago |
Comment | Post #282896 |
Kali Linux is based on Ubuntu. And it *really* isn't that hard. It just comes with many tools that might not be useful to you and might be a waste of disk space but it's not that hard. (more) |
— | over 3 years ago |
Edit | Post #282678 | Initial revision | — | over 3 years ago |
Answer | — |
A: "A server is already running" error in rails To fix this: First, run `cat` command on the file listed in the message. e.g: ``` cat /home/XXX/ruby/YYY/tmp/pids/server.pid ``` `cat` command will return a 5 digit number. e.g ``` 12345 ``` `12345` is the PID of the process that is running the current rails server. Then kill the r... (more) |
— | over 3 years ago |
Edit | Post #282555 |
Post edited: Small Edits. |
— | over 3 years ago |
Suggested Edit | Post #282555 |
Suggested edit: Small Edits. (more) |
helpful | over 3 years ago |
Edit | Post #282547 |
Post edited: It doesn't require root. A little mistake. |
— | over 3 years ago |
Comment | Post #282547 |
Thank you for notice. When I try MySQL without sudo it produce `ERROR 1045 (28000): Access denied for user 'USERNAME'@'localhost' (using password: NO)` (more) |
— | over 3 years ago |
Comment | Post #282549 |
This solution will work with any other version, it may need to change Ruby version; Like I have installed Ruby 2.7.0 but if you installed other version of Ruby (e.g `2.6.9`) so you will have to change your Gemfile into `Ruby '2.6.9'` not `Ruby '2.7.0'`, so solution work. but it may need to change num... (more) |
— | over 3 years ago |
Edit | Post #282549 | Initial revision | — | over 3 years ago |
Answer | — |
A: Your Ruby version is 2.7.0, but your Gemfile specified 2.6.6. Go to your Gemfile (Inside your project structure) and edit `ruby '2.6.6'` to `ruby '2.7.0'` and then you are good to go. Like: (more) |
— | over 3 years ago |
Edit | Post #282548 |
Post edited: Cleaning Up. |
— | over 3 years ago |
Edit | Post #282548 | Initial revision | — | over 3 years ago |
Question | — |
Your Ruby version is 2.7.0, but your Gemfile specified 2.6.6. In my Ruby project, when I try `bundle install`, I got: >Your Ruby version is 2.7.0, but your Gemfile specified 2.6.6 I don't know how to solve it. I am using Windows Subsystem for Linux (WSL) Ubuntu 20.04 and Ruby 2.7.0. (more) |
— | over 3 years ago |
Edit | Post #282547 | Initial revision | — | over 3 years ago |
Answer | — |
A: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' Simply, `mysql-server` isn't running, you will have to run it first using: ```bash sudo service mysql start ``` then try to sign into `mysql-server` using: ```bash sudo mysql ``` then you are good to go. (more) |
— | over 3 years ago |
Edit | Post #282546 | Initial revision | — | over 3 years ago |
Question | — |
Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' I have installed `mysql-server` on Ubuntu 20.04 then I tried to sign into `mysql-server` using `sudo mysql -u root` but I have got ```plain Error: Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) ``` I don't know what does that mean. I am using Windows Sub... (more) |
— | over 3 years ago |